curl --request GET \
--url https://api.amberdata.com/markets/spot/analytics/depth/bid-ask-spread \
--header 'x-api-key: <api-key>'{
"status": 200,
"title": "OK",
"description": "Successful request",
"payload": {
"data": [
{
"bestAskPrice": 96589.6,
"bestBidPrice": 96222.19,
"exchange": "binanceus",
"midPrice": 96405.895,
"pair": "btc_usd",
"spread": 367.4100000000035,
"spreadPercent": 0.3811074001232015,
"timestamp": 1746144000000
},
{
"bestAskPrice": 96524.98,
"bestBidPrice": 96523.62,
"exchange": "gdax",
"midPrice": 96524.29999999999,
"pair": "btc_usd",
"spread": 1.360000000000582,
"spreadPercent": 0.0014089716268344678,
"timestamp": 1746144000000
},
{
"bestAskPrice": 96469.9,
"bestBidPrice": 96469.8,
"exchange": "kraken",
"midPrice": 96469.85,
"pair": "btc_usd",
"spread": 0.09999999999126885,
"spreadPercent": 0.00010365932982301604,
"timestamp": 1746144000000
},
{
"bestAskPrice": 96504.1,
"bestBidPrice": 96486.8,
"exchange": "okex",
"midPrice": 96495.45000000001,
"pair": "btc_usd",
"spread": 17.30000000000291,
"spreadPercent": 0.017928306464193813,
"timestamp": 1746144000000
},
{
"bestAskPrice": 96589.61,
"bestBidPrice": 96222.19,
"exchange": "binanceus",
"midPrice": 96405.9,
"pair": "btc_usd",
"spread": 367.41999999999825,
"spreadPercent": 0.3811177531665575,
"timestamp": 1746143940000
},
{
"bestAskPrice": 96537.56,
"bestBidPrice": 96537.55,
"exchange": "gdax",
"midPrice": 96537.555,
"pair": "btc_usd",
"spread": 0.00999999999476131,
"spreadPercent": 0.000010358663004010523,
"timestamp": 1746143940000
}
]
}
}This endpoint allows users to explore the bid-ask spread for a specific trading pair or underlying asset across one or more exchanges. It provides both the absolute dollar spread (based on the best bid and offer) and the spread as a percentage of the mid-price.
curl --request GET \
--url https://api.amberdata.com/markets/spot/analytics/depth/bid-ask-spread \
--header 'x-api-key: <api-key>'{
"status": 200,
"title": "OK",
"description": "Successful request",
"payload": {
"data": [
{
"bestAskPrice": 96589.6,
"bestBidPrice": 96222.19,
"exchange": "binanceus",
"midPrice": 96405.895,
"pair": "btc_usd",
"spread": 367.4100000000035,
"spreadPercent": 0.3811074001232015,
"timestamp": 1746144000000
},
{
"bestAskPrice": 96524.98,
"bestBidPrice": 96523.62,
"exchange": "gdax",
"midPrice": 96524.29999999999,
"pair": "btc_usd",
"spread": 1.360000000000582,
"spreadPercent": 0.0014089716268344678,
"timestamp": 1746144000000
},
{
"bestAskPrice": 96469.9,
"bestBidPrice": 96469.8,
"exchange": "kraken",
"midPrice": 96469.85,
"pair": "btc_usd",
"spread": 0.09999999999126885,
"spreadPercent": 0.00010365932982301604,
"timestamp": 1746144000000
},
{
"bestAskPrice": 96504.1,
"bestBidPrice": 96486.8,
"exchange": "okex",
"midPrice": 96495.45000000001,
"pair": "btc_usd",
"spread": 17.30000000000291,
"spreadPercent": 0.017928306464193813,
"timestamp": 1746144000000
},
{
"bestAskPrice": 96589.61,
"bestBidPrice": 96222.19,
"exchange": "binanceus",
"midPrice": 96405.9,
"pair": "btc_usd",
"spread": 367.41999999999825,
"spreadPercent": 0.3811177531665575,
"timestamp": 1746143940000
},
{
"bestAskPrice": 96537.56,
"bestBidPrice": 96537.55,
"exchange": "gdax",
"midPrice": 96537.555,
"pair": "btc_usd",
"spread": 0.00999999999476131,
"spreadPercent": 0.000010358663004010523,
"timestamp": 1746143940000
}
]
}
}Was this page helpful?