TranscriptFetch Python SDK
Official, typed Python client for the TranscriptFetch API: fetch transcripts as clean, structured data, plus YouTube channel, playlist and search listings. Sync + async, fully type-hinted.
Transcripts come from YouTube, TikTok, Instagram, podcasts, or a direct media file URL (mp3/mp4/wav and friends). A podcast link (a Spotify or Apple Podcasts episode URL, or an RSS feed URL) is resolved to that episode's audio automatically. Channel, playlist and search are YouTube-only, since no other supported platform has those concepts.
pip install transcriptfetch-sdk
Quickstart
from transcriptfetch import TranscriptFetch
# api_key falls back to the TRANSCRIPTFETCH_API_KEY env var
tf = TranscriptFetch(api_key="tf_live_...")
t = tf.transcripts.video("https://youtu.be/aircAruvnKk") # or a TikTok / Instagram / podcast / file URL
print(t.title)
print(t.text)
for seg in t.segments:
print(f"[{seg.start:.1f}] {seg.text}")
print("credits left:", t.usage.balance)
Get an API key (100 free credits) at https://transcriptfetch.com/app. One credit per successful fetch; failed/blocked/no-transcript requests are free.
Endpoints
tf.transcripts.video(video) # single transcript (text + segments)
tf.transcripts.batch(video_ids, mode=) # up to 50 transcripts in one call
tf.transcripts.channel(channel, limit=, cursor=) # a YouTube channel's videos (metadata)
tf.transcripts.playlist(playlist, limit=, cursor=) # a YouTube playlist's videos
tf.transcripts.search(query, limit=, cursor=) # search YouTube
tf.transcripts.job(job_id) # poll an audio-transcription job (free)
tf.me() # validate the key + read the balance (free)
tf.health() # unauthenticated liveness probe
video and batch take a YouTube, TikTok or Instagram URL, a podcast link (Spotify or Apple Podcasts episode, or an RSS feed), a direct media file URL, or a bare YouTube ID. channel/playlist take a URL, an @handle/PL… ID, or a raw ID. IDs and URLs are normalized automatically.
Sources without captions (including every podcast)
When a source has no captions, the API transcribes its audio and answers with a job instead of a transcript. That comes back as a Transcript with status == "processing" and a job_id; poll it for free until it completes. Podcast audio never has captions, so a podcast always takes this path:
import time
t = tf.transcripts.video("https://www.tiktok.com/@user/video/7137723462233555205")
while t.status == "processing":
time.sleep(3)
t = tf.transcripts.job(t.job_id)
print(t.text)
A transcript resolved from a podcast link also carries a podcast block, so the show and episode survive the round trip (otherwise the result would be titled after the mp3 filename):
t = tf.transcripts.video("https://podcasts.apple.com/us/podcast/…")
print(t.platform) # "podcast"
print(t.podcast.show, "-", t.podcast.episode)
Podcast transcriptions include best-effort speaker diarization: each segment may carry a speaker integer (0, 1, …) identifying who is talking. The ids are hints from voice separation, not named identification, and non-podcast sources never carry them.
Batch works the same way by default (mode="auto"): entries with no caption track are transcribed from audio, come back with outcome == "processing" and a job_id, cost nothing on that call, and are charged on delivery at the audio rate. Re-send the same batch once the jobs have had time to finish and the text comes back normally — or poll each job_id with tf.transcripts.job(). Pass mode="captions" to read existing caption tracks only, in which case a captionless video fails as outcome == "error" with error.code == "no_captions" (and error.retry_with naming the audio mode):
res = tf.transcripts.batch(ids) # captionless entries -> "processing" + job_id
pending = [r.job_id for r in res.results if r.outcome == "processing"]
res = tf.transcripts.batch(ids, mode="captions") # captions only, no audio fallback
Pagination
List endpoints are cursor-paginated. Iterate every result without managing cursors:
for video in tf.transcripts.iter_channel("@lexfridman", limit=10):
print(video.video_id, video.title)
Or page manually via page.next_cursor and the cursor= argument.
Async
import asyncio
from transcriptfetch import AsyncTranscriptFetch
async def main():
async with AsyncTranscriptFetch() as tf:
t = await tf.transcripts.video("aircAruvnKk")
print(t.text)
async for v in tf.transcripts.iter_search("how transformers work", limit=10):
print(v.title)
asyncio.run(main())
Errors
All errors subclass TranscriptFetchError. API errors carry .status, .code, .number (the thousands digit is the family; 5xxx means retry), .message, .docs, .retry_with (the request change that would succeed, when there is one), .details, .request_id, and a .retryable property:
from transcriptfetch import (
AuthenticationError, InsufficientCreditsError, InvalidRequestError,
RateLimitError, IdempotencyConflictError, UpstreamUnavailableError,
InternalServerError, APIError, APIConnectionError, APITimeoutError,
)
try:
tf.transcripts.video("bad")
except InsufficientCreditsError:
... # 402: top up at /pricing
except RateLimitError as e:
print(e.retry_after) # 429
except APIError as e:
print(e.status, e.code, e.request_id)
Reliability
- Automatic retries on
429(honoringRetry-After) and5xx, with exponential backoff + jitter (max_retries=2by default). - Idempotency: every write auto-sends an
Idempotency-Keyso a retried request is never double-charged. Override per call withidempotency_key=.... - Configurable:
TranscriptFetch(api_key=..., base_url=..., timeout=30, max_retries=2). Both clients are context managers and accept a customhttp_client=(httpx).
Development
pip install -e ".[dev]"
ruff check . && mypy src && pytest
Tests are fully mocked (no network). MIT licensed.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file transcriptfetch_sdk-2.0.0.tar.gz.
File metadata
- Download URL: transcriptfetch_sdk-2.0.0.tar.gz
- Upload date:
- Size: 21.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b15c67be92ad711ebf878b6cdf0cc75730dd871d7d1854ad6fc0ef1c3116f958
|
|
| MD5 |
138b45940e026119b213f469cf08b060
|
|
| BLAKE2b-256 |
ae18a9e2def1261dc13dbd48c831a0adfce538141c50451baee78a1c9fda2585
|
Provenance
The following attestation bundles were made for transcriptfetch_sdk-2.0.0.tar.gz:
Publisher:
release.yml on TranscriptFetch/python-sdk
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
transcriptfetch_sdk-2.0.0.tar.gz -
Subject digest:
b15c67be92ad711ebf878b6cdf0cc75730dd871d7d1854ad6fc0ef1c3116f958 - Sigstore transparency entry: 2700944919
- Sigstore integration time:
-
Permalink:
TranscriptFetch/python-sdk@d7bd101f42e10d77e727ea51fc98e0fcaaf2db54 -
Branch / Tag:
refs/tags/v2.0.0 - Owner: https://github.com/TranscriptFetch
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7bd101f42e10d77e727ea51fc98e0fcaaf2db54 -
Trigger Event:
push
-
Statement type:
File details
Details for the file transcriptfetch_sdk-2.0.0-py3-none-any.whl.
File metadata
- Download URL: transcriptfetch_sdk-2.0.0-py3-none-any.whl
- Upload date:
- Size: 19.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
30ac26283b41ab80d4292b4e41d8bb995bca5dea364973f50ad173cca3521ca1
|
|
| MD5 |
a420af426e08311f369c4ea7ab5d48c2
|
|
| BLAKE2b-256 |
b47e48f92303790c0127642c1e48de538787ef9b26b8ac6442d3ab494b6f711a
|
Provenance
The following attestation bundles were made for transcriptfetch_sdk-2.0.0-py3-none-any.whl:
Publisher:
release.yml on TranscriptFetch/python-sdk
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
transcriptfetch_sdk-2.0.0-py3-none-any.whl -
Subject digest:
30ac26283b41ab80d4292b4e41d8bb995bca5dea364973f50ad173cca3521ca1 - Sigstore transparency entry: 2700944974
- Sigstore integration time:
-
Permalink:
TranscriptFetch/python-sdk@d7bd101f42e10d77e727ea51fc98e0fcaaf2db54 -
Branch / Tag:
refs/tags/v2.0.0 - Owner: https://github.com/TranscriptFetch
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7bd101f42e10d77e727ea51fc98e0fcaaf2db54 -
Trigger Event:
push
-
Statement type: