中文

API Documentation

Funds

Fund endpoints provide the core directory and quote-level data needed for list, detail, and pricing use cases.

Open llm.txt

The fund domain currently covers the two most common building blocks: fund master data and quote-level market data. That is usually enough for catalog, detail, and price-oriented product surfaces.

Fund directory

GET/api/v1/funds

List funds

listFunds

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

Get one fund

getFund

StatusDescriptionSchema
200Fund resourceInstrumentResponse
401UnauthorizedErrorResponse
404Resource not foundErrorResponse

Fund quotes

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

List fund quotes

listFundQuotes

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

QuoteCollectionResponse

FieldTypeRequiredDescription
dataArray<Quote>Yes
data[].instrument_idstringYes
data[].marketstringYes
data[].asset_classstringYes
data[].timestampstring (date-time)Yes
data[].pricestring | nullNo
data[].openstring | nullNo
data[].highstring | nullNo
data[].lowstring | nullNo
data[].previous_closestring | nullNo
data[].amountstring | nullNo
data[].volumestring | nullNo
data[].changestring | nullNo
data[].change_percentstring | nullNo
metaMetaYes
meta.next_cursorstring | nullYes
linksSelfLinksYes
links.selfstringYes
Fetch fund quotesbash
curl "https://heliumlabz.com/api/v1/funds/161725.SZ/quotes?from=2026-03-01&to=2026-03-31" \
-H "X-API-Key: $ASHARE_API_KEY"