Skip to main content
GET
/
candles
/
last
cURL
curl --request GET \
  --url https://sandbox.x.architect.co/api/candles/last \
  --header 'Authorization: Bearer <token>'
{
  "candle": {
    "buy_volume": 123,
    "close": "<string>",
    "high": "<string>",
    "low": "<string>",
    "open": "<string>",
    "sell_volume": 123,
    "symbol": "<string>",
    "timestamp_ns": 1,
    "volume": 123
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

symbol
string
required
candle_width
string
required

Response

200 - application/json

Latest candle

candle
object
required