List Tickers
GET/v1/transcripts/tickers
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
| Parameter | Type | Description |
|---|---|---|
| search | string | Filter by ticker substring. |
| cursor | string | Return tickers strictly after this ticker (pagination). |
| limit | integer | Max results, 1-1000 (default 100). |
Output parameters
| Field | Type | Description |
|---|---|---|
| results | array | Tickers with transcript coverage on this page. |
| results[] | string | Ticker. |
| count | integer | Number of tickers on this page. |
| next_cursor | string | Pass 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"
}