The Grid sandbox environment allows you to test your integration without making real payments. When you set up your account, you can configure production and sandbox API tokens. The sandbox token is specifically for testing and development purposes. It corresponds to a separate platform instance in “sandbox” mode, which can only transact with the sandbox UMA addresses for testing.Documentation Index
Fetch the complete documentation index at: https://ramps-sync-country-coverage-2026-06.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Overview
The sandbox environment provides:- A dedicated sandbox platform for testing
- Test UMA addresses for simulating payments
- Endpoints to simulate sending and receiving payments
- All the same webhooks and flows as production, but with simulated funds
Test UMA Addresses
The sandbox provides several test UMA addresses you can use to simulate different scenarios:| UMA Address | Description |
|---|---|
$success.usd@sandbox.uma.money | Always succeeds, sends USD |
$success.eur@sandbox.uma.money | Always succeeds, sends EUR |
$success.mxn@sandbox.uma.money | Always succeeds, sends MXN |
$pending.long.usd@sandbox.uma.money | Simulates a long-pending payment |
$fail.compliance.usd@sandbox.uma.money | Simulates compliance check failure |
Testing Outgoing Payments
To test sending payments from your platform, follow these steps:- Look up a sandbox UMA address:
- Create a quote as normal:
- Instead of making a real bank transfer, use the sandbox send endpoint with the quote ID:
Testing Incoming Payments
To test receiving payments to your platform’s users, use the sandbox receive endpoint:- You’ll receive an
INCOMING_PAYMENTwebhook withstatus: "PENDING" - Your platform should approve/reject the payment
- On approval, you’ll receive another webhook with
status: "COMPLETED"
Example Testing Flow
Here’s a complete example of testing both directions of payments:- First, register a test customer:
umaAddress, which you can use as the receiverUmaAddress below.
- Test receiving a payment:
- Test sending a payment:
Testing Error Scenarios
You can test various error scenarios using the special sandbox UMA addresses:- Test compliance failures:
- Test long-pending payments:
- Non-existent UMA address:
Global Account magic values
The Grid sandbox lets you exercise Global Account auth flows without moving real money. Email OTP uses the fixed sandbox code000000. Passkey auth can use the same browser WebAuthn ceremony as production, and signed wallet actions can use the same decrypted session signing key and Grid-Wallet-Signature stamp as production. OAuth uses JWT-shaped sandbox OIDC tokens: sandbox skips real IdP signature verification, but still validates token claims, freshness, credential identity, and verify-time nonce binding.
Sandbox-only compatibility values are still available for some flows, but they do not exercise the production-shaped client implementation. Authentication failures return 401 UNAUTHORIZED with a reason field that names the specific check that failed. A malformed OIDC JWT can return 400 INVALID_INPUT before authentication starts.
Email OTP code
Pass000000 as the body otp on POST /auth/credentials/{id}/verify when the credential type is EMAIL_OTP. The sandbox skips OTP delivery and accepts this value as a valid response to the issued challenge.
401 UNAUTHORIZED with reason: "Invalid OTP code".
Passkey WebAuthn ceremony
For new sandbox integrations, use the same WebAuthn calls you plan to use in production.Create a WebAuthn credential
Generate your own WebAuthn registration challenge and call
navigator.credentials.create().Register the passkey
Register the passkey with
POST /auth/credentials, passing the challenge and attestation returned by the browser.Request a challenge
Reauthenticate with
POST /auth/credentials/{id}/challenge, passing the P-256 clientPublicKey that Grid should seal the session signing key to.Run the browser assertion
Pass the returned
challenge into navigator.credentials.get() using the returned credentialId in allowCredentials.encryptedSessionSigningKey, sealed to the clientPublicKey, just like production.
The legacy sandbox-only assertion signature
sandbox-valid-passkey-signature is still accepted for compatibility, but it skips WebAuthn verification and should not be used for production-shaped sandbox tests.OAuth (OIDC) token
OAuth does not use a fixed magic token in sandbox. Pass a JWT-shaped OIDC token asoidcToken. The JWT signature segment can be a dummy value, but the payload must look like a real ID token.
For POST /auth/credentials with type: "OAUTH", the sandbox token must include:
iss: a supported issuer, such ashttps://accounts.google.com,accounts.google.com, orhttps://appleid.apple.comaud: a non-empty string, or a single-element string arraysub: a non-empty subject identifier for the useriat: a numeric issued-at timestamp no more than 60 seconds before the request, with 5 seconds of clock skew allowedexp: a numeric expiration timestamp later than the request time
iss, aud, and sub. On POST /auth/credentials/{id}/verify, the fresh oidcToken must carry the same iss, aud, and sub as the credential being verified. It must also include nonce equal to sha256(clientPublicKey), where clientPublicKey is the exact hex public key sent in the verify request.
The old literal
sandbox-valid-oidc-token is no longer accepted. Use a freshly generated sandbox JWT for both OAuth credential registration and OAuth verification. Production requires a real ID token from your provider and verifies the provider signature.Wallet signature header
After verifying an auth credential, decryptencryptedSessionSigningKey with the private key matching the clientPublicKey you supplied on verify or refresh. Use the decrypted session signing key to build a Turnkey API-key stamp over the exact payloadToSign string returned by Grid, then pass that full stamp as the Grid-Wallet-Signature HTTP header on signed flows:
POST /auth/credentials(add-additional-credential signed retry)DELETE /auth/credentials/{id}(revoke credential)DELETE /auth/sessions/{id}(revoke session)POST /internal-accounts/{id}/export(export wallet)PATCH /internal-accounts/{id}(update wallet privacy)POST /quotes/{quoteId}/execute(when source is an embedded wallet)
This example uses the sample signer in the Grid API repo’s scripts directory. See the scripts README for setup, or replace
SIGN with your own Turnkey API-key stamp implementation.The legacy sandbox-only
Grid-Wallet-Signature: sandbox-valid-signature value is still accepted for compatibility. Use a real session stamp when you want the client implementation to match production.Production vs Sandbox
Here are the key differences between production and sandbox environments:- API Tokens: Sandbox tokens only work in the sandbox environment and vice versa
- Bank Transfers: In sandbox, you use
/sandbox/sendinstead of real bank transfers - Test UMA Addresses: Special sandbox addresses for testing different scenarios
- Money: No real money is moved in sandbox