# 3.3 Index Market Snapshot

```
GET /indices/{index_ticker}/market-snapshot
```

**Request Parameters**

| Parameter | Type   | Required | Description                |
| --------- | ------ | -------- | -------------------------- |
| ticker    | string | Yes      | Index ticker, e.g. ssimag7 |

**Response Example**

```json
{
    "price": 20.93,
    "24h_change_pct": -0.0016,
    "7day_roi": 0.0056,
    "1month_roi": 0.062,
    "3month_roi": 0.275,
    "1year_roi": 0.15,
    "ytd": -0.243
}
```

**Response Fields**

| Field            | Type   | Description               |
| ---------------- | ------ | ------------------------- |
| price            | Number | Current index price       |
| 24h\_change\_pct | Number | 24-hour change percentage |
| 7day\_roi        | Number | 7-day return              |
| 1month\_roi      | Number | 1-month return            |
| 3month\_roi      | Number | 3-month return            |
| 1year\_roi       | Number | 1-year return             |
| ytd              | Number | Year-to-date return       |


---

# 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/3.-sosovalue-index/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.
