IMDb-API · Schema

Rating

Aggregated ratings from IMDb, Metacritic, Rotten Tomatoes, TMDB and FilmAffinity for a title.

VideoMoviesTVEntertainmentMetadataRatingsPublic APIs

Properties

Name Type Description
imDbId string
title string
fullTitle string
type string
year string
imDb string
metacritic string
theMovieDb string
rottenTomatoes string
filmAffinity string
errorMessage string
View JSON Schema on GitHub

JSON Schema

imdb-api-rating-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/imdb-api/json-schema/imdb-api-rating-schema.json",
  "title": "Rating",
  "description": "Aggregated ratings from IMDb, Metacritic, Rotten Tomatoes, TMDB and FilmAffinity for a title.",
  "type": "object",
  "required": ["imDbId"],
  "properties": {
    "imDbId": {"type": "string", "pattern": "^tt\\d+$"},
    "title": {"type": "string"},
    "fullTitle": {"type": "string"},
    "type": {"type": "string"},
    "year": {"type": "string"},
    "imDb": {"type": "string"},
    "metacritic": {"type": "string"},
    "theMovieDb": {"type": "string"},
    "rottenTomatoes": {"type": "string"},
    "filmAffinity": {"type": "string"},
    "errorMessage": {"type": "string"}
  }
}