Discover/Criterion API
live

Criterion APIcriterion.com

Access the Criterion Collection film catalog, Current magazine editorial posts, Top 10 lists, and Closet Picks via 9 structured JSON endpoints.

Endpoint health
verified 3d ago
get_film_detail
get_top10_lists
get_top10_list_detail
get_current_post_detail
get_closet_picks
9/9 passing latest checkself-healing
Endpoints
9
Updated
24d ago

What is the Criterion API?

The Criterion Collection API provides structured access to ~1800 films across 9 endpoints, covering catalog browsing, film detail pages, editorial content from Current magazine, and curated Top 10 lists. The get_film_detail endpoint returns spine numbers, aspect ratios, runtime, special features, and full synopsis for any title in the collection, while get_current_posts surfaces editorial writing by category.

This call costs1 credit / call— charged only on success
Try it
Sort order for results.
Filter by genre slug.
Search query within catalog.
Filter by decade (e.g., 1960s).
Filter by format.
Filter by country (e.g., Japan, France).
Filter by director slug.
api.parse.bot/scraper/c4a7e815-f1b8-4725-b565-87cb4f23aa80/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/c4a7e815-f1b8-4725-b565-87cb4f23aa80/get_all_films?sort=spine_number&country=Japan' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 9 totalmissing one? ·

Browse the Criterion Collection catalog with various filters. Returns a list of films with spine number, title, director, country, and year. The full catalog contains ~1800 films returned in a single page.

Input
ParamTypeDescription
sortstringSort order for results.
genrestringFilter by genre slug.
querystringSearch query within catalog.
decadestringFilter by decade (e.g., 1960s).
formatstringFilter by format.
countrystringFilter by country (e.g., Japan, France).
directorstringFilter by director slug.
Response
{
  "type": "object",
  "fields": {
    "count": "integer total number of films returned",
    "films": "array of film objects with spine, title, director, country, year, and url"
  },
  "sample": {
    "data": {
      "count": 1847,
      "films": [
        {
          "url": "https://www.criterion.com/films/351-grand-illusion",
          "year": "1937",
          "spine": "1",
          "title": "Grand Illusion",
          "country": "France",
          "director": "Jean Renoir"
        },
        {
          "url": "https://www.criterion.com/films/165-seven-samurai",
          "year": "1954",
          "spine": "2",
          "title": "Seven Samurai",
          "country": "Japan",
          "director": "Akira Kurosawa"
        }
      ]
    },
    "status": "success"
  }
}

About the Criterion API

Film Catalog Access

The get_all_films endpoint returns the full Criterion catalog — roughly 1800 titles — in a single response. Each film object includes spine, title, director, country, year, and url. You can filter by genre, decade, country, director slug, format, or pass a free-text query. For deeper metadata on any individual title, get_film_detail accepts a film URL and returns details (an array of strings covering country, year, runtime, format, aspect ratio, language, and spine number), features (special features list), synopsis, and director. The search_films endpoint runs a global search by keyword and returns matching films and box sets with title, director, and URL.

Editorial and Curated Lists

get_current_posts retrieves posts from Current magazine. Without a category param it returns landing-page posts; pass a category slug like 1-essays, 3-features, or 2-interviews to narrow results. Each post object carries title, author, category, date, and url. Full text is available via get_current_post_detail, which returns title and content for a given post URL. Top 10 lists are handled by get_top10_lists (paginated index with author, date, and ID) and get_top10_list_detail (full picks array plus title and author for a specific list).

Physical Releases and Closet Picks

list_releases covers physical Blu-ray and 4K UHD shop releases. It supports page, limit, and format params (bluray, 4k, or omit for both). Each release record includes movie_title, product_title, release_date, format, edition, spine_number, availability, and product_url. The get_closet_picks endpoint returns all available Closet Picks with title and url — no parameters required.

Reliability & maintenanceVerified

The Criterion API is a managed, monitored endpoint for criterion.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when criterion.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official criterion.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
3d ago
Latest check
9/9 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a personal Criterion watchlist app backed by get_all_films filtering by country, decade, or director slug.
  • Track new Blu-ray and 4K releases by polling list_releases with the format filter and checking availability.
  • Aggregate film critics' Top 10 picks by fetching list indexes with get_top10_lists and resolving each list via get_top10_list_detail.
  • Enrich a film database with spine numbers, aspect ratios, and special features from get_film_detail.
  • Index Current magazine essays and interviews by category using get_current_posts with category slugs like 1-essays or 2-interviews.
  • Display full text of Criterion editorial writing by resolving post URLs through get_current_post_detail.
  • Surface Closet Picks video content in a curated recommendation UI using get_closet_picks.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Criterion have an official developer API?+
No. Criterion does not publish a public developer API or document any official programmatic access to its catalog or editorial content.
What does `get_film_detail` return beyond the basic catalog listing?+
get_film_detail returns a synopsis, a director string, a features array listing the special features included in the release, and a details array that covers country, year, runtime, format, aspect ratio, language, and spine number — fields not present in the get_all_films response.
Does `get_all_films` return all ~1800 films at once or require pagination?+
The full catalog is returned in a single response. There is no pagination on this endpoint; the count field tells you how many films matched your filters.
Does the API expose user ratings, reviews, or purchase/cart functionality?+
Not currently. The API covers catalog metadata, editorial posts, Top 10 lists, Closet Picks, and physical release data. User ratings, reviews, and e-commerce cart actions are not included. You can fork the API on Parse and revise it to add endpoints targeting any of those areas.
Are film stills or cover images included in the film catalog or detail responses?+
Cover images are returned as product_url-associated fields in list_releases results, but get_all_films and get_film_detail do not include image URLs in their current response shapes. You can fork the API on Parse and revise it to include artwork fields from the film detail pages.
Page content last updated . Spec covers 9 endpoints from criterion.com.
Related APIs in EntertainmentSee all →
blu-ray.com API
Search and browse detailed information about physical Blu-ray and 4K UHD releases, including technical specifications, audio/video formats, distributor details, and which regions each title is available in. Discover disc specs and regional availability to find the exact version you're looking for.
arrowfilms.com API
Browse Arrow Films' complete catalog of physical movie releases and check real-time availability, formats, editions, and product details for Blu-ray and 4K UHD titles from the UK store. Get up-to-date release dates and specifications to track upcoming drops or find specific versions of your favorite films.
letterboxd.com API
Search for movies and discover detailed information about films including cast, ratings, and reviews, while accessing user profiles and viewing their watch lists and ratings. Build personalized movie discovery tools that let you find films based on user preferences and track what others are watching on Letterboxd.
metacritic.com API
Search for games, movies, and TV shows, then retrieve detailed metadata, critic and user reviews, and ranked lists from Metacritic. Access comprehensive rating information and review data to discover top-rated entertainment content across all media types.
filmfreeway.com API
Search and discover film festivals worldwide with detailed information including deadlines, submission categories, fees, rules, and organizer contacts. Access comprehensive festival profiles, photos, and grant opportunities listed on FilmFreeway.
editorial.rottentomatoes.com API
Search for movies and TV shows, browse ratings and reviews from critics and audiences, and discover celebrity filmographies and entertainment news. Get detailed information about films, shows, and entertainment professionals all in one place.
yorck.de API
Browse current and upcoming films at Berlin's Yorck Kinogruppe cinemas, check showtimes and schedules, and explore special events and membership options. Search for movies, view detailed cinema information, and plan your visits with comprehensive scheduling data across the entire theater chain.
rottentomatoes.com API
Search for movies and TV shows, get detailed information like ratings and reviews, and browse curated collections to discover what to watch. Access comprehensive Rotten Tomatoes data including critic and audience scores, plot details, and user reviews all in one place.