Product
Jentic OSThe workplace. An in-house AI platform for every employeeJentic OneSafe access. Agents reach your systems without holding keysJentic AIRThe foundation. Gets your existing platforms ready for AI
Pricing
Developers

GET STARTED

API DirectoryBrowse 10,000+ APIs Ready For AI Agent IntegrationDocumentationGuides and API reference

TOOLS

API ScoringCheck your AI Readiness using our scorecardArazzo UIVisualize Arazzo Workflows As Interactive DocumentationArazzo EditorBuild And Edit Multi-Step API Workflows Visually

COMMUNITY

GitHubOpen source projects and examplesOpen StandardsBuilt on open specs. Never locked in.
Resources
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Try it now
Jentic OSJentic OneJentic AIR
Pricing
API DirectoryDocumentationAPI ScoringArazzo UIArazzo EditorGitHubOpen Standards
Resources
About UsCareersContact
Try it now
JenticJentic
Products
  • Jentic OS
  • Jentic One
  • Jentic AIR
For Developers
  • API Directory
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
  • Trust Centre
ISO/IEC 27001:2022 certification badge issued by Prescient SecurityISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic Technology Ltd. All rights reserved.
Switch to light modeSwitch to dark mode
APIs / Media / IMDb-API
IMDb-API logo

IMDb-API

Agent-ready OpenAPI document · curated by JenticMediaContent DeliveryapiKey29 EndpointsREST

Know of an official OpenAPI document? Contribute it →

For Agents

Search IMDb for titles, people, and companies, and pull ratings, full cast, episodes, reviews, and trailers from a single REST surface.

Use for: I want to search IMDb for movies matching a title query, Look up the full cast for a given IMDb ID, Get the ratings breakdown for a movie, List all episodes in season 4 of a series

Not supported: Does not handle streaming availability, ticket booking, or original IMDb account data - use for IMDb-sourced title, person, and company lookups only.

Jentic publishes the only available OpenAPI specification for IMDb-API, keeping it validated and agent-ready. IMDb-API is a third-party gateway that exposes movie, series, and cast information sourced from IMDb data. The API supports search by title, name, or company, plus deep lookups for full cast, ratings, user reviews, season episodes, awards, images, and trailers. The API key is supplied as a path parameter rather than a header, which is unusual but documented across every endpoint.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the IMDb-API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the IMDb-API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fimdb-api.com%2Fimdb-api" | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fimdb-api.com%2Fimdb-api" | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with IMDb-API.

Search IMDb by title, movie, series, name, or company name

Look up full title details by IMDb ID including plot, runtime, and language

Retrieve the full cast and crew for a title

Pull aggregated and per-source ratings for a title

List all episodes for a chosen season of a series

Fetch a person's biography, awards, and known-for credits

Surface trailers, posters, and image galleries for titles

Use Cases

Patterns agents use IMDb-API for, with concrete tasks.

★ Movie Discovery and Recommendation Apps

Side-project recommendation apps and watchlist tools need a reliable source of titles, ratings, and metadata. IMDb-API exposes the search and lookup surface that powers a 'find movies similar to X' flow: search by title, retrieve the IMDb ID, and pull ratings plus poster art for each result. The 29-endpoint surface covers most fan-app needs without scraping IMDb directly.

GET /SearchTitle/{apiKey}/{expression} for the user's query, then for each result call /Title/{apiKey}/{id} and /Ratings/{apiKey}/{id} to assemble the result card.

TV Series Episode Trackers

Series tracking apps need season-by-season episode lists with air dates and short synopses. /SeasonEpisodes returns the episode list per season for a given series ID, which a tracker can store locally and refresh weekly. Combined with /UserRatings the same view shows community scores per episode.

GET /SeasonEpisodes/{apiKey}/{id}/{seasonNumber} for each known season of a series and persist the episode list with air dates.

Cast and Crew Enrichment for Editorial

Editorial sites running interviews and reviews want a structured cast credit list per article subject. /FullCast returns the cast and crew for a title and /Name returns biographical detail per credit. Editors can render filmographies and 'related people' sections without manual research.

GET /FullCast/{apiKey}/{id}, then for each top-billed cast member call /Name/{apiKey}/{id} to enrich the article with biography snippets.

Agent-Driven Movie Q&A

An assistant that answers movie trivia questions can search IMDb-API by title, fetch the canonical record, and cite ratings and awards in its answer. Through Jentic the agent finds the right operation by intent and runs it without juggling 29 endpoint signatures or remembering the path-based API key pattern.

Search Jentic for 'look up a movie by title on IMDb', execute /SearchTitle followed by /Title and /Ratings, and cite the returned data in the answer.

Key Endpoints

29 endpoints — jentic publishes the only available openapi specification for imdb-api, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

GET

/SearchTitle/{apiKey}/{expression}

Search titles by free-text expression

GET

/Title/{apiKey}/{id}

Look up full title details

GET

/FullCast/{apiKey}/{id}

Retrieve full cast and crew

GET

/Ratings/{apiKey}/{id}

Retrieve aggregated ratings

GET

/SeasonEpisodes/{apiKey}/{id}/{seasonNumber}

List episodes in a season

GET

/Name/{apiKey}/{id}

Look up a person's details

GET

/SearchName/{apiKey}/{expression}

Search people by name

GET

/SearchTitle/{apiKey}/{expression}

Search titles by free-text expression

GET

/Title/{apiKey}/{id}

Look up full title details

GET

/FullCast/{apiKey}/{id}

Retrieve full cast and crew

GET

/Ratings/{apiKey}/{id}

Retrieve aggregated ratings

GET

/SeasonEpisodes/{apiKey}/{id}/{seasonNumber}

List episodes in a season

GET

/Name/{apiKey}/{id}

Look up a person's details

GET

/SearchName/{apiKey}/{expression}

Search people by name

Why Jentic?

What agents get from Jentic-routed access to this vendor.

Setup

Setup

Wiring IMDb-API by hand means placing the API key directly in the URL path segment for every request against imdb-api.com and building each title, name, and rating path yourself. Through Jentic you install once, import the IMDb-API from the API Directory, store the key once, and your agent calls it.

Permission scoping

Permission scoping

IMDb-API puts the title or person id in the URL path (/Title/{apiKey}/{id}, /Name/{apiKey}/{id}), so a rule can pin your agent to the read lookups it needs, such as title, full cast, and ratings. Because these are read-only lookups and you choose the allowed operations, the agent is limited to the queries you have named.

Credential management

Credential isolation

Your IMDb-API key is stored once, encrypted, by your own Jentic One instance and inserted into the path at execution time. It never enters the agent's prompt, logs, or context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent such as 'look up a movie by title on IMDb', and Jentic returns the matching operation with its parameter schema so the agent calls the right endpoint without building the path-based key pattern by hand.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

The Movie Database

→

TMDb is a community-maintained movie and TV database with a generous free tier and JSON API.

Choose TMDb when the agent needs a free tier, multi-language support, or community contributions rather than IMDb-sourced data.

Alternative

OMDb API

→

OMDb is a long-running IMDb-style lookup API focused on simple title lookups.

Choose OMDb when the agent only needs basic title lookups and not the full cast, awards, or per-source ratings.

Complementary

Giant Bomb

→

Giant Bomb covers video game titles and characters that often cross over with film and TV adaptations.

Choose Giant Bomb when the agent needs game-source-material information for adapted films and series.

FAQs

Specific to using IMDb-API through Jentic.

Why is there no official OpenAPI spec for IMDb-API?

IMDb-API.com is a third-party reseller of IMDb data and does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call IMDb-API via structured tooling. It is validated against the live API and kept up to date. Get started with Jentic One, the self-hosted execution layer.

What authentication does the IMDb-API use?

The API uses an API key passed as a path parameter on every endpoint, not a header. For example, /SearchTitle/{apiKey}/{expression}. Through Jentic the key is stored in the encrypted vault and inserted into the path at execute time.

Can I list all episodes for a series?

Yes. GET /SeasonEpisodes/{apiKey}/{id}/{seasonNumber} returns the episodes in a given season. Iterate through known season numbers to assemble a full episode list for a series.

Can I look up the full cast for a film?

Yes. GET /FullCast/{apiKey}/{id} returns the cast and crew for a title. For deeper biographical detail on a specific person, follow up with /Name/{apiKey}/{id}.

How do I search IMDb through Jentic?

Run pip install jentic, search for 'search IMDb for a movie title', load the /SearchTitle schema, and execute with the user's query expression. Jentic supplies the API key from the vault.

What are the rate limits for IMDb-API?

The OpenAPI spec does not list explicit rate limits. IMDb-API enforces per-plan request quotas on imdb-api.com; back off on HTTP 429 responses if running batch enrichment over thousands of titles.

Can I limit what my agent is allowed to do with the IMDb API?

Yes. Because you run Jentic One yourself, your own rules decide which IMDb-API operations the agent may call, so you can pin it to just the read lookups it needs, such as /Title, /FullCast, /Ratings, and /Name. Every operation is a read-only GET with the title or person id in the URL path, and the agent can only invoke the operations you have named. Any endpoint you leave out, including search or season episodes, stays off limits to the agent.

GET STARTED

Start building with IMDb-API

Explore with Jentic One
View OpenAPI Document