v1

latestOpenAPI 3.0.02026-07-266032101.8 KB

Get OHLC candles (floor price & active listings)

get/tv/history

Query parameters

symbolstring required

In the form <SLUG>/SOL (for floor price) or <SLUG>%23LISTINGS (for # active listings)

resolutionstring required

Interval of candles in minutes (valid: 1, 5, 15, 30, 45, 60, 120, 180, 240, 1D, 1W, 1M)

fromstring required

Start time (in unix seconds): leave at 1 (not used, see countback)

tostring required

End time (in unix seconds)

countbackstring required

Max # of candles to query backwards in time starting from from (max: 2880)

Response

200

sstring
tinteger[]
ointeger[]
cinteger[]
hinteger[]
linteger[]
vinteger[]

Example response

{
  "s": "string",
  "t": [
    1
  ],
  "o": [
    1
  ],
  "c": [
    1
  ],
  "h": [
    1
  ],
  "l": [
    1
  ],
  "v": [
    1
  ]
}