Tick-Level Trades
What is this endpoint for?
Tick-level data is the most granular level of trading data and contains every single trade that occurs on centralized and decentralized exchanges. The data is normalized and timestamped and contains information such as the price and volume of each trade. For DEXs specifically, we also provide additional information on the user address, the blockchain, the pool address, and the transaction hash related to the trade.
Endpoint
Parameters
Parameter | Required? | Description |
---|---|---|
| Yes | Choose between |
| Yes | Exchange |
| Yes | |
| Yes | |
| No | Starting time in ISO 8601 (inclusive). Automatically included in continuation tokens. |
| No | Ending time in ISO 8601 (exclusive). Automatically included in continuation tokens. |
| No | See Pagination Automatically included in continuation tokens. |
| No | See Pagination |
| No | Return the data in ascending (asc) or descending (desc) order. Default desc. |
The following parameters are unique to on-chain instruments.
Parameter | Required? | Description |
---|---|---|
| No | Filter on a specific blockchain. (Default: ethereum). |
| No | Filter on a specific pool address. |
| No | Filter on a specific transaction hash. (Several trades can happen within a single transaction). |
| No | Filter on a specific address. |
Fields
Field | Description |
---|---|
| The timestamp provided by the exchange or the collection timestamp in Unix Timestamp (in milliseconds) |
| Unique trade ID (unique to the exchange). In case the exchange does not provide an ID, we generate it ourselves. |
| Price displayed in quote currency. |
| Quantity of asset bought or sold (can be in base_asset, quote_asset or the number of contracts). |
|
The following fields are unique to on-chain instruments.
Field | Description |
---|---|
| The blockchain on which the trade happened. |
| Transaction hash. |
| The log index of the transaction (in base 10). |
| The address of the pool in which the trade happened. |
| Address that triggered the transaction. |
Request examples
Response example
Last updated