# 2.4 ETF Historical Data

```
GET /etfs/{ticker}/history
```

**Path Parameters**

| Parameter   | Type    | Required | Description                                           |
| ----------- | ------- | -------- | ----------------------------------------------------- |
| ticker      | string  | Yes      | ETF ticker                                            |
| start\_date | string  | No       | Start date. Only the most recent 1 month is supported |
| end\_date   | string  | No       | End date. Only the most recent 1 month is supported   |
| limit       | integer | No       | Default 50 records from start\_date, max 300          |

**Response Example**

```json
[
    {
        "date": "2024-04-12",
        "ticker": "IBIT",
        "net_inflow": 3000000,
        "cum_inflow": 400000000,
        "net_assets": 5000000,
        "currency_share": 0.005,
        "prem_dsc": -0.0001,
        "value_traded": 4441000000,
        "volume": 322302
    }
]
```

**Response Fields**

| Field           | Type   | Description                 |
| --------------- | ------ | --------------------------- |
| date            | Long   | Data date (timestamp)       |
| ticker          | String | ETF ticker                  |
| net\_inflow     | Number | Daily net inflow (USD)      |
| cum\_inflow     | Number | Cumulative net inflow (USD) |
| net\_assets     | Number | Net assets (USD)            |
| currency\_share | Number | Market share                |
| prem\_dsc       | Number | Premium/discount rate       |
| value\_traded   | Number | Trading volume (USD)        |
| volume          | Number | Share volume                |

**Notes**

* The query range is limited to the most recent 1 month.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://sosovalue-1.gitbook.io/sosovalue-api-doc/2.-etf/history.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
