Trades
Get List of Trades
Method: GET
Endpoint:
/api/v1/crypto/trades
Headers:
Cookie
: The session cookie value.csrf_token
: The CSRF token obtained after login.
Query:
offset
: (integer) Pagination offset.limit
: (integer) Number of records to return.rangeDateStart
: (string) Start date of the range.rangeDateEnd
: (string) End date of the range.exchangeNames[]
: (array) List of exchange names (e.g. Binance).symbol
: (string) Trading pair symbol (e.g. BTC/USDT).
Description:
The /api/v1/crypto/trades endpoint is designed to retrieve detailed information on individual trades for specific cryptocurrency pairs across various exchanges within a given date range. Each record in the response provides data on trade transactions. The first element in the tradesInfo array is a numerical representation of the trade's side (0 for 'buy', 1 for 'sell'), including price, volume, and the exact timestamp, among other details. This endpoint is invaluable for analyzing market movements, trade patterns, and liquidity by offering granular trade data. It supports comprehensive filtering through query parameters such as pagination (offset, limit), time range (rangeDateStart, rangeDateEnd), exchange names (exchangeNames[]), and trading pair symbols (symbol).
Example with curl:
Example Response Payload:
Last updated