Orderflow
Aggregates the volume from market sell orders, summing the size of every market order on the sell side to reflect sell ing pressure.
Request
Add the parameter Authorization
to Headers,whose value is to concatenate the Token after the Bearer. Example:Authorization: Bearer ********************
Token URL: https://auth-api.dev.hyblockcapital.com/oauth2/token
Add parameter in header x-api-key
Example:x-api-key: ********************
or
Request Code Samples
curl --location --request GET 'https://api.dev.hyblockcapital.com/v2/sellVolume?coin&exchange&timeframe&limit&startTime&endTime&sort&advanceFilter&marketTypes&bucket' \
--header 'Authorization: Bearer <token>' \
--header 'x-api-key: <api-key>'
Responses
{
"data": [
{
"openDate": 1665047820,
"sellVolume": 1798220.5481000019
}
],
"metadata": {
"exchanges": [
"bitmex_perp_coin",
"bybit_perp_coin",
"bitfinex_perp_stable",
"deribit_perp_stable",
"huobi_perp_coin",
"phemex_perp_stable",
"okx_perp_coin",
"okx_qtrly",
"binance_spot",
"binance_perp_stable",
"binance_perp_coin",
"coinbase_spot",
"arkham_perp_stable",
"arkham_spot"
]
}
}
Modified at 2025-12-31 05:42:54