Skip to main content
GET
/
v1
/
equity
/
sector-tickers
Get Sector Tickers
curl --request GET \
  --url https://api.aries.com/v1/equity/sector-tickers \
  --header 'Authorization: Bearer <token>'
[
  {
    "symbol": "AAPL",
    "type": "stock",
    "change": 1.25,
    "changePercent": 0.72,
    "isETF": false,
    "lastPrice": 175.43,
    "logoUrl": "https://cdn.example.com/logos/AAPL.png",
    "previousClose": 174.18,
    "sector": "Technology",
    "sicCode": "3571",
    "timestamp": 1736956800,
    "volume": 52000000
  }
]

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

sector
enum<string>
required

Which industry sector to list tickers for. Use the exact uppercase value (including spaces) — these match the values returned by GET /v1/equity/sector-wise-change.

  • TECHNOLOGY — software, hardware, semiconductors
  • HEALTHCARE — pharma, biotech, medical devices, providers
  • FINANCIAL SERVICES — banks, insurance, asset managers
  • CONSUMER CYCLICAL — discretionary spending (autos, retail, travel)
  • CONSUMER DEFENSIVE — staples (food, household goods, drugstores)
  • INDUSTRIALS — manufacturing, transport, defense, machinery
  • ENERGY — oil & gas, renewable energy
  • UTILITIES — power, water, gas distribution
  • BASIC MATERIALS — mining, chemicals, paper, metals
  • COMMUNICATION SERVICES — telecom, media, internet platforms
  • REAL ESTATE — REITs and real-estate operators
  • OTHER — uncategorized
  • NONE — no sector classification
Available options:
HEALTHCARE,
UTILITIES,
CONSUMER CYCLICAL,
INDUSTRIALS,
CONSUMER DEFENSIVE,
BASIC MATERIALS,
COMMUNICATION SERVICES,
FINANCIAL SERVICES,
TECHNOLOGY,
REAL ESTATE,
NONE,
OTHER,
ENERGY
Example:

"TECHNOLOGY"

Response

Sector tickers retrieved successfully

change
number

Price change from previous close

changePercent
number

Percentage change from previous close

isETF
boolean

Whether the symbol is an ETF

lastPrice
number

Most recent trading price

logoUrl
string

URL to the company or ETF logo. Use it for visual identification in symbol lists.

previousClose
number

Previous session close price. Use it as the baseline for change and changePercent.

sector
string

Sector classification for the asset. Use it for grouping and filtering symbol lists.

sicCode
string

Standard Industrial Classification code

symbol
string

Trading symbol for the asset. Use this exact value when fetching quotes, charts, or research.

timestamp
number

Timestamp of the last update

type
string

Instrument class or provider category returned by the market data service. This value is not the trading order type.

Example:

"stock"

volume
number

Shares or contracts traded during the session. Use it to rank activity and liquidity.