The Movie Database · Schema
MovieSimilarResponse
TMDB Movies — Similar (200 payload).
CatalogDiscoveryEntertainmentImagesMediaMetadataMoviesPeopleRecommendationsReviewsSearchStreamingTrendingTVVideoWatch Providers
Properties
| Name | Type | Description |
|---|---|---|
| page | integer | |
| results | array | |
| total_pages | integer | |
| total_results | integer |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/tmdb/refs/heads/main/json-schema/tmdb-api-movie-similar-response-schema.json",
"title": "MovieSimilarResponse",
"description": "TMDB Movies \u2014 Similar (200 payload).",
"type": "object",
"properties": {
"page": {
"type": "integer",
"examples": [
1
],
"default": 0
},
"results": {
"type": "array",
"items": {
"type": "object",
"properties": {
"adult": {
"type": "boolean",
"examples": [
false
],
"default": true
},
"backdrop_path": {
"type": "string",
"examples": [
"/3YAldML4EDyoC6RBpzceALigrAZ.jpg"
]
},
"genre_ids": {
"type": "array",
"items": {
"type": "integer",
"examples": [
18
],
"default": 0
}
},
"id": {
"type": "integer",
"examples": [
9300
],
"default": 0
},
"original_language": {
"type": "string",
"examples": [
"en"
]
},
"original_title": {
"type": "string",
"examples": [
"Orlando"
]
},
"overview": {
"type": "string",
"examples": [
"England, 1600. Queen Elizabeth I promises Orlando, a young nobleman obsessed with poetry, that she will grant him land and fortune if he agrees to satisfy a very particular request."
]
},
"popularity": {
"type": "number",
"examples": [
7.768
],
"default": 0
},
"poster_path": {
"type": "string",
"examples": [
"/xvz0qZkXXMq3dH2Revxii8drxWc.jpg"
]
},
"release_date": {
"type": "string",
"examples": [
"1992-12-11"
]
},
"title": {
"type": "string",
"examples": [
"Orlando"
]
},
"video": {
"type": "boolean",
"examples": [
false
],
"default": true
},
"vote_average": {
"type": "number",
"examples": [
6.966
],
"default": 0
},
"vote_count": {
"type": "integer",
"examples": [
262
],
"default": 0
}
}
}
},
"total_pages": {
"type": "integer",
"examples": [
364
],
"default": 0
},
"total_results": {
"type": "integer",
"examples": [
7269
],
"default": 0
}
}
}