Home/API Docs/Get Latest Call by Ticker

Get Latest Call by Ticker

GET /api/v1/companies/ticker/{ticker}/latest

Get the most recent earnings call for a specific stock ticker. Pass a venue-suffixed ticker (e.g. `ALV:US`) or use `mic`/`exchange`/`country` to disambiguate when the symbol is listed on multiple venues.

Parameters

NameInTypeDescription
exchange optional query string Filter by exchange name, exact (e.g. NASDAQ, NSEI). Use `mic` for the ISO-10383 form.
mic optional query string ISO 10383 Market Identifier Code (e.g. XNAS, XNSE) — disambiguates symbol collisions across venues.
country optional query string Filter by ISO-3166 alpha-2 country code (e.g. US, IN, CA)
ticker required path string Stock ticker symbol (e.g., AAPL, MSFT)

Example request

curl "https://earningsapi.io/api/v1/companies/ticker/AAPL/latest?exchange=value" \
  -H "X-API-Key: YOUR_API_KEY"

Authenticate with your API key in the X-API-Key header (or api_key query parameter). Get a key on the pricing page. Try any endpoint interactively in the Swagger console, and see the full OpenAPI spec.

← All API endpoints