Skip to main content
GET
/
candles
/
{symbol}
Candles
curl --request GET \
  --url https://api.qfex.com/candles/{symbol}
{
  "candles": [
    {
      "baseTokenVolume": "<string>",
      "close": "<string>",
      "high": "<string>",
      "low": "<string>",
      "open": "<string>",
      "orderbookMidPriceClose": "<string>",
      "orderbookMidPriceOpen": "<string>",
      "resolution": "<string>",
      "startedAt": "<string>",
      "startingOpenInterest": "<string>",
      "ticker": "<string>",
      "trades": 1,
      "usdVolume": "<string>"
    }
  ],
  "$schema": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.qfex.com/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

symbol
string
required

Query Parameters

resolution
string
required
fromISO
string
required
toISO
string
required

Response

OK

candles
object[] | null
required
$schema
string<uri>
read-only

A URL to the JSON Schema for this object.

Example:

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