Skip to main content
POST
/
api
/
transactions
/
list
curl -X POST 'https://crypto-api.yativo.com/api/transactions/list' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
  -H 'Content-Type: application/json' \
  -d '{
    "page": 1,
    "limit": 20,
    "status": "confirmed",
    "chain": "solana"
  }'
{
  "status": "success",
  "message": "Transactions retrieved successfully",
  "data": {
    "transactions": [
      {
        "transaction_id": "txn_01HX9KZMB3F7VNQP8R2WDGT4EF",
        "from_address": "7nZ9X4mQkLpR3sVwC8tF2bG6hJ5nM1yK",
        "to_address": "9xZ7Y4mQkLpR3sVwC8tF2bG6hJ5nM1yK",
        "amount": "100.00",
        "chain": "solana",
        "ticker": "USDC_SOL",
        "status": "confirmed",
        "tx_hash": "5KgF7hJ2mN4pQ8rT9vX1yC3bA6wD0eG2jL5nP8sU1z4",
        "created_at": "2026-03-26T12:00:00Z"
      }
    ],
    "pagination": {
      "page": 1,
      "limit": 20,
      "total": 1,
      "total_pages": 1
    }
  }
}
Authorization
string
required
Bearer token: Bearer YOUR_ACCESS_TOKEN
page
integer
Page number for pagination. Defaults to 1.
limit
integer
Number of transactions per page. Defaults to 20, maximum 100.
status
string
Filter by transaction status. One of: pending, confirmed, failed, cancelled.
chain
string
Filter by blockchain network, e.g. solana, ethereum.
curl -X POST 'https://crypto-api.yativo.com/api/transactions/list' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
  -H 'Content-Type: application/json' \
  -d '{
    "page": 1,
    "limit": 20,
    "status": "confirmed",
    "chain": "solana"
  }'
{
  "status": "success",
  "message": "Transactions retrieved successfully",
  "data": {
    "transactions": [
      {
        "transaction_id": "txn_01HX9KZMB3F7VNQP8R2WDGT4EF",
        "from_address": "7nZ9X4mQkLpR3sVwC8tF2bG6hJ5nM1yK",
        "to_address": "9xZ7Y4mQkLpR3sVwC8tF2bG6hJ5nM1yK",
        "amount": "100.00",
        "chain": "solana",
        "ticker": "USDC_SOL",
        "status": "confirmed",
        "tx_hash": "5KgF7hJ2mN4pQ8rT9vX1yC3bA6wD0eG2jL5nP8sU1z4",
        "created_at": "2026-03-26T12:00:00Z"
      }
    ],
    "pagination": {
      "page": 1,
      "limit": 20,
      "total": 1,
      "total_pages": 1
    }
  }
}