Every API, one clean contract.
134 APIs · all speak the same { ok, data, meta, error }envelope. Search, filter, and open one to see endpoints, params & live examples.
Popular
Reputation & Reviews
12 APIsE-commerce & Marketplaces
24 APIsReal Estate
7 APIsJobs & Hiring
10 APIsTravel & Lodging
4 APIsSearch & SEO
4 APIsFinance & Data
5 APIsMedia, Film & Knowledge
17 APIsUtilities & AI
19 APIsClassifieds & Second-hand
4 APIsDeveloper Tools
18 APIsIMDb API scraper
livepost/imdb/v1/search1 creditSearch IMDb for movies, TV shows and people by name. Uses IMDb's own type-ahead, so one query returns titles AND people mixed, each with its IMDb id (tt…/nm…), a subtitle, poster image, popularity rank and (for titles) type and year. Use the returned id with the `title`, `person` or `episodes` actions.
{
"query": "the matrix"
}Try in playground →post/imdb/v1/title1 creditFull IMDb title card for one movie or TV show by its tt… id: IMDb user rating and vote count, year(s), runtime, genres, certificate, plot, countries, languages, directors, writers, top cast with character names, poster and popularity rank. For series it also returns the total episode count.
{
"imdb_id": "tt0133093"
}Try in playground →post/imdb/v1/person1 creditFull IMDb name card for one person by their nm… id: biography, birth/death dates, birthplace, professions, IMDb popularity rank, their best-known titles and a paginated filmography (each credit with the title, year, IMDb rating, the job and — for acting credits — the character played).
{
"imdb_id": "nm0000158"
}Try in playground →post/imdb/v1/episodes1 creditEpisode list for a TV series by its tt… id, with each episode's IMDb rating, vote count, air date, season/episode number and plot. Page one season at a time with `season`; meta lists every available season number and the total episode count.
{
"imdb_id": "tt0903747",
"season": 1
}Try in playground →post/imdb/v1/charts1 creditAn IMDb chart: the Top 250 movies, Top 250 TV, Bottom 100, or a Most-Popular / Top-Rated meter board. Returns ranked titles with their IMDb chart rating, vote count, year, type and poster.
{
"chart": "top_250",
"limit": 10
}Try in playground →post/imdb/v1/reviews1 creditUser reviews for a movie or TV show by its tt… id — the full IMDb review text plus the reviewer's star rating, headline, date, spoiler flag and helpful up/down votes. Cursor-paginated: pass the returned `next_cursor` back as `cursor` to walk through every review (titles can have thousands). meta.total reports the full review count.
{
"imdb_id": "tt0133093",
"limit": 5
}Try in playground →post/imdb/v1/videos1 creditTrailers and video clips for a movie or TV show by its tt… id, each with a playable MP4 URL (multiple qualities), title, type (Trailer/Clip/Featurette), runtime, description and thumbnail. Note: playback URLs are IMDb-signed and time-limited.
{
"imdb_id": "tt0133093",
"limit": 5
}Try in playground →post/imdb/v1/photos1 creditImage gallery for a movie or TV show by its tt… id — posters, stills and event photos with full-resolution URLs, dimensions and captions. Cursor-paginated: pass the returned `next_cursor` back as `cursor`. meta.total reports the gallery size.
{
"imdb_id": "tt0133093",
"limit": 5
}Try in playground →post/imdb/v1/awards1 creditAwards and nominations for a movie or TV show by its tt… id — Oscars, Golden Globes, BAFTAs, Emmys and more, each with the event, year, category, win/nomination flag and the people nominated. Cursor-paginated; meta.total reports the full count.
{
"imdb_id": "tt0133093",
"limit": 5
}Try in playground →post/imdb/v1/extras1 creditExtra IMDb detail for a movie or TV show by its tt… id in one call: trivia, plot keywords, goofs, memorable quotes, alternate titles (AKAs), country release dates, taglines and the parental guide (Sex/Nudity, Violence, Profanity, etc. with severity and example items). Each section is capped by `limit`; section totals are reported.
{
"imdb_id": "tt0133093",
"limit": 5
}Try in playground →post/imdb/v1/credits1 creditFull cast & crew for a movie or TV show by its tt… id, grouped by department (director, writer, cast, producer, cinematographer, editor, composer, …) — beyond the top-20 cast in `title`. Omit `category` for every department (first N each); pass one `category` to page that department fully with `cursor`.
{
"imdb_id": "tt0133093"
}Try in playground →post/imdb/v1/person_extras1 creditExtra IMDb detail for a person by their nm… id: their photo gallery (full-res URLs + captions), awards and nominations (with the titles they were for), height and alternate names. Complements `person` (bio + filmography).
{
"imdb_id": "nm0634240",
"limit": 5
}Try in playground →post/imdb/v1/whats_new1 creditIMDb's 'what's new' lists: upcoming movies (coming_soon_movies) or TV (coming_soon_tv) with release dates, the weekend box-office top 10 (box_office) with gross earnings, or the currently trending titles (trending). One friendly `list` value picks the board; coming-soon lists are cursor-paginated and region-aware.
{
"list": "box_office"
}Try in playground →
Social Media
10 APIs