Sectors

Discover all valid sector values for scan filtering

GET https://api.tickerapi.ai/v1/list/sectors

Returns the complete list of valid sector values with the number of assets in each. Use these values with the sector parameter on any scan endpoint. Available on all tiers. Does not count against request limits.

Response Fields

FieldTypeDescription
sectorsarrayArray of sector objects, sorted by asset count descending
total_sectorsintegerTotal number of sectors

Sector Object

FieldTypeDescription
namestringSector name — use this exact value for the sector parameter on scan endpoints
asset_countintegerNumber of active assets in this sector

Example

GET /v1/list/sectors
{ "sectors": [ { "name": "Technology", "asset_count": 1842 }, { "name": "Financial Services", "asset_count": 1523 }, { "name": "Healthcare", "asset_count": 1201 }, { "name": "Consumer Cyclical", "asset_count": 607 }, { "name": "Energy", "asset_count": 412 } ], "total_sectors": 11 }

Usage with Scan Endpoints

The sector names returned by this endpoint are the exact values accepted by the sector parameter on all scan endpoints. The parameter is case-insensitive.

Example: filter oversold scan by sector
curl "https://api.tickerapi.ai/v1/scan/oversold?sector=Technology" \ -H "Authorization: Bearer $TICKERAPI_KEY"