get https://api.amberdata.com/markets/futures/exchanges/information
Provides detailed metadata and trading activity timelines for futures instruments across exchanges, including funding rates, liquidations, long/short ratios, OHLCV, open interest, order book snapshots and events, ticker updates, and trade history.
⚠️ IMPORTANT UPDATE ⚠️
Important Update
The old endpoint
https://api.amberdata.com/market/futures/exchanges/information
has been updated tohttps://api.amberdata.com/markets/futures/exchanges/information
and is no longer being supported. Please update your integrations accordingly.See changes here
- Endpoint URL Change:
- Old:
https://api.amberdata.com/market/futures/exchanges/information
- New:
https://api.amberdata.com/markets/futures/exchanges/information
- Metadata Changes:
api-version
field added to the response- Data Structure Changes:
- The old schema
data
structure was a nested JSON object with exchanges and instruments- The new schema
data
structure is an array of JSON objects, each representing an exchange and instrument with detailed date ranges for different data types- Field Value Changes:
fundingRate
: Replacesfunding_rate
openInterest
: Replacesopen_interest
liquidation
: Replacesliquidation_order
longShortRatio
: Replaceslong_short_ratio
orderBookEvent
: Replacesorder_book_event
orderBookSnapshot
: Replacesorder_book_snapshot
- Other
- Include the
Accept-Encoding:
header in your API requests to take advantage of compressed responses.includeDates
parameter is no longer supported as dates are always provided
exchange=cme
CME is currently not supported for this endpoint. It will be added soon
RESPONSE DATA
Field | Type | Description |
---|---|---|
payload.metadata.next | string | The URL for the next page of data (for pagination purposes). |
payload.metadata.api-version | string | The version of the API used for this request. |
payload.data[].exchange | string | The name of the exchange (e.g., binance). |
payload.data[].instrument | string | The trading instrument or pair (e.g., 1000BONKUSDC). |
payload.data[].{feature} | object | A placeholder representing one of the feature types (e.g., trade, ticker, fundingRate, ohlcv). |
payload.data[].{feature}.startDate | integer | Start date of the specified feature (e.g., trade, ticker, fundingRate) in milliseconds since epoch. |
payload.data[].{feature}.endDate | integer | End date of the specified feature (e.g., trade, ticker, fundingRate) in milliseconds since epoch. |
payload.data[].active | boolean | Indicates whether the instrument is active (true) or inactive (false) - only available when includeInactive=true . |