Skip to main content
GET
/
api
/
klines
/
data
cURL
curl --request GET \
  --url https://api.production.hyperoru.com/api/klines/data \
  --header 'Authorization: Bearer <token>'
{
  "candles": [
    {
      "close": 123,
      "high": 123,
      "low": 123,
      "open": 123,
      "timestamp": 123,
      "volume": 123
    }
  ],
  "period": "<string>",
  "symbol": "<string>"
}

Authorizations

Authorization
string
header
required

Session token issued by POST /api/users/login, transported as Authorization: Bearer <token>.

Response

Kline candles

K-line response.

candles
object[]
required
period
string
required
symbol
string
required