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 Tickers

GET/v1/transcripts/tickers
View as markdown

List every ticker that has at least one earnings call transcript in Vantafin. Results are sorted alphabetically and paginated with cursor and limit (default 100, max 1000). Use search to narrow by ticker substring. Pair with List Transcripts to discover coverage before fetching call metadata or full text for a ticker.

Use cases

  • Discovering which companies have transcript coverage
  • Building transcript-enabled universes or screeners
  • Sync jobs that walk every covered ticker
  • Coverage audits before launching transcript features

Input parameters

(*) Required

ParameterTypeDescription
searchstringFilter by ticker substring.
cursorstringReturn tickers strictly after this ticker (pagination).
limitintegerMax results, 1-1000 (default 100).

Output parameters

FieldTypeDescription
resultsarrayTickers with transcript coverage on this page.
results[]stringTicker.
countintegerNumber of tickers on this page.
next_cursorstringPass as cursor on the next request; null when there is no further page.
from vantafin import RESTClient

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

result = client.list_transcript_tickers(limit=100)

print(result)
{
  "results": [
    "AAPL",
    "ABBV",
    "ABNB",
    "ADBE",
    "ADI"
  ],
  "count": 5,
  "next_cursor": "ADI"
}
Ticker News
List Transcripts