Skip to content

Money Fund NAV Query

This endpoint is used to query the net asset value (NAV) of money funds (including the latest NAV and historical NAV), supporting filtering by product code and a time range of up to one year.

  • For details on money fund order operations, please refer to Money Fund Trading
  • All timestamps in requests and responses are by default expressed in UNIX seconds.

Net Asset Value Query

HTTP Request

bash
GET /market/v1/money-funds/navs/{symbol}

Request Parameters

ParameterTypeRequiredDescription
symbolSTRINGYesRoute parameter. Fund product code.
pageINTNoURL parameter. Current page, default 1.
page_sizeINTNoURL parameter. Number of rows per page, default 20, maximum 100.
start_dateINTNoURL parameter. Start time, if not provided, starts from one year ago. UNIX-style timestamp.
end_dateINTNoURL parameter. End time. UNIX-style timestamp.

cURL Request Example

bash
curl --location --request GET '{$base_url}/market/v1/money-funds/navs/EFUSDFund?start_date=1759248000' \
--header 'X-API-Key: YOUR_API_KEY' \
--header 'X-API-Signature: YOUR_GENERATED_SIGNATURE' \
--header 'X-API-Timestamp: 1759253657'

Successful Response

Field NameTypeDescription
dateINTDate
navDECIMALNet Asset Value

Example

json
{
  "code": 0,
  "data": {
    "total_records": 2,
    "page": 1,
    "page_size": 20,
    "navs": [
      {
        "date": 1760918400,
        "nav": 110
      },
      {
        "date": 1754956800,
        "nav": 116.806
      }
    ]
  }
}

Error Response

Field NameTypeDescription
codeINTError code
messageSTRINGError message
detailsSTRINGAdditional details

範例

json
{
  "code": 13010001,
  "message": "The start and end dates should be Unix-style timestamps."
}