Skip to main content
GET
/
candles
cURL
curl --request GET \
  --url https://gateway.architect.exchange/api/candles \
  --header 'Authorization: Bearer <token>'
{
  "candles": [
    {
      "buy_volume": 123,
      "close": "<string>",
      "high": "<string>",
      "low": "<string>",
      "open": "<string>",
      "sell_volume": 123,
      "symbol": "<string>",
      "ts": "2023-11-07T05:31:56Z",
      "volume": 123,
      "width": "1s"
    }
  ]
}

Authorizations

Authorization
string
header
required

User session token

Query Parameters

symbol
string
required
start_timestamp_ns
integer<int64>
required
Required range: x >= 0
end_timestamp_ns
integer<int64>
required
Required range: x >= 0
candle_width
string
required

Response

200 - application/json

List of candles

candles
object[]
required