Skip to main content
GET
/
api
/
yativo-card
/
my-account
curl -X GET 'https://crypto-api.yativo.com/api/yativo-card/my-account' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
  "success": true,
  "data": {
    "account": {
      "yativo_card_id": "yativo_card_0xAbCd1234EfGh5678IjKl9012_1769031332068",
      "email": "merchant@example.com",
      "flow_status": "safe_deployed",
      "current_step": 4,
      "progress_percentage": 100,
      "steps": [
        {"step": 1, "name": "Initiate Program", "completed": true},
        {"step": 2, "name": "Verify Email", "completed": true},
        {"step": 3, "name": "Start KYC", "completed": true},
        {"step": 4, "name": "Complete KYC", "completed": true},
        {"step": 5, "name": "Create Card", "completed": true}
      ],
      "kyc_status": "approved",
      "source_of_funds_completed": true,
      "phone_verified": true,
      "terms_accepted": true,
      "safe_deployed": true,
      "safe_address": "0xBB4912ef83b5dcAE96f473Ba9e28Fd120bcd3412",
      "wallet_address": "0xAB7a028c1c5483e9507C61F25335C64C52B9FBcc",
      "funding_address": "DwPq8k2XbNmJhvRs5TcLu4Ye9AgFp3ZoVi7Bn1KqWMeS",
      "funding_network": "solana",
      "cards_count": 1,
      "cards": [
        {
          "card_id": "b2dc97ab-03f9-49eb-c72f-95be13815278",
          "last_four": "0892",
          "type": "virtual",
          "status": "Active",
          "is_frozen": false,
          "created_at": "2026-02-02T13:04:23.773Z"
        }
      ],
      "created_at": "2026-01-21T21:35:32.076Z",
      "updated_at": "2026-03-28T08:15:57.023Z"
    }
  }
}
Authorization
string
required
Bearer token: Bearer YOUR_ACCESS_TOKEN
curl -X GET 'https://crypto-api.yativo.com/api/yativo-card/my-account' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
  "success": true,
  "data": {
    "account": {
      "yativo_card_id": "yativo_card_0xAbCd1234EfGh5678IjKl9012_1769031332068",
      "email": "merchant@example.com",
      "flow_status": "safe_deployed",
      "current_step": 4,
      "progress_percentage": 100,
      "steps": [
        {"step": 1, "name": "Initiate Program", "completed": true},
        {"step": 2, "name": "Verify Email", "completed": true},
        {"step": 3, "name": "Start KYC", "completed": true},
        {"step": 4, "name": "Complete KYC", "completed": true},
        {"step": 5, "name": "Create Card", "completed": true}
      ],
      "kyc_status": "approved",
      "source_of_funds_completed": true,
      "phone_verified": true,
      "terms_accepted": true,
      "safe_deployed": true,
      "safe_address": "0xBB4912ef83b5dcAE96f473Ba9e28Fd120bcd3412",
      "wallet_address": "0xAB7a028c1c5483e9507C61F25335C64C52B9FBcc",
      "funding_address": "DwPq8k2XbNmJhvRs5TcLu4Ye9AgFp3ZoVi7Bn1KqWMeS",
      "funding_network": "solana",
      "cards_count": 1,
      "cards": [
        {
          "card_id": "b2dc97ab-03f9-49eb-c72f-95be13815278",
          "last_four": "0892",
          "type": "virtual",
          "status": "Active",
          "is_frozen": false,
          "created_at": "2026-02-02T13:04:23.773Z"
        }
      ],
      "created_at": "2026-01-21T21:35:32.076Z",
      "updated_at": "2026-03-28T08:15:57.023Z"
    }
  }
}