Skip to main content
GET
/
v1
/
etf
/
sector
Get ETF Sector Allocation
curl --request GET \
  --url https://api.aries.com/v1/etf/sector \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "sectorExposure": [
      {
        "industry": "Technology",
        "exposure": 31.219999313354492
      },
      {
        "industry": "Financial Services",
        "exposure": 12.470000267028809
      },
      {
        "industry": "Healthcare",
        "exposure": 11.529999732971191
      }
    ],
    "symbol": "SPY"
  }
}

Documentation Index

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

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

Response payload

Each sectorExposure entry uses industry and exposure. The response does not include a sector field on allocation entries.

Authorizations

Authorization
string
header
required

OAuth2 Bearer token: obtain an access token from the token endpoint and send it in the Authorization header.

Query Parameters

symbol
string
required

(Required) ETF ticker symbol

isin
string

(Optional) ISIN identifier

Response

Successful response

data
object