Base URL
Core Concepts
Partner Isolation
Every API call is scoped to your partner account. You can only access users, cards, and transactions that belong to you. This isolation is enforced at the API layer — no cross-partner data access is possible.Service IDs
Resources are identified by service IDs rather than internal database IDs:
Use these IDs in all API calls and store them on your end for reference.
Idempotency
All mutating endpoints (POST, DELETE) require anidempotency-key header to prevent duplicate operations:
400 error indicating the key was already used. Keys expire after 5 minutes.
Response Format
All responses follow the same shape:Success
Error
Integration Flow
1
Get your API key
Obtain your API key (prefixed
sk_staging_ or sk_live_) from your partner dashboard.2
Configure webhooks
Set your webhook URL via Set Webhook to receive event notifications.
3
Create users
Create users via the Create User endpoint. Users go through Persona KYC verification.
4
Issue cards
Once a user is KYC-approved, create a card for them. Choose a funding type:
- Float (default) — fund from your partner wallet via API
- Crypto — card gets a stablecoin deposit address for on-chain funding, plus the list of supported networks it can be funded on
5
Fund and manage
Fund cards (float cards only), withdraw, freeze/unfreeze, and track transactions. Crypto cards are funded by on-chain stablecoin deposits to the card’s deposit address.