Skip to main content
These endpoints allow you to track your wallet balances and view detailed records of all transactions, whether deposits, withdrawals, or swaps on your master wallet and associated wallet addresses.

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
Filters:
ParameterDescription
CurrencyFilter by specific currency (e.g., BTC, USDT)
CategorySpecify the category (e.g., deposits, withdrawals, swaps)
TypeFilter by transaction type (e.g., buy, sell)
Date RangeFilter by start and end date to view transactions within a specific time period
PaginationSupports 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}