GET
/
v1
/
equity
/
sector-tickers
Get Sector Tickers
curl --request GET \
  --url https://api.tradearies.dev/v1/equity/sector-tickers \
  --header 'Authorization: Bearer <token>' \
  --header 'X-API-Key: <api-key>'
[
  {
    "symbol": "<string>",
    "type": "<string>",
    "sicCode": "<string>",
    "isETF": true,
    "sector": "<string>",
    "logoUrl": "<string>",
    "change": 123,
    "changePercent": 123,
    "lastPrice": 123,
    "previousClose": 123,
    "timestamp": 123,
    "volume": 123,
    "description": "<string>",
    "tag": "<string>"
  }
]

Authorizations

X-API-Key
string
header
required
Authorization
string
header
required

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

Query Parameters

sector
enum<string>
required

The sector to filter by

Available options:
ENERGY&TRANSPORTATION,
FINANCE,
INDUSTRIALAPPLICATIONSANDSERVICES,
LIFESCIENCES,
MANUFACTURING,
REALESTATE&CONSTRUCTION,
TECHNOLOGY,
TRADE&SERVICES

Response

200
application/json

Sector tickers retrieved successfully

The response is of type object[].