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
  }
]

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

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

Query Parameters

sector
enum<string>
required

Sector name (same values as returned by GET /v1/equity/sector-wise-change).

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 logo

previousClose
number

Previous closing price

sector
string

The sector of the asset

sicCode
string

Standard Industrial Classification code

symbol
string

The trading symbol

timestamp
number

Timestamp of the last update

type
string

The symbol type

volume
number

Trading volume