Endpoints
Symbols
List every company tracked by EarningsCall.
GEThttps://alpha.earningscall.dev/symbols
Returns the full list of companies (exchange, name, symbol). Filter by exchange or a free-text search to narrow the result. Demo accounts receive a small curated list.
Parameters#
Your API key.
Filter to a single exchange, e.g.
NASDAQ. Case-insensitive.Substring match against symbol or company name. Case-insensitive.
Examples#
Fetch every tracked company#
curl 'https://alpha.earningscall.dev/symbols?apikey=demo'Response
[
{
"exchange": "NASDAQ",
"name": "Apple Inc.",
"symbol": "AAPL"
},
{
"exchange": "NASDAQ",
"name": "Microsoft Corporation",
"symbol": "MSFT"
},
{
"exchange": "NASDAQ",
"name": "Alphabet Inc.",
"symbol": "GOOGL"
},
{
"exchange": "NYSE",
"name": "Walmart Inc.",
"symbol": "WMT"
}
]Search by name or symbol#
search is a case-insensitive substring match against both the ticker symbol and the company name.
curl 'https://alpha.earningscall.dev/symbols?apikey=demo&search=micro'Response
[
{
"exchange": "NASDAQ",
"name": "Microsoft Corporation",
"symbol": "MSFT"
}
]Error responses#
See the Errors page for the full error format. This endpoint can return:
401
invalid_api_key — Auth failure.429rate_limit_exceeded — Plan rate limit exceeded.500internal_error — Symbols list could not be loaded.