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 '{
    "transaction_id": "txn_01HX9KZMB3F7VNQP8R2WDGT4EF"
  }'
{"data":[],"status":true,"message":"No transactions found"}
Authorization
string
required
Bearer token: Bearer YOUR_ACCESS_TOKEN
transaction_id
string
required
The ID of the transaction to retrieve.
curl -X POST 'https://crypto-api.yativo.com/api/transactions/get-transactions' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
  -H 'Content-Type: application/json' \
  -d '{
    "transaction_id": "txn_01HX9KZMB3F7VNQP8R2WDGT4EF"
  }'
{"data":[],"status":true,"message":"No transactions found"}