Skip to main content
GET
/
api
/
yativo-card
/
{yativoCardId}
/
cards
/
{cardId}
/
transactions
curl -X GET 'https://crypto-api.yativo.com/api/yativo-card/yvc_01HX9KZMB3F7VNQP8R2WDGT4EI/cards/crd_01HX9KZMB3F7VNQP8R2WDGT4EJ/transactions?limit=20&status=completed&from_date=2026-03-01T00:00:00Z' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
  "status": "success",
  "message": "Transactions retrieved successfully",
  "data": {
    "transactions": [
      {
        "transaction_id": "ctxn_01HX9KZMB3F7VNQP8R2WDGT4EL",
        "card_id": "crd_01HX9KZMB3F7VNQP8R2WDGT4EJ",
        "merchant_name": "Amazon",
        "merchant_category": "ecommerce",
        "amount": "49.99",
        "currency": "USD",
        "status": "completed",
        "created_at": "2026-03-20T14:30:00Z"
      }
    ],
    "total": 1,
    "limit": 20,
    "offset": 0
  }
}
Authorization
string
required
Bearer token: Bearer YOUR_ACCESS_TOKEN
yativoCardId
string
required
The Yativo Card account ID.
cardId
string
required
The card ID to retrieve transactions for.
limit
integer
Number of transactions to return. Defaults to 20.
offset
integer
Number of records to skip. Defaults to 0.
status
string
Filter by transaction status. One of: pending, completed, declined, refunded, disputed.
from_date
string
Start date filter in ISO 8601 format, e.g. 2026-01-01T00:00:00Z.
to_date
string
End date filter in ISO 8601 format, e.g. 2026-03-26T23:59:59Z.
curl -X GET 'https://crypto-api.yativo.com/api/yativo-card/yvc_01HX9KZMB3F7VNQP8R2WDGT4EI/cards/crd_01HX9KZMB3F7VNQP8R2WDGT4EJ/transactions?limit=20&status=completed&from_date=2026-03-01T00:00:00Z' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
  "status": "success",
  "message": "Transactions retrieved successfully",
  "data": {
    "transactions": [
      {
        "transaction_id": "ctxn_01HX9KZMB3F7VNQP8R2WDGT4EL",
        "card_id": "crd_01HX9KZMB3F7VNQP8R2WDGT4EJ",
        "merchant_name": "Amazon",
        "merchant_category": "ecommerce",
        "amount": "49.99",
        "currency": "USD",
        "status": "completed",
        "created_at": "2026-03-20T14:30:00Z"
      }
    ],
    "total": 1,
    "limit": 20,
    "offset": 0
  }
}