TMDb
Community movie and TV metadata at scale.
The Movie Database powers posters, cast, ratings, discover feeds and image CDN URLs for films and shows. Free API key after signup at themoviedb.org. Attribution required; commercial use needs separate approval from TMDb.
We probe without your API key. A 401/403 auth wall means the server is up — not a full health pass.
GET https://api.themoviedb.org/3/movie/550?api_key=YOUR_API_KEY
{
"id": 550,
"title": "Fight Club",
"release_date": "1999-10-15",
"overview": "A ticking-time-bomb insomniac and a slippery soap salesman channel primal male aggression into a shocking new form of therapy."
}curl "https://api.themoviedb.org/3/movie/550?api_key=YOUR_API_KEY"const res = await fetch("https://api.themoviedb.org/3/movie/550?api_key=YOUR_API_KEY");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.themoviedb.org/3/movie/550?api_key=YOUR_API_KEY")
print(res.json())/movie/550?api_key=YOUR_API_KEYPROBEDFull movie record — cast, crew, images and metadata.
/movie/popular?api_key=YOUR_API_KEYPaginated list of popular movies right now.
/tv/1399?api_key=YOUR_API_KEYTV series details by TMDb ID (example: Game of Thrones).
/search/multi?query=inception&api_key=YOUR_API_KEYSearch movies, TV and people in one call.
/trending/movie/day?api_key=YOUR_API_KEYTrending movies in the daily window.
/movie/550/watch/providers?api_key=YOUR_API_KEYStreaming availability by country for a movie.
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.
TMDb: common questions
Is TMDb free to use?
Yes — TMDb is a free media API. Free tier: Free personal API key. The free tier is for non-commercial use.
Does TMDb need an API key?
Yes — TMDb needs a free API key, which you pass on each request. Rate limits: ~50 req/sec documented ceiling.
Can I call TMDb from the browser?
Yes — TMDb 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 TMDb up right now?
As of our last scheduled check, TMDb is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.