Get Issuer with Listings
GET
/api/v1/issuers/{id}
Get a de-duplicated issuer (one record per real company) with every listing we hold for it — symbols, venues (MIC + display name), ISINs. Takes the 32-char hex issuer id, as returned on earnings items in `issuer_id`/`issuer_ref`. Use this to resolve colliding bare symbols once: query the events, read `issuer_id` off any item, then fetch the issuer here.
Parameters
| Name | In | Type | Description |
|---|---|---|---|
id required |
path | string | issuer id (32-char hex) |
Example request
curl "https://earningscalls.dev/api/v1/issuers/48291" \ -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.