Skip to main content
GET
/
v1
/
yativo-card
/
customers
/
{yativoCardId}
/
transactions
curl -X GET 'https://crypto-api.yativo.com/api/v1/yativo-card/customers/yativo_card_customer_8f9a..._1769031332068/transactions?limit=20&status=completed' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
  "success": true,
  "data": {
    "transactions": [
      {
        "kind": "Payment",
        "transaction_type": "Purchase",
        "merchant_name": "Coffee Shop NYC",
        "merchant_city": "New York",
        "merchant_country": "United States",
        "merchant_country_code": "US",
        "mcc_code": "5812",
        "amount": 4.50,
        "currency": "EUR",
        "status": "completed",
        "transaction_date": "2026-04-01T09:14:00.000Z"
      }
    ],
    "total": 47
  }
}

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
yativoCardId
string
required
The customer’s yativo_card_id.
limit
integer
Number of results. Defaults to 20.
offset
integer
Records to skip. Defaults to 0.
status
string
Filter by status: pending, completed, declined, refunded, disputed.
from_date
string
ISO 8601 start date filter.
to_date
string
ISO 8601 end date filter.
curl -X GET 'https://crypto-api.yativo.com/api/v1/yativo-card/customers/yativo_card_customer_8f9a..._1769031332068/transactions?limit=20&status=completed' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
  "success": true,
  "data": {
    "transactions": [
      {
        "kind": "Payment",
        "transaction_type": "Purchase",
        "merchant_name": "Coffee Shop NYC",
        "merchant_city": "New York",
        "merchant_country": "United States",
        "merchant_country_code": "US",
        "mcc_code": "5812",
        "amount": 4.50,
        "currency": "EUR",
        "status": "completed",
        "transaction_date": "2026-04-01T09:14:00.000Z"
      }
    ],
    "total": 47
  }
}