Search Bills

Search your existing wallets

API Endpoint

POST /client/bills/find


Request Headers:

Authorization: Bearer <access_token>

Content-Type: application/json

Request Body

  • List All finds all your wallets

{

    "page": 1,        // optional - if not present, default 1
    "pageSize": 20,    // optional - if not present, default 10

    // sorting is optional
    // when not set wallets are sorted by Creation Date Descending
    "sort" : { // sort by date, USDT Balance, Tron Balance
        "createdAt": 1     // ascending 1, descending -1, default -1        
     }
}
  • Search by bill UUID: (previous paging and sorting applies)

{
    "wallet": "uuid" // wildcard uuid search
}
  • Search By bill Tag: (previous paging and sorting applies)

{
    "tag": "tag" // wildcard tag search
}

curl 'https://apis.xpay.stream/client/wallets/find' \
  -H 'Authorization: Bearer <access_token>'         \
  -H 'Content-Type: application/json'               \
  --data-raw '{ "page": 1, "pageSize": 5}'             

Last updated