🔎Search Transactions

Search all your transactions , deposits and withdrawals, with filtering support

API Endpoint

POST /client/transactions/find


Request Headers:

Authorization: Bearer <access_token>

Content-Type: application/json

Request Body

Transactions can be filtered by a wallets, and apply an OR filter to filter matching transactions by fields whildcards of txID, source, destination, tag, type and action.

{
    "page": 1,        // optional - if not present, default 1
    "pageSize": 20,   // optional - if not present, default 10
    
    "wallet": "<wallet_uuid>" // optional - and filter
    
    // with an OR filter transactions, matching fields: 
    // - txID, tron transaction hash 
    // - wallet, wallet UUID
    // - tag, the wallet(s) group tag 
    // - source address
    // - destination address
    // - type as 'TRX' for tron, 'TRC20' for USDT
    // - action as 'sent' or 'received'
    "or": "<value>" 
}

curl 'https://apis.xpay.stream/client/transactions/find' \
  -H 'Authorization: Bearer <access_token>'         \
  -H 'Content-Type: application/json'               \
  --data-raw '{}'             

Last updated