Skip to main content
POST
/
api
/
card-issuer
/
apply
curl -X POST 'https://crypto-api.yativo.com/api/card-issuer/apply' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
  -H 'Content-Type: application/json' \
  -d '{
    "funding_structure": "pre_funded",
    "iban_enabled": true
  }'
{
  "success": true,
  "message": "Application submitted successfully",
  "data": {
    "application_id": "app_69c799d9f1fba3928d8a12ac",
    "status": "pending",
    "submitted_at": "2026-03-28T10:00:00.000Z"
  }
}
Authorization
string
required
Bearer token: Bearer YOUR_ACCESS_TOKEN
funding_structure
string
required
The funding model for the issuer program. Defines how card balances are funded, e.g. pre_funded, post_funded.
iban_enabled
boolean
required
Whether to enable IBAN functionality for cardholders in your program.
curl -X POST 'https://crypto-api.yativo.com/api/card-issuer/apply' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
  -H 'Content-Type: application/json' \
  -d '{
    "funding_structure": "pre_funded",
    "iban_enabled": true
  }'
{
  "success": true,
  "message": "Application submitted successfully",
  "data": {
    "application_id": "app_69c799d9f1fba3928d8a12ac",
    "status": "pending",
    "submitted_at": "2026-03-28T10:00:00.000Z"
  }
}