Key Endpoints
Get Wallet Balance
Use this endpoint to retrieve the current balance of a user’s wallet. This includes balances for all supported currencies within the account. It’s useful for displaying the available funds before initiating deposits, withdrawals, or swaps.- Endpoint:
GET /wallets/{currencyCode}(e.g.,/wallets/USDT)
Get User Transactions
This endpoint retrieves a list of transactions performed by the user. The results can be filtered by several parameters such as currency, category, type, and date range to narrow down specific transactions. The response can also be paginated to handle large data sets.- Endpoint:
GET /transactions/me
Get Transaction by ID
Use this endpoint to retrieve detailed information about a specific transaction by providing its unique ID. The response includes full details of the transaction, such as the amount, status, currency, and timestamps.- Endpoint:
GET /transactions/{id}