curl --request GET \
--url https://api.amberdata.com/markets/spot/analytics/trade/information/exchanges \
--header 'x-api-key: <api-key>'{
"status": 200,
"title": "OK",
"description": "Successful request",
"payload": {
"data": [
{
"endDate": "2025-04-02 10:52:00 000",
"exchange": "binanceus",
"pair": "btc_usd",
"startDate": "2025-02-19 13:43:00 000"
},
{
"endDate": "2025-03-17 23:58:00 000",
"exchange": "bitstamp",
"pair": "btc_usd",
"startDate": "2025-01-01 00:00:00 000"
},
{
"endDate": "2025-04-02 11:54:00 000",
"exchange": "bullish",
"pair": "btc_usd",
"startDate": "2025-03-20 15:09:00 000"
},
{
"endDate": "2025-04-02 11:54:00 000",
"exchange": "cryptocom",
"pair": "btc_usd",
"startDate": "2025-02-18 23:44:00 000"
},
{
"endDate": "2025-04-02 11:54:00 000",
"exchange": "gdax",
"pair": "btc_usd",
"startDate": "2025-01-01 00:00:00 000"
},
{
"endDate": "2025-03-17 23:59:00 000",
"exchange": "gemini",
"pair": "btc_usd",
"startDate": "2025-01-01 00:00:00 000"
},
{
"endDate": "2025-04-02 11:53:00 000",
"exchange": "hashkey",
"pair": "btc_usd",
"startDate": "2025-02-28 19:14:00 000"
},
{
"endDate": "2025-03-17 23:59:00 000",
"exchange": "itbit",
"pair": "btc_usd",
"startDate": "2025-01-01 00:00:00 000"
},
{
"endDate": "2025-03-17 23:59:00 000",
"exchange": "kraken",
"pair": "btc_usd",
"startDate": "2025-01-01 00:00:00 000"
}
],
"metadata": {
"api-version": "2023-09-30"
}
}
}This endpoint returns all the exchanges that provide support for a given pair in the spot “Trade Analytics” section. The associated startDate and endDate represent the available history of trade data.
curl --request GET \
--url https://api.amberdata.com/markets/spot/analytics/trade/information/exchanges \
--header 'x-api-key: <api-key>'{
"status": 200,
"title": "OK",
"description": "Successful request",
"payload": {
"data": [
{
"endDate": "2025-04-02 10:52:00 000",
"exchange": "binanceus",
"pair": "btc_usd",
"startDate": "2025-02-19 13:43:00 000"
},
{
"endDate": "2025-03-17 23:58:00 000",
"exchange": "bitstamp",
"pair": "btc_usd",
"startDate": "2025-01-01 00:00:00 000"
},
{
"endDate": "2025-04-02 11:54:00 000",
"exchange": "bullish",
"pair": "btc_usd",
"startDate": "2025-03-20 15:09:00 000"
},
{
"endDate": "2025-04-02 11:54:00 000",
"exchange": "cryptocom",
"pair": "btc_usd",
"startDate": "2025-02-18 23:44:00 000"
},
{
"endDate": "2025-04-02 11:54:00 000",
"exchange": "gdax",
"pair": "btc_usd",
"startDate": "2025-01-01 00:00:00 000"
},
{
"endDate": "2025-03-17 23:59:00 000",
"exchange": "gemini",
"pair": "btc_usd",
"startDate": "2025-01-01 00:00:00 000"
},
{
"endDate": "2025-04-02 11:53:00 000",
"exchange": "hashkey",
"pair": "btc_usd",
"startDate": "2025-02-28 19:14:00 000"
},
{
"endDate": "2025-03-17 23:59:00 000",
"exchange": "itbit",
"pair": "btc_usd",
"startDate": "2025-01-01 00:00:00 000"
},
{
"endDate": "2025-03-17 23:59:00 000",
"exchange": "kraken",
"pair": "btc_usd",
"startDate": "2025-01-01 00:00:00 000"
}
],
"metadata": {
"api-version": "2023-09-30"
}
}
}Was this page helpful?