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

List Transcripts

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

List available earnings call transcripts for a ticker. Each entry includes transcript id, fiscal period, fiscal year, call date and company name - use the transcript id with Get Transcript to download the full text. Paginate with page and limit (default 20, max 100).

Use cases

  • Earnings call libraries on company pages
  • Finding the latest or prior-quarter transcript id
  • Building a timeline of management commentary
  • Selecting calls for NLP or sentiment analysis

Input parameters

(*) Required

ParameterTypeDescription
ticker(*)stringTicker.
pageintegerZero-based page (default 0).
limitintegerPage size, 1-100 (default 20).

Output parameters

FieldTypeDescription
resultsarrayAvailable transcripts for this page.
results[].idstringTranscript id for the get endpoint.
results[].tickerstringTicker.
results[].quarterstringFiscal quarter label (e.g. Q4).
results[].yearintegerFiscal year.
results[].datestringCall date (YYYY-MM-DD).
results[].titlestringTranscript title.
countintegerNumber of rows on this page.
totalintegerTotal transcripts available.
pageintegerZero-based page index.
from vantafin import RESTClient

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

result = client.list_transcripts("AAPL")

print(result)
{
  "transcripts": [
    {
      "id": "AAPL_2026_Q2",
      "period": "Q2",
      "fiscal_year": 2026,
      "date": "2026-04-30",
      "company": "Apple Inc."
    },
    {
      "id": "AAPL_2026_Q1",
      "period": "Q1",
      "fiscal_year": 2026,
      "date": "2026-01-29",
      "company": "Apple Inc."
    }
  ],
  "total": 83
}
List Tickers
Get Transcript