Skip to main content
GET
/
v1
/
equity
/
sector-wise-change
Python (SDK)
from finance_dev import FinanceDev, models
import os


with FinanceDev(
    security=models.Security(
        client_id=os.getenv("FINANCEDEV_CLIENT_ID", ""),
        client_secret=os.getenv("FINANCEDEV_CLIENT_SECRET", ""),
    ),
) as fd_client:

    res = fd_client.analytics.get_sector_wise_change(limit="15")

    # Handle response
    print(res)
[
  {
    "sector": "<string>",
    "avgChange": 123
  }
]

Documentation Index

Fetch the complete documentation index at: https://finance.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Sector-wise changes retrieved successfully

sector
string
required

The sector name

avgChange
number
required

Average percentage change for the sector