HomeChatAlertsCalendarScreenerWatchlistsFiles
DocsSettings
Sign upJoinLog in

Docs

Overview

IntroductionMCP ServerOpenAPI Spec

REST API

GETList TickersGETList TranscriptsGETGet Transcript

WebSocket

Live Quotes (Per Second)Live Quotes (Per Minute)Live NewsLive SEC FilingsTrading Halts

Get Transcript

GET/v1/transcripts/{ticker}/{transcript_id}
View as markdown

Retrieve the full text of an earnings conference call transcript for a ticker and transcript id (from List Transcripts). The document includes metadata (period, fiscal year, date) and the complete call content suitable for search, summarization or display in a reader UI.

Use cases

  • Reading management Q&A and prepared remarks
  • Quote extraction and sentiment analysis on earnings calls
  • Research workflows that cite what was said on the call
  • Comparing guidance across quarters from primary sources

Input parameters

(*) Required

ParameterTypeDescription
ticker(*)stringTicker.
transcript_id(*)stringTranscript id from the list endpoint.

Output parameters

FieldTypeDescription
idstringTranscript id.
tickerstringTicker.
quarterstringFiscal quarter label.
yearintegerFiscal year.
datestringCall date (YYYY-MM-DD).
titlestringTranscript title.
bodystringFull transcript text.
from vantafin import RESTClient

client = RESTClient("vf-live-your_api_key")

result = client.get_transcript("AAPL", "2024-Q1")

print(result)
{
  "id": "AAPL_2026_Q2",
  "ticker": "AAPL",
  "company": "Apple Inc.",
  "period": "Q2",
  "fiscal_year": 2026,
  "date": "2026-04-30",
  "content": "Suhasini Chandramouli: Good afternoon, and welcome to the Apple Q2 Fiscal Year 2026 Earnings Conference Call. My name is Suhasini Chandramouli, Director of Investor Relations. Today's call is being recorded. Speaking fir..."
}
List Transcripts
Live Quotes (Per Second)