Skip to main content
POST
/
v1
/
card-issuer
/
apply
curl -X POST 'https://crypto-api.yativo.com/api/v1/card-issuer/apply' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
  -H 'Content-Type: application/json' \
  -d '{
    "funding_structure": "master_wallet",
    "preferred_chain": "SOL",
    "iban_enabled": false
  }'
{
  "success": true,
  "message": "Application submitted. An admin will review your request.",
  "data": {
    "id": "69ecc05a4fc8c9c148ed1a9a",
    "status": "pending",
    "funding_structure": "master_wallet",
    "preferred_chain": "SOL"
  }
}

Documentation Index

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

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

Authorization
string
required
Bearer token: Bearer YOUR_ACCESS_TOKEN
funding_structure
string
required
Funding model for the program.
ValueDescription
master_walletYou maintain a shared balance and push funds to each customer card via the Fund Customer API. Best for platforms that want centralised control over top-ups.
non_masterEach customer funds their own card wallet independently. Best for self-service crypto-funded cards.
preferred_chain
string
The chain your master wallet will receive deposits on. SOL (default) or XDC. Yativo auto-provisions a wallet for the chosen chain on approval. Most issuers use SOL.
iban_enabled
boolean
Whether to enable IBAN functionality for cardholders in your program. Defaults to false.
The Issuer Program requires prior eligibility approval. Check GET /v1/card-issuer/eligibility first. If not eligible, contact your account manager or support@yativo.com.
curl -X POST 'https://crypto-api.yativo.com/api/v1/card-issuer/apply' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
  -H 'Content-Type: application/json' \
  -d '{
    "funding_structure": "master_wallet",
    "preferred_chain": "SOL",
    "iban_enabled": false
  }'
{
  "success": true,
  "message": "Application submitted. An admin will review your request.",
  "data": {
    "id": "69ecc05a4fc8c9c148ed1a9a",
    "status": "pending",
    "funding_structure": "master_wallet",
    "preferred_chain": "SOL"
  }
}