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
| Parameter | Description |
|---|---|
| Currency | Filter by specific currency (e.g., BTC, USDT) |
| Category | Specify the category (e.g., deposits, withdrawals, swaps) |
| Type | Filter by transaction type (e.g., buy, sell) |
| Date Range | Filter by start and end date to view transactions within a specific time period |
| Pagination | Supports pagination with parameters like page and limit for managing large transaction histories |
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}