Skip to main content
GET
/
v1
/
card-issuer
/
customers
/
:customerId
/
transfers
curl -X GET 'https://crypto-api.yativo.com/api/v1/card-issuer/customers/yativo_card_customer_8f9a...abc/transfers' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
  "success": true,
  "data": {
    "customer_id": "yativo_card_customer_8f9a...abc_1769031332068",
    "transfers": [
      {
        "transfer_id": "txn_01HX9KZMB3F7VNQP8R2WDGT4E5",
        "source_chain": "SOL",
        "source_amount": 201.80,
        "destination_token": "EUR",
        "destination_amount": 200.00,
        "status": "completed",
        "created_at": "2026-05-06T14:30:00Z",
        "completed_at": "2026-05-06T14:33:22Z"
      },
      {
        "transfer_id": "txn_01HX8MNAB2E6UMOP7Q1VCFS3D4",
        "source_chain": "SOL",
        "source_amount": 51.00,
        "destination_token": "EUR",
        "destination_amount": 50.00,
        "status": "completed",
        "created_at": "2026-05-05T09:12:44Z",
        "completed_at": "2026-05-05T09:16:01Z"
      }
    ],
    "total": 2,
    "page": 1,
    "limit": 20
  }
}

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
customerId
string
required
Any customer identifier: yativo_card_id, customer_id, or your own external_id.
page
integer
Page number. Defaults to 1.
limit
integer
Results per page. Defaults to 20, max 100.
status
string
Filter by status: pending, completed, failed, refunded.
curl -X GET 'https://crypto-api.yativo.com/api/v1/card-issuer/customers/yativo_card_customer_8f9a...abc/transfers' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
  "success": true,
  "data": {
    "customer_id": "yativo_card_customer_8f9a...abc_1769031332068",
    "transfers": [
      {
        "transfer_id": "txn_01HX9KZMB3F7VNQP8R2WDGT4E5",
        "source_chain": "SOL",
        "source_amount": 201.80,
        "destination_token": "EUR",
        "destination_amount": 200.00,
        "status": "completed",
        "created_at": "2026-05-06T14:30:00Z",
        "completed_at": "2026-05-06T14:33:22Z"
      },
      {
        "transfer_id": "txn_01HX8MNAB2E6UMOP7Q1VCFS3D4",
        "source_chain": "SOL",
        "source_amount": 51.00,
        "destination_token": "EUR",
        "destination_amount": 50.00,
        "status": "completed",
        "created_at": "2026-05-05T09:12:44Z",
        "completed_at": "2026-05-05T09:16:01Z"
      }
    ],
    "total": 2,
    "page": 1,
    "limit": 20
  }
}