curl --request GET \
--url https://api.amberdata.com/markets/spot/analytics/trade/information/pairs \
--header 'x-api-key: <api-key>'{
"status": 200,
"title": "OK",
"description": "Successful request",
"payload": {
"data": [
{
"endDate": "2025-04-02 11:39:00 000",
"exchange": "gdax",
"pair": "00_usd",
"startDate": "2025-01-01 00:00:00 000"
},
{
"endDate": "2025-04-02 11:20:00 000",
"exchange": "gdax",
"pair": "1inch_eur",
"startDate": "2025-03-12 13:18:00 000"
},
{
"endDate": "2025-04-02 10:42:00 000",
"exchange": "gdax",
"pair": "1inch_gbp",
"startDate": "2025-03-12 13:14:00 000"
},
{
"endDate": "2025-04-02 11:28:00 000",
"exchange": "gdax",
"pair": "1inch_usd",
"startDate": "2025-01-01 00:00:00 000"
},
{
"endDate": "2025-04-02 11:39:00 000",
"exchange": "gdax",
"pair": "a8_usd",
"startDate": "2025-01-01 00:02:00 000"
},
{
"endDate": "2025-04-02 11:43:00 000",
"exchange": "gdax",
"pair": "aave_btc",
"startDate": "2025-03-12 13:11:00 000"
},
{
"endDate": "2025-04-02 11:44:00 000",
"exchange": "gdax",
"pair": "aave_eur",
"startDate": "2025-03-12 13:11:00 000"
},
{
"endDate": "2025-04-02 11:32:00 000",
"exchange": "gdax",
"pair": "aave_gbp",
"startDate": "2025-03-12 13:11:00 000"
}
]
}
}This endpoint returns all the available pairs for a given exchange 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/pairs \
--header 'x-api-key: <api-key>'{
"status": 200,
"title": "OK",
"description": "Successful request",
"payload": {
"data": [
{
"endDate": "2025-04-02 11:39:00 000",
"exchange": "gdax",
"pair": "00_usd",
"startDate": "2025-01-01 00:00:00 000"
},
{
"endDate": "2025-04-02 11:20:00 000",
"exchange": "gdax",
"pair": "1inch_eur",
"startDate": "2025-03-12 13:18:00 000"
},
{
"endDate": "2025-04-02 10:42:00 000",
"exchange": "gdax",
"pair": "1inch_gbp",
"startDate": "2025-03-12 13:14:00 000"
},
{
"endDate": "2025-04-02 11:28:00 000",
"exchange": "gdax",
"pair": "1inch_usd",
"startDate": "2025-01-01 00:00:00 000"
},
{
"endDate": "2025-04-02 11:39:00 000",
"exchange": "gdax",
"pair": "a8_usd",
"startDate": "2025-01-01 00:02:00 000"
},
{
"endDate": "2025-04-02 11:43:00 000",
"exchange": "gdax",
"pair": "aave_btc",
"startDate": "2025-03-12 13:11:00 000"
},
{
"endDate": "2025-04-02 11:44:00 000",
"exchange": "gdax",
"pair": "aave_eur",
"startDate": "2025-03-12 13:11:00 000"
},
{
"endDate": "2025-04-02 11:32:00 000",
"exchange": "gdax",
"pair": "aave_gbp",
"startDate": "2025-03-12 13:11:00 000"
}
]
}
}Was this page helpful?