Install
openclaw skills install @tonywangcn/movie-tv-researchResearches movies and TV shows — metadata, cast/crew, ratings, reviews, streaming availability, and box-office performance — via the Crawlora API across IMDb, TMDB, JustWatch, Letterboxd, Rotten Tomatoes, Metacritic, and Box Office Mojo, returning clean JSON. Use when the user asks about a title's cast, ratings/scores, where to stream it, critic or user reviews, or its box-office numbers.
openclaw skills install @tonywangcn/movie-tv-researchPull title metadata, cast/crew, ratings, streaming availability, reviews, and box-office numbers across seven film/TV data sources as normalized JSON from the Crawlora API — no scraping IMDb pages or parsing streaming-provider HTML.
export CRAWLORA_API_KEY=sk_your_key_herex-api-key: $CRAWLORA_API_KEY against
https://api.crawlora.net/api/v1. Missing/invalid key → 401.Pick the source by job:
/imdb/search or
/tmdb/search; then detail: /imdb/title (needs the IMDb id) or
/tmdb/movie/{id} / /tmdb/tv/{id}. Cast/crew: /imdb/title/credits or
TMDB's title payload. Person pages: /imdb/name, /tmdb/person/{id}./rottentomatoes/movie, /series,
/movie/reviews), Metacritic (/metacritic/movie/{slug},
/critic-reviews, /user-reviews), IMDb (/imdb/title/reviews),
Letterboxd (/letterboxd/film/{slug}, /reviews, /rating-histogram)./justwatch/search → raw id, then
/justwatch/title/offers (or /title-by-id + /title/offers) for
per-provider streaming/rental/purchase links; /justwatch/title/similar
for recommendations./boxofficemojo/title or /release
for one film's numbers; /weekend/domestic, /year/domestic,
/year/worldwide for charts; /franchise / /genre / /brand for
rollups; /showdown to compare two releases head-to-head.Full endpoint list, methods, and params: reference/endpoints.md.
# Identity + scores:
scripts/crawlora.sh /imdb/search query="Dune Part Two" | jq '.'
scripts/crawlora.sh /tmdb/search query="Dune Part Two" | jq '.'
scripts/crawlora.sh /rottentomatoes/search query="Dune Part Two" | jq '.'
# Streaming availability:
scripts/crawlora.sh /justwatch/search query="Dune Part Two" | jq '.'
scripts/crawlora.sh /justwatch/title/offers id=<raw-justwatch-id> | jq '.'
# Box office:
scripts/crawlora.sh /boxofficemojo/title id=<mojo-title-id> | jq '.'
Raw curl fallback:
curl -fsS -H "x-api-key: $CRAWLORA_API_KEY" \
"https://api.crawlora.net/api/v1/metacritic/movie/dune-part-two" | jq '.'
See reference/endpoints.md for every IMDb, TMDB,
JustWatch, Letterboxd, Rotten Tomatoes, Metacritic, and Box Office Mojo
endpoint this skill uses.
/metacritic/movie/{slug} (critic Metascore
vs. user score) alongside /rottentomatoes/movie (Tomatometer vs.
audience score) for the same title./justwatch/search → /justwatch/title/offers
to list every subscription/rent/buy option and price by provider./boxofficemojo/franchise for every
entry's opening/lifetime gross, sorted chronologically./letterboxd/film/{slug}/similar or
/tmdb/movie/{id} (TMDB includes recommendations) for "more like this."2xx; free tier 2,000 credits/mo.
Key at https://crawlora.net.CRAWLORA_API_KEY only — never hardcode, query-param, or commit it./justwatch/search or /justwatch/title/by-id first.page to walk longer lists
(reviews, charts, filmographies).