🔗 REST API - HistoricalMetadata

List of symbols for the exchange

Results are paginated. Use limit and page to control page size and offset (default limit: 100, max: 10000, default page: 1).

GET
/v1/symbols/{exchange_id}
Authorization<token>

API Key is required to access the endpoints

In: header

Path Parameters

exchange_id*string

The ID of the exchange (from the Metadata -> Exchanges)

Query Parameters

filter_symbol_id?string

Comma or semicolon delimited symbol identifiers used to filter response (optional, eg. TSLA or TSLA,NVDA)

limit?integer

Maximum number of symbols to return (1-10000, default 100)

Default100
Formatint32
page?integer

Page number (1-based, default 1)

Default1
Formatint32

Response Body

curl -X GET "https://api-historical.stock.finfeedapi.com/v1/symbols/string"
[
  {
    "symbol_id": "TSLA",
    "exchange_id": "IEXG",
    "security_category": "Common Stock",
    "name": "TESLA INC",
    "date": "2026-06-23"
  },
  {
    "symbol_id": "NVDA",
    "exchange_id": "IEXG",
    "security_category": "Common Stock",
    "name": "NVIDIA CORP",
    "date": "2026-06-23"
  }
]
Service StatusGitHub SDK