# 4.6 Sector Index History

```
GET /crypto-stocks/sector/{sector_name}/index
```

**Path Parameters**

| Parameter    | Type   | Required | Description |
| ------------ | ------ | -------- | ----------- |
| sector\_name | string | Yes      | Sector name |

**Query Parameters**

| Parameter   | Type   | Required | Description          |
| ----------- | ------ | -------- | -------------------- |
| start\_date | string | No       | Start date           |
| end\_date   | string | No       | End date             |
| limit       | string | No       | Default 100, max 200 |

**Response Example**

```json
[
    {
        "date": "2024-04-12",
        "price": 123,
        "btc_price": 65000,
        "nasdaq100_index": 88.27
    }
]
```

**Response Fields**

| Field            | Type   | Description                       |
| ---------------- | ------ | --------------------------------- |
| date             | Long   | Date (timestamp)                  |
| price            | Number | Sector index price                |
| btc\_price       | Number | BTC price at the same time        |
| nasdaq100\_index | Number | NASDAQ 100 index at the same time |


---

# 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/4.-crypto-stocks/sector-index.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.
