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>"
}

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>

A URL to the JSON Schema for this object.

Example:

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