Resources
6Install
npx skillscat add imoonkey/openweb/src-sites-imdb Install via the SkillsCat registry.
About this skill
This skill provides programmatic access to IMDB movie and TV data via its GraphQL API, returning search results, full title details, ratings histograms, and cast/crew information without requiring authentication. It is useful when an agent or developer needs to look up film metadata, ratings breakdowns, or credits directly from IMDB for a given title or IMDb ID.
SKILL.md
IMDB
Overview
IMDB is the world's most popular movie and TV database. Data fetched via GraphQL API (api.graphql.imdb.com) — no auth required. Ratings histogram from SSR fallback.
Workflows
Search and get movie details
searchTitles(q)→imdbId, title, year, ratinggetTitleDetail(imdbId)→ full details (plot, cast, rating, genres, runtime)
Check ratings breakdown
searchTitles(q)→imdbIdgetRatings(imdbId)→ vote histogram (1-10 breakdown)
Get cast and crew
searchTitles(q)→imdbIdgetCast(imdbId)→ directors, writers, actors
Operations
| Operation | Intent | Key Input | Key Output | Notes |
|---|---|---|---|---|
| searchTitles | search movies/TV by keyword | q | imdbId, title, year, rating, genres, plot | GraphQL mainSearch |
| getTitleDetail | full title info | imdbId ← searchTitles | title, plot, runtime, genres, credits, rating | GraphQL title() |
| getRatings | ratings breakdown | imdbId ← searchTitles | aggregateRating, histogram (1-10) | GraphQL + title page LD+JSON + SSR histogram |
| getCast | cast and crew | imdbId ← searchTitles | credits, actors, directors, creators | GraphQL principalCredits |
Quick Start
# Search for movies
openweb imdb exec searchTitles '{"q": "inception"}'
# Get full title details
openweb imdb exec getTitleDetail '{"imdbId": "tt1375666"}'
# Get ratings breakdown
openweb imdb exec getRatings '{"imdbId": "tt0111161"}'
# Get cast and crew
openweb imdb exec getCast '{"imdbId": "tt0111161"}'