TVDB
TV series, episode and artwork metadata.
TheTVDB v4 API covers series search, seasons, episodes, people and artwork references. Free personal API key at thetvdb.com. Bearer token auth; login endpoint exchanges key + pin for a short-lived JWT.
We probe without your API key. A 401/403 auth wall means the server is up — not a full health pass.
GET https://api4.thetvdb.com/v4/languages
{
"data": [
{
"id": "eng",
"name": "English",
"nativeName": "English"
}
],
"status": "success"
}curl "https://api4.thetvdb.com/v4/languages"const res = await fetch("https://api4.thetvdb.com/v4/languages");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api4.thetvdb.com/v4/languages")
print(res.json())/languagesPROBEDSupported language codes for localized metadata.
/series/39340Series record by TVDB ID (example: Breaking Bad).
/search?query=breaking%20badFull-text series search.
/series/39340/episodes/defaultDefault-ordered episode list for a series.
We probe without your API key. A 401/403 auth wall means the server is up — not a full health pass. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
TVDB: common questions
Is TVDB free to use?
Yes — TVDB is a free media API. Free tier: Free personal API key. Whether the free tier allows commercial use is unclear — check the provider docs.
Does TVDB need an API key?
Yes — TVDB needs a free API key, which you pass on each request. Rate limits: Unpublished.
Can I call TVDB from the browser?
Yes — TVDB returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is TVDB up right now?
As of our last scheduled check, TVDB is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.