Skip to main content
PIK provides a full sandbox environment that mirrors production functionality. No real funds are ever moved. Use it to build and test your integration end to end before switching to production credentials.

Sandbox vs Production

PropertySandboxProduction
API base URLhttps://api-sandbox.pik.global/v1https://api.pik.global/v1
Dashboard URLdashboard.pik.globaldashboard.pik.global
FundsSimulated — no real moneyReal funds
API keySandbox key (separate from production)Production key
WebhooksDelivered to your registered endpointDelivered to your registered endpoint
DataReset periodicallyPersistent
To switch environments, change your API key and base URL. No other code changes required.

Getting Sandbox Credentials

Log in to the PIK Dashboard at dashboard.pik.global and go to Settings > API Keys > Sandbox. Generate a sandbox API key. You also receive a pre-funded sandbox wallet for testing.

Simulating Payments

http
POST /api/v1/sandbox/payments/{payment_id}/simulate
Authorization: Bearer YOUR_SANDBOX_API_KEY
Content-Type: application/json
Status to simulateBody
Successful payment”status”: “settled”
Expired payment”status”: “expired”
Underpaid payment”status”: “underpaid”, “amount_received”: “50.00”
Overpaid payment”status”: “overpaid”, “amount_received”: “150.00”

Simulating Payouts

http
POST /api/v1/sandbox/payouts/{payout_id}/simulate
Authorization: Bearer YOUR_SANDBOX_API_KEY
Content-Type: application/json
Status to simulateBody
Successful payout”status”: “completed”
Failed payout”status”: “failed”, “failure_reason”: “invalid_account_number”

Simulating Webhook Events

Trigger any webhook event manually from the PIK Dashboard under Settings > Webhooks > Send test event.

Sandbox Limitations

  • Sandbox does not connect to real banking networks or live blockchain networks
  • Simulated stablecoin transactions do not appear on any live blockchain — no real network activity occurs
  • Simulated AUD transfers do not go through the Australian banking system
  • Sandbox data is reset periodically — do not rely on it for long-term persistence