The Movie Database · Schema
SearchMovieResponse
TMDB Search — Movie (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-search-movie-response-schema.json",
"title": "SearchMovieResponse",
"description": "TMDB Search \u2014 Movie (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": [
"/hZkgoQYus5vegHoetLkCJzb17zJ.jpg"
]
},
"genre_ids": {
"type": "array",
"items": {
"type": "integer",
"examples": [
18
],
"default": 0
}
},
"id": {
"type": "integer",
"examples": [
550
],
"default": 0
},
"original_language": {
"type": "string",
"examples": [
"en"
]
},
"original_title": {
"type": "string",
"examples": [
"Fight Club"
]
},
"overview": {
"type": "string",
"examples": [
"A ticking-time-bomb insomniac and a slippery soap salesman channel primal male aggression into a shocking new form of therapy. Their concept catches on, with underground \"fight clubs\" forming in every town, until an eccentric gets in the way and ignites an out-of-control spiral toward oblivion."
]
},
"popularity": {
"type": "number",
"examples": [
73.433
],
"default": 0
},
"poster_path": {
"type": "string",
"examples": [
"/pB8BM7pdSp6B6Ih7QZ4DrQ3PmJK.jpg"
]
},
"release_date": {
"type": "string",
"examples": [
"1999-10-15"
]
},
"title": {
"type": "string",
"examples": [
"Fight Club"
]
},
"video": {
"type": "boolean",
"examples": [
false
],
"default": true
},
"vote_average": {
"type": "number",
"examples": [
8.433
],
"default": 0
},
"vote_count": {
"type": "integer",
"examples": [
26279
],
"default": 0
}
}
}
},
"total_pages": {
"type": "integer",
"examples": [
2
],
"default": 0
},
"total_results": {
"type": "integer",
"examples": [
39
],
"default": 0
}
}
}