Skip to main content
GET
/
taker-volume
/
{symbol}
Taker Volume Historic
curl --request GET \
  --url https://api.qfex.com/taker-volume/{symbol}
{
  "count": 123,
  "data": [
    {
      "interval": "<string>",
      "intervalStart": "<string>",
      "netTakerQty": 123,
      "symbol": "<string>",
      "takerBuyNotional": 123,
      "takerBuyQty": 123,
      "takerSellNotional": 123,
      "takerSellQty": 123
    }
  ],
  "$schema": "<string>"
}

Path Parameters

symbol
string
required

Query Parameters

interval
string
required
fromISO
string
required
toISO
string
required

Response

OK

count
integer<int64>
required
data
object[] | null
required
$schema
string<uri>

A URL to the JSON Schema for this object.

Example:

"https://api.qfex.com/schemas/TakerVolumeHistoricResponseBody.json"