中文

API Documentation

Indices

Index endpoints cover index discovery, market data, bars, and technical indicators for benchmark-oriented workflows.

Open llm.txt

Index endpoints are well suited for market overview pages, benchmark series, and technical analysis workflows. The response shape intentionally mirrors the equity domain, so your client code can reuse most of the same parsing logic.

Index directory

GET/api/v1/indices

List indices

listIndices

NameInTypeRequiredDescription
marketqueryMarketIdNo
codequerystringNo
namequerystringNo
page[size]queryinteger (default 100)No
StatusDescriptionSchema
200Index collectionInstrumentCollectionResponse
400Invalid request parametersErrorResponse
401UnauthorizedErrorResponse
GET/api/v1/indices/{instrument_id}

Get one index

getIndex

StatusDescriptionSchema
200Index resourceInstrumentResponse
401UnauthorizedErrorResponse
404Resource not foundErrorResponse

Index market data

GET/api/v1/indices/{instrument_id}/quotes

List index quotes

listIndexQuotes

NameInTypeRequiredDescription
instrument_idpathstringYes
fromquerystring (date-time)No
toquerystring (date-time)No
datequerystring (date)No
page[size]queryinteger (default 100)No
StatusDescriptionSchema
200Quote collectionQuoteCollectionResponse
400Invalid request parametersErrorResponse
401UnauthorizedErrorResponse
GET/api/v1/indices/{instrument_id}/bars

List index bars

listIndexBars

NameInTypeRequiredDescription
instrument_idpathstringYes
intervalqueryIntervalIdYes
adjustmentqueryAdjustmentIdNo
fromquerystring (date-time)No
toquerystring (date-time)No
datequerystring (date)No
page[size]queryinteger (default 100)No
StatusDescriptionSchema
200Bar collectionBarCollectionResponse
400Invalid request parametersErrorResponse
401UnauthorizedErrorResponse

Technical indicators

GET/api/v1/indices/{instrument_id}/technical-indicators/{indicator}

List index technical indicators

listIndexTechnicalIndicators

NameInTypeRequiredDescription
instrument_idpathstringYes
indicatorpathIndicatorIdYes
intervalqueryIntervalIdYes
adjustmentqueryAdjustmentIdNo
fromquerystring (date-time)No
toquerystring (date-time)No
datequerystring (date)No
page[size]queryinteger (default 100)No
StatusDescriptionSchema
200Technical indicator collectionTechnicalIndicatorCollectionResponse
400Invalid request parametersErrorResponse
401UnauthorizedErrorResponse

TechnicalIndicatorCollectionResponse

FieldTypeRequiredDescription
dataArray<TechnicalIndicatorPoint>Yes
data[].instrument_idstringYes
data[].indicatorIndicatorIdYes
data[].intervalIntervalIdYes
data[].adjustmentAdjustmentIdYes
data[].timestampstring (date-time)Yes
data[].valuesobjectYes
data[].values.*stringYes
metaMetaYes
meta.next_cursorstring | nullYes
linksSelfLinksYes
links.selfstringYes
Fetch index indicatorsbash
curl "https://heliumlabz.com/api/v1/indices/000300.SH/technical-indicators/rsi?interval=1d&from=2026-01-01&to=2026-03-01" \
-H "X-API-Key: $ASHARE_API_KEY"