Get Aggregated trades
This endpoint returns the aggregated trading price of a specific trading pair over different intervals.
GET
/market/aggregate/:pair
Headers
X-API-KEY
<YOUR_API_KEY>
Path Parameters
pair
string *
The targeted trading pair. E.g. "ADAUSDX"
Query Paramaters
interval
string *
This parameter specifies the time interval for which the client wants to receive price aggregates. The interval should be a string and can take one of the following values:
15m
: Returns price aggregates for every 15-minute interval.30m
: Returns price aggregates for every 30-minute interval.1h
: Returns price aggregates for every 1-hour interval.1d
: Returns price aggregates for every 1-day interval.1w
: Returns price aggregates for every 1-week interval.1M
: Returns price aggregates for every 1-month interval.
start
string
This parameter specifies the start date and time for the price aggregates. It should be in unix timestamp format
end
string
This parameter specifies the end date and time for the price aggregates. It should be in unix timestamp format
Response
Last updated