💡 New here?
This page covers the API. For the full strategy and intuition behind this dataset, see:
[Guide: How Stocks Are Grouped (Ticker Classification)]

Ticker Sector & Industry Classification

The Ticker Sector & Industry Classification dataset provides a mapping of equity tickers into Alphanume-defined sector and industry groups.

Each observation assigns a ticker to a consistent, internally defined classification system derived from underlying business activity. These classifications are designed for quantitative workflows and are not intended to replicate standardized taxonomies.

The dataset is structured to be stable, URL-safe, and directly queryable for use in filtering, grouping, and feature engineering pipelines.

Why it’s useful

Use this dataset to:

• Filter universes by sector or industry exposure
• Build sector-neutral or industry-relative strategies
• Group tickers for cross-sectional analysis
• Construct features based on economic exposure
• Standardize classification across research pipelines
• Join with other datasets for consistent segmentation

Because classifications are stored and served in a consistent format, this dataset can be used as a foundational layer across multiple workflows.

Endpoint
GET /v1/ticker-classification

Base URL

Authentication

All requests require an API key.

Pass your key either:

  • As a query parameter

  • Or via header

Sample Request

Python

import requests

url = "https://api.alphanume.com/v1/ticker-classification"

params = {
    "api_key": "alp_abc123",
    "sector": "technology"
}

r = requests.get(url, params=params)
print(r.json())

cURL

Request Parameters

api_key (required)

Your Alphanume API key.

ticker (optional)

Filter results by a specific ticker.

Example:

?ticker=AAPL

sector (optional)

Filter results by sector.

Must be one of the accepted sector keywords (lowercase, underscore-separated).

Example:

?sector=technology

industry (optional)

Filter results by industry.

Must be one of the accepted industry keywords.

Example:

?industry=semiconductors
Available Sector Values

The following sector values are accepted for the sector parameter.

All values must be lowercase and underscore-separated.

Sector Keyword

Description

communications_media

Media, telecom, and communication platforms

consumer_cyclical

Discretionary and demand-sensitive consumer activity

energy_resources

Energy production and resource extraction

essential_goods

Consumer staples and essential products

finance

Banking, insurance, and financial services

healthcare

Healthcare providers, services, and products

industrial_transport

Industrials, manufacturing, and transportation

raw_materials

Basic materials and commodity inputs

real_assets

Real estate and asset-backed exposures

technology

Software, hardware, and semiconductor companies

utilities_infrastructure

Utilities and infrastructure-related assets

Available Industry Values

The following industry values are accepted for the industry parameter.

All values must be lowercase and underscore-separated.

Industry Keyword

Description

automotive

Automobiles and components

banking

Banking institutions

basic_materials

Raw materials and commodity inputs

business_services

Commercial and professional services

consumer_services

Consumer-facing services

durables_apparel

Consumer durables and apparel

energy_production

Oil, gas, and energy generation

financial_services

Financial service providers

food_beverage

Food, beverage, and related production

hardware_devices

Technology hardware and equipment

healthcare_services

Healthcare equipment and services

household_products

Household and personal care products

industrial_equipment

Capital goods and industrial machinery

insurance

Insurance companies

media_content

Media and entertainment content

pharma_biotech

Pharmaceuticals and biotechnology

real_estate_development

Real estate management and development

reits

Real estate investment trusts

retail_cyclical

Discretionary retail and distribution

retail_staples

Staples retail and distribution

semiconductors

Semiconductor manufacturing and equipment

software

Software and related services

telecom

Telecommunication services

transport_logistics

Transportation and logistics

utilities

Utility providers

Parameter Behavior

• All parameters are optional
• If no parameters are provided, the full dataset is returned (subject to tier limits)
• Parameters can be combined

Examples:

?ticker=AAPL
?sector=finance
?industry=software
?sector=finance&industry=banking
?ticker=JPM&sector=finance

Invalid sector or industry values will return a 400 error.

Response Format

Responses are returned in JSON format.

Example:

{
  "count": 3,
  "data": [
    {
      "ticker": "AAPL",
      "alphanume_sector": "technology",
      "alphanume_industry": "hardware_devices"
    },
    {
      "ticker": "MSFT",
      "alphanume_sector": "technology",
      "alphanume_industry": "software"
    }
  ]
}
Response Fields

Field

Type

Description

ticker

string

Equity ticker symbol

alphanume_sector

string

Alphanume-defined sector classification

alphanume_industry

string

Alphanume-defined industry classification

Classification System

The classification system uses:

• Lowercase formatting
• Underscore-separated values
• Stable internal labels
• Alphanume-defined sector and industry groupings

These values are designed to be:

• URL-safe
• Consistent across endpoints
• Easy to integrate into systematic workflows

Notes on Data Behavior

• Classifications are deterministic and consistent
• Values are not dynamically inferred at query time
• Results are ordered by ticker (ascending)
• No date dimension is applied
• The dataset represents the current mapping of tickers to classifications

Typical Use Cases

  • Building sector-neutral equity strategies

  • Filtering universes by economic exposure

  • Grouping tickers for factor modeling

  • Joining classification data with signals and returns

  • Creating sector-based dashboards and analytics

  • Standardizing classification across research pipelines

Stay in the loop

Be the first to hear about new datasets, coverage expansions, and platform updates.