Skip to main content
Endpoint Request

For Bank Account

curl
curl -X POST "https//api.spendjuice.com/wallets/{id}/payment-method" \
-H "Authorization: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
      "type": "bank_account"
    }'

Crypto Address

curl
curl -X POST "https//api.spendjuice.com/wallets/{id}/payment-method" \
-H "Authorization: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
      "type": "crypto_address"
    }'
Response
{
  "data": {
    "id": "3d2e3f3e-3b3c-4907-a4fd-e241203440d7",
    "status": "active",
    "payment_methods": [],
    "balance": {
      "amount": 0,
      "currency": "NGN"
    }
  }
}