Skip to main content

Tickers

PublicApi

/api/tickers

GET

Summary:

Get ticker info

Parameters
NameLocated inDescriptionRequiredSchema
currencyPairCodequerycurrency pair codeNostring
Responses

Json example:

[
{
"timestamp": 0,
"currencyPairCode": "string",
"price": 0,
"price24hAgo": 0,
"priceChangePercentage24h": 0,
"volume24h": 0,
"bidPrice": 0,
"askPrice": 0,
"low24h": 0,
"high24h": 0
}
]
CodeDescription
200Success

/api/ohlc

GET

Summary:

Get candles

Parameters
NameLocated inDescriptionRequiredSchema
intervalqueryCandle interval. Possible values: year, month, day, hour4, hour, minutes30, minutes15, minutes5, minutes3, minuteNostring
currencyPairCodequeryExample: "BTC_USDT"Nostring
startqueryRange start. Example: "2021-02-05T14:00:00"NodateTime
endqueryRange end. Example: "2021-02-05T15:00:00"NodateTime
Responses

Json example:

[
{
"date": "2024-08-14T08:45:22.621Z",
"open": 0,
"max": 0,
"min": 0,
"close": 0,
"volume": 0,
"volumeBase": 0
}
]
CodeDescription
200Success