3.4 Index Historical Klines

GET /indices/{index_ticker}/klines

Path Parameters

Parameter
Type
Required
Description

ticker

string

Yes

Index ticker, e.g. ssimag7

Query Parameters

Parameter
Type
Required
Description

interval

string

Yes

Time interval. Only 1d is supported

start_time

timestamp

No

Start time

end_time

timestamp

No

End time

limit

integer

No

Default 100, max 500

Response Example

[
    {
        "timestamp": 1710000000000,
        "open": 123,
        "high": 130,
        "low": 120,
        "close": 125
    }
]

Response Fields

Field
Type
Description

timestamp

Long

Timestamp (milliseconds)

open

Number

Open price

high

Number

High price

low

Number

Low price

close

Number

Close price

Notes

  • Only daily (1d) klines are available.

  • The query range is limited to the most recent 3 months.

Last updated