v3

latestOpenAPI 3.1.02026-07-26490368.4 KB
IR Events

Get the transcript for an earnings event

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.

get/v1/company/ir-events/transcript/{eventKey}

Path parameters

eventKeystring required

Event key (q{quarter}-{year})

Example:q3-2026

Event key (q{quarter}-{year})

Query parameters

apiKeystring

API Key (alternatively send via X-Api-Key header)

API Key (alternatively send via X-Api-Key header)

tickerstring

Company ticker, use with mic or alone for US tickers

Example:MSFT

Company ticker, use with mic or alone for US tickers

micCodestring

Company MIC, use with ticker

Example:XNAS

Company MIC, use with ticker

exchangestring

Company exchange code, use with ticker

Example:NASDAQ

Company exchange code, use with ticker

companyKeystring

Company key (alternative to ticker/micCode/exchange)

Example:NASDAQ_MSFT

Company key (alternative to ticker/micCode/exchange)

cusipstring

Requires CUSIP/ISIN license. An alternative to ticker/micCode/exchange. Company CUSIP

Example:594918104

Requires CUSIP/ISIN license. An alternative to ticker/micCode/exchange. Company CUSIP

isinstring

Requires CUSIP/ISIN license. An alternative to ticker/micCode/exchange. Company ISIN

Example:US5949181045

Requires CUSIP/ISIN license. An alternative to ticker/micCode/exchange. Company ISIN

figistring

FIGI (Financial Instrument Global Identifier). An alternative to ticker/micCode/exchange.

Example:BBG000BPH459

FIGI (Financial Instrument Global Identifier). An alternative to ticker/micCode/exchange.

cikstring

Company CIK (SEC Central Index Key). An alternative to ticker/micCode/exchange.

Example:789019

Company CIK (SEC Central Index Key). An alternative to ticker/micCode/exchange.

fsclstring

Fiscal.ai stable company identifier (the companyFiscalIdentifier field). An alternative to ticker/micCode/exchange.

Example:FSCLC6CGT4DXS597

Fiscal.ai stable company identifier (the companyFiscalIdentifier field). An alternative to ticker/micCode/exchange.

Response

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

Example response

{
  "event": {
    "eventKey": "q3-2026",
    "fiscalYear": 2026,
    "fiscalQuarter": 3,
    "eventDate": "2026-04-29"
  },
  "speakers": [
    {
      "speaker": 3,
      "label": "Satya Nadella",
      "name": "Satya Nadella",
      "role": "Chairman and Chief Executive Officer",
      "company": "Microsoft Corporation",
      "speakerType": "company_management"
    }
  ],
  "transcript": {
    "text": "[1.70s] Operator: Greetings and welcome to the Microsoft Fiscal Year 2026 Third Quarter Earnings Conference Call. …",
    "paragraphs": [
      {
        "id": "p-0",
        "text": "Greetings and welcome to the Microsoft Fiscal Year 2026 Third Quarter Earnings Conference Call. At this time, all participants are in a listen-only mode.",
        "start": 1.702,
        "end": 32.116,
        "speaker": 1,
        "sentences": [
          {
            "id": "s-0",
            "text": "Greetings and welcome to the Microsoft Fiscal Year 2026 Third Quarter Earnings Conference Call.",
            "start": 1.702,
            "end": 7.982,
            "speaker": 1
          }
        ]
      }
    ]
  },
  "sections": [
    {
      "sectionType": "qa",
      "start": 2143.8,
      "end": 3723.93
    }
  ],
  "stats": {
    "speakerCount": 11,
    "paragraphCount": 100,
    "sentenceCount": 516
  }
}