---
title: "Get the transcript for an earnings event"
method: GET
path: "/v1/company/ir-events/transcript/{eventKey}"
tags: ["IR Events"]
---

# Get the transcript for an earnings event

`GET /v1/company/ir-events/transcript/{eventKey}`

Returns the structured transcript for an earnings event: event fiscal identity, speaker mapping (label, name, role, company, speaker type), transcript text, paragraphs, sentence timestamps, Q&A section timing, and summary counts. `eventKey` is the q{quarter}-{year} key from the /v1/company/ir-events list.

## Path parameters

- `eventKey` string, required — Event key (q{quarter}-{year})

## Query parameters

- `apiKey` string — API Key (alternatively send via X-Api-Key header)
- `ticker` string — Company ticker, use with mic or alone for US tickers
- `micCode` string — Company MIC, use with ticker
- `exchange` string — Company exchange code, use with ticker
- `companyKey` string — Company key (alternative to ticker/micCode/exchange)
- `cusip` string — Requires CUSIP/ISIN license. An alternative to ticker/micCode/exchange. Company CUSIP
- `isin` string — Requires CUSIP/ISIN license. An alternative to ticker/micCode/exchange. Company ISIN
- `figi` string — FIGI (Financial Instrument Global Identifier). An alternative to ticker/micCode/exchange.
- `cik` string — Company CIK (SEC Central Index Key). An alternative to ticker/micCode/exchange.
- `fscl` string — Fiscal.ai stable company identifier (the companyFiscalIdentifier field). An alternative to ticker/micCode/exchange.

## Response `200`

The event transcript, including speakers, paragraphs, sentence timings, and sections.

- object
  - `event` object, required
    - `eventKey` string, required — Event key (q{quarter}-{year}; annual events use q4).
    - `fiscalYear` integer
    - `fiscalQuarter` integer
    - `eventDate` string — The call date when known.
  - `speakers` object[], required
    - `speaker` integer — Speaker number referenced by paragraphs and sentences.
    - `label` string — The label used in the transcript text.
    - `name` string
    - `role` string
    - `company` string
    - `speakerType` string — operator | company_management | analyst | other | unknown
  - `transcript` object, required
    - `text` string, required — The full transcript text with [seconds] timestamps and speaker labels.
    - `paragraphs` object[], required
      - `id` string
      - `text` string, required
      - `start` number — Start time in seconds from the start of the call.
      - `end` number — End time in seconds from the start of the call.
      - `speaker` integer — Speaker number, resolved via the speakers list.
      - `sentences` object[], required
        - `id` string
        - `text` string, required
        - `start` number — Start time in seconds from the start of the call.
        - `end` number — End time in seconds from the start of the call.
        - `speaker` integer — Speaker number, resolved via the speakers list.
  - `sections` object[], required
    - `sectionType` string, required — Call section type. Currently 'qa' (the Q&A portion).
    - `start` number — Section start in seconds.
    - `end` number — Section end in seconds.
  - `stats` object, required
    - `speakerCount` integer, required
    - `paragraphCount` integer, required
    - `sentenceCount` integer, required

## Other responses

- `400` — Bad Request
- `403` — Forbidden
- `404` — Not Found

## Changes

- **2026-07-13** `79aaf5577c9b` — 2 breaking, 5 info
  - removed the required property `additionalProperties` from the response with the `200` status
  - removed the required property `type` from the response with the `200` status
  - added the required property `event` to the response with the `200` status
  - added the required property `sections` to the response with the `200` status
  - …3 more

[Change history](https://skmtc.dev/fiscal/apis/openapi/changes/v1/company/ir-events/transcript/:eventKey/get.md)

---

[API](https://skmtc.dev/fiscal/apis/openapi.md) · [All operations](https://skmtc.dev/fiscal/apis/openapi/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/fiscal/openapi/revisions/706968b7c65f/schema)
