🔗 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).
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)
Default
100Format
int32page?integer
Page number (1-based, default 1)
Default
1Format
int32Response 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"
}
]