OMDb
Movie and series metadata by title or IMDb ID.
The Open Movie Database returns plot, cast, ratings, runtime and poster art for films and shows. Query by title or tt-prefixed IMDb ID. Free tier with a personal key from omdbapi.com; the public patron key `trilogy` works for prototyping.
GET https://www.omdbapi.com/?t=Inception&apikey=trilogy
{
"Title": "Inception",
"Year": "2010",
"imdbID": "tt1375666",
"Type": "movie",
"Response": "True"
}curl "https://www.omdbapi.com/?t=Inception&apikey=trilogy"const res = await fetch("https://www.omdbapi.com/?t=Inception&apikey=trilogy");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://www.omdbapi.com/?t=Inception&apikey=trilogy")
print(res.json())/?t=Inception&apikey=trilogyPROBEDLookup by title — plot, cast, ratings and poster.
/?i=tt1375666&apikey=trilogyLookup by IMDb ID (tt-prefixed).
/?s=batman&type=movie&apikey=trilogySearch movies and series by keyword.
/?t=Inception&plot=full&apikey=trilogyFull plot text instead of the short summary.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
OMDb: common questions
Is OMDb free to use?
Yes — OMDb is a free media API. Free tier: 1,000 req/day free key. Whether the free tier allows commercial use is unclear — check the provider docs.
Does OMDb need an API key?
Yes — OMDb needs a free API key, which you pass on each request. Rate limits: Patron key `trilogy` is shared — cache responses.
Can I call OMDb from the browser?
Yes — OMDb 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 OMDb up right now?
As of our last scheduled check, OMDb is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.