Two sandboxes, two use cases
Shared sandbox
Always available. No setup. Use
sk_test_DOCS_SHARED_KEY in any request right now. Best for reading the docs and testing single calls.Your own sandbox
Isolated tenant, private API key, your own clock. Best for integration testing, CI, or anything where you need clean data.
Shared sandbox
The shared sandbox is a real tenant pre-seeded with three plans and a test customer. Every code example in these docs points at it. You can run anycurl straight from your terminal without signing up.
| Resource | Details |
|---|---|
| Plans | Starter (₦2,000/month), Pro (₦5,000/month), Max (₦12,000/month) |
| Customer | cus_docs_001 — customer@docs-sandbox.ng |
| Clock | Controllable — advance it to simulate renewals |
- Clock advances are rate-limited to 1 per minute — prevents one reader from breaking examples for everyone else
- Write operations (create customers, subscriptions) work but data is shared across all readers
Your own sandbox
One call gives you an isolated tenant with your own API key, plans, and clock. It expires automatically after 24 hours.Create your sandbox
Call
POST /sandbox/create — no API key required, it’s a public endpoint.Response
Save your API key
Export it as an environment variable so every subsequent call uses it automatically.Or click “Use my sandbox key” below to have these docs swap every code block automatically.
Use my sandbox key in these docs
Paste your sandbox API key below. Every code block on this site will show your key instead ofsk_test_DOCS_SHARED_KEY. Nothing is sent anywhere — it’s stored only in your browser’s localStorage.
This is a client-side convenience feature. Your key is never transmitted to our servers through this form — only via the API calls you make from your own terminal.
Sandbox vs production
| Shared sandbox | Your sandbox | Production | |
|---|---|---|---|
| API key prefix | sk_test_ | sk_test_ | sk_live_ |
| Real money | No | No | Yes |
| Real Nomba account needed | No | No | Yes |
| Isolated data | No (shared) | Yes | Yes |
| Clock control | Yes (rate-limited) | Yes (full) | No |
| Expires | Never | 24 hours | Never |