Bearer token: Bearer YOUR_ACCESS_TOKEN
Page number for pagination. Defaults to 1.
Number of transactions per page. Defaults to 20, maximum 100.
Filter by transaction status. One of: pending, confirmed, failed, cancelled.
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"}