The Movie Database · Schema
MovieLatestIdResponse
TMDB Movies — Latest (200 payload).
CatalogDiscoveryEntertainmentImagesMediaMetadataMoviesPeopleRecommendationsReviewsSearchStreamingTrendingTVVideoWatch Providers
Properties
| Name | Type | Description |
|---|---|---|
| adult | boolean | |
| backdrop_path | object | |
| belongs_to_collection | object | |
| budget | integer | |
| genres | array | |
| homepage | string | |
| id | integer | |
| imdb_id | object | |
| original_language | string | |
| original_title | string | |
| overview | string | |
| popularity | integer | |
| poster_path | object | |
| production_companies | array | |
| production_countries | array | |
| release_date | string | |
| revenue | integer | |
| runtime | integer | |
| spoken_languages | array | |
| status | string | |
| tagline | string | |
| title | string | |
| video | boolean | |
| vote_average | integer | |
| vote_count | 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-latest-id-response-schema.json",
"title": "MovieLatestIdResponse",
"description": "TMDB Movies \u2014 Latest (200 payload).",
"type": "object",
"properties": {
"adult": {
"type": "boolean",
"examples": [
false
],
"default": true
},
"backdrop_path": {},
"belongs_to_collection": {},
"budget": {
"type": "integer",
"examples": [
0
],
"default": 0
},
"genres": {
"type": "array"
},
"homepage": {
"type": "string",
"examples": [
""
]
},
"id": {
"type": "integer",
"examples": [
1119232
],
"default": 0
},
"imdb_id": {},
"original_language": {
"type": "string",
"examples": [
"fr"
]
},
"original_title": {
"type": "string",
"examples": [
"K\u00f6nig Charles III"
]
},
"overview": {
"type": "string",
"examples": [
""
]
},
"popularity": {
"type": "integer",
"examples": [
0
],
"default": 0
},
"poster_path": {},
"production_companies": {
"type": "array"
},
"production_countries": {
"type": "array"
},
"release_date": {
"type": "string",
"examples": [
""
]
},
"revenue": {
"type": "integer",
"examples": [
0
],
"default": 0
},
"runtime": {
"type": "integer",
"examples": [
0
],
"default": 0
},
"spoken_languages": {
"type": "array"
},
"status": {
"type": "string",
"examples": [
"Released"
]
},
"tagline": {
"type": "string",
"examples": [
""
]
},
"title": {
"type": "string",
"examples": [
"K\u00f6nig Charles III"
]
},
"video": {
"type": "boolean",
"examples": [
false
],
"default": true
},
"vote_average": {
"type": "integer",
"examples": [
0
],
"default": 0
},
"vote_count": {
"type": "integer",
"examples": [
0
],
"default": 0
}
}
}