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

[
    {
        "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

Last updated