Endpoints
- AUTHENTICATION
- ACCOUNT
- CERTIFICATIONS
- CHANGES
- COLLECTIONS
- COMPANY
- CONFIGURATION
- CREDIT
- DISCOVER
- FIND
- GENRES
- GUEST SESSIONS
- KEYWORDS
- LISTS
- MOVIE LISTS
- MOVIES
- REVIEWS
- NETWORKS
- PEOPLE LIST
- PEOPLE
- SEARCH
- TRENDING
- TV SERIES LIST
- TV SERIES
- TV SEASONS
- TV EPISODES
- TV EPISODE GROUP
- WATCH PROVIDERS
REVIEWS
Details
This endpoint retrieve the details of a movie or TV show review.
GET
/
3
/
review
/
{review_id}
Copy
curl --request GET \
--url https://api.themoviedb.org/3/review/{review_id} \
--header 'Authorization: Bearer <token>'
Copy
{
"author": "Manuel São Bento",
"author_details": {
"avatar_path": null,
"name": "Manuel São Bento",
"rating": 8,
"username": "msbreviews"
},
"content": "FULL SPOILER-FREE REVIEW @ https://talkingfilms.net/gladiator-ii-review-a-legacy-sequel-that-triumphs-through-spectacle-and-emotion/\r\n\r\n\"Gladiator II may not achieve the groundbreaking impact of the original film, but it remains an impressive cinematic experience, transporting audiences into an epic filled with emotional and visual grandeur.\r\n\r\nRidley Scott once again showcases his mastery in blending narrative, action, and thematic depth, delivering a sequel marked by superb technical execution and standout performances, particularly from Denzel Washington. Despite the inevitable comparisons to the classic, the iconic filmmaker presents a story that justifies its existence, even if it treads familiar ground.\r\n\r\nNecessary or not, what truly matters is the strength (and honor) with which a work captivates us - and here, Gladiator II triumphs.\"\r\n\r\nRating: A-",
"created_at": "2024-11-14T08:50:23.907Z",
"id": "6735b9cfffe3878e9e9f89ed",
"iso_639_1": "en",
"media_id": 558449,
"media_title": "Gladiator II",
"media_type": "movie",
"updated_at": "2024-11-14T08:50:24.017Z",
"url": "https://www.themoviedb.org/review/6735b9cfffe3878e9e9f89ed"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
The unique identifier for a specific review within the database.
Example:
""
Response
200 - application/json
details
The response is of type object
.
Copy
curl --request GET \
--url https://api.themoviedb.org/3/review/{review_id} \
--header 'Authorization: Bearer <token>'
Copy
{
"author": "Manuel São Bento",
"author_details": {
"avatar_path": null,
"name": "Manuel São Bento",
"rating": 8,
"username": "msbreviews"
},
"content": "FULL SPOILER-FREE REVIEW @ https://talkingfilms.net/gladiator-ii-review-a-legacy-sequel-that-triumphs-through-spectacle-and-emotion/\r\n\r\n\"Gladiator II may not achieve the groundbreaking impact of the original film, but it remains an impressive cinematic experience, transporting audiences into an epic filled with emotional and visual grandeur.\r\n\r\nRidley Scott once again showcases his mastery in blending narrative, action, and thematic depth, delivering a sequel marked by superb technical execution and standout performances, particularly from Denzel Washington. Despite the inevitable comparisons to the classic, the iconic filmmaker presents a story that justifies its existence, even if it treads familiar ground.\r\n\r\nNecessary or not, what truly matters is the strength (and honor) with which a work captivates us - and here, Gladiator II triumphs.\"\r\n\r\nRating: A-",
"created_at": "2024-11-14T08:50:23.907Z",
"id": "6735b9cfffe3878e9e9f89ed",
"iso_639_1": "en",
"media_id": 558449,
"media_title": "Gladiator II",
"media_type": "movie",
"updated_at": "2024-11-14T08:50:24.017Z",
"url": "https://www.themoviedb.org/review/6735b9cfffe3878e9e9f89ed"
}
Assistant
Responses are generated using AI and may contain mistakes.