Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.useaxra.com/llms.txt

Use this file to discover all available pages before exploring further.

Each end-user can have wallets in multiple currencies (USDC, NGN, EUR, etc.). Wallets hold balances and support deposits via bank transfer, crypto, or mobile money.

Create a wallet

curl -X POST https://api.useaxra.com/api/v1/treasury/users/{id}/wallets \
  -H "Authorization: Bearer sk_test_..." \
  -H "Content-Type: application/json" \
  -d '{"currency": "NGN"}'

Check balance

curl https://api.useaxra.com/api/v1/treasury/users/{id}/wallets/{walletId}/balance \
  -H "Authorization: Bearer sk_test_..."

Sandbox credit

Fund a wallet in sandbox without real deposits:
curl -X POST .../wallets/{walletId}/sandbox-credit \
  -H "Authorization: Bearer sk_test_..." \
  -d '{"amount": "1000", "currency": "NGN"}'

API Reference

See full endpoint documentation.