# 2.3 ETF Market Snapshot

```
GET /etfs/{ticker}/market-snapshot
```

**Path Parameters**

| Parameter | Type   | Required | Description |
| --------- | ------ | -------- | ----------- |
| ticker    | string | Yes      | ETF ticker  |

**Response Example**

```json
{
    "date": "2024-04-12",
    "ticker": "IBIT",
    "sponsor_fee": 0.003,
    "net_inflow": 3000000,
    "cum_inflow": 400000000,
    "net_assets": 5000000,
    "mkt_price": 14.5,
    "prem_dsc": -0.0001,
    "value_traded": 4441000000,
    "volume": 322302
}
```

**Response Fields**

| Field         | Type   | Description                 |
| ------------- | ------ | --------------------------- |
| date          | Long   | Data date (timestamp)       |
| ticker        | String | ETF ticker                  |
| sponsor\_fee  | Number | Management fee              |
| net\_inflow   | Number | Daily net inflow (USD)      |
| cum\_inflow   | Number | Cumulative net inflow (USD) |
| net\_assets   | Number | Net assets (USD)            |
| mkt\_price    | Number | Market price                |
| prem\_dsc     | Number | Premium/discount rate       |
| value\_traded | Number | Trading volume (USD)        |
| volume        | Number | Share volume                |


---

# 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/market-snapshot.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.
