The Movie Database Gettrending Example is an example object payload from The Movie Database, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.
{
"request": {
"method": "GET",
"url": "https://api.themoviedb.org/3/trending/movie/week",
"headers": {
"Authorization": "Bearer YOUR_ACCESS_TOKEN",
"accept": "application/json"
},
"parameters": {
"time_window": "week"
}
},
"response": {
"page": 1,
"results": [
{
"id": 1011985,
"title": "Kung Fu Panda 4",
"original_title": "Kung Fu Panda 4",
"media_type": "movie",
"original_language": "en",
"overview": "Po is gearing up to become the spiritual leader of his Valley of Peace, but also needs someone to take his place as Dragon Warrior.",
"release_date": "2024-03-08",
"adult": false,
"popularity": 2869.982,
"vote_average": 6.899,
"vote_count": 2315,
"poster_path": "/kDp1vUBnMpe8ak4rjgl3cLELqjU.jpg",
"backdrop_path": "/1XDDXPXGiI8id7MrUxK36ke7gkX.jpg",
"genre_ids": [16, 28, 12, 35, 10751]
},
{
"id": 823464,
"title": "Godzilla x Kong: The New Empire",
"original_title": "Godzilla x Kong: The New Empire",
"media_type": "movie",
"original_language": "en",
"overview": "Following their explosive showdown, Godzilla and Kong must reunite against a colossal undiscovered threat hidden within our world.",
"release_date": "2024-03-27",
"adult": false,
"popularity": 2626.554,
"vote_average": 6.6,
"vote_count": 1890,
"poster_path": "/z1p34vh7dEOnLDmyCrlUVLuoDzd.jpg",
"backdrop_path": "/lgkgOfgsPlFNGBIb4TGrm3bkqkY.jpg",
"genre_ids": [28, 878, 12]
}
],
"total_pages": 1000,
"total_results": 20000
}
}