v1
latestOpenAPI 3.1.02026-07-243035381.4 MBExchange rate
Get Price Change by Symbol - Batch
/v4/data/rate/price-change/batch
200 credits per API call
Get price change data for multiple symbols in a single request. Each item may specify a time range (timeFrom + timeTo) or an interval. Maximum 10 items per request.
Request body must be an array of objects (or { "body": [ ... ] }). Each object must include symbol, batchId, and either (timeFrom + timeTo) or interval.
post/v4/data/rate/price-change/batch
Request body
Example request
[
{
"symbol": "BTC",
"basePair": "USDT",
"batchId": "one"
}
]Response
OK - Returns price change data for each requested item; each result includes the corresponding <code>batchId</code>.
Example response
[
{
"symbol": "BTC",
"basePair": "USDT",
"open": "45000.50",
"close": "46500.75",
"openTime": 1704067200000,
"closeTime": 1704153600000,
"absoluteChange": "1500.25",
"percentageChange": 3.33,
"batchId": "one"
}
]