Skip to main content
POST
/
api
/
transactions
/
get-transactions
curl -X POST 'https://crypto-api.yativo.com/api/transactions/get-transactions' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
  -H 'Content-Type: application/json' \
  -d '{
    "page": 1,
    "limit": 20,
    "status": "confirmed",
    "chain": "solana"
  }'
{"data":[],"status":true,"message":"No transactions found"}
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/get-transactions' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
  -H 'Content-Type: application/json' \
  -d '{
    "page": 1,
    "limit": 20,
    "status": "confirmed",
    "chain": "solana"
  }'
{"data":[],"status":true,"message":"No transactions found"}