GET
/
review
/
{review_id}
curl --request GET \
  --url https://api.themoviedb.org/3/review/%7B{review_id}%7D \
  --header 'Authorization: Bearer <token>'
{
  "author": "Andres Gomez",
  "author_details": {
    "avatar_path": null,
    "name": "Andres Gomez",
    "rating": 7,
    "username": "tanty"
  },
  "content": "Interesting film with an exceptional cast, fantastic performances and characterizations. The story, though, is a bit difficult to follow and, in the end, seems to not have a real point.",
  "created_at": "2013-05-13T15:40:41.935Z",
  "id": "51910979760ee320eb020fc2",
  "iso_639_1": "en",
  "media_id": 83542,
  "media_title": "Cloud Atlas",
  "media_type": "movie",
  "updated_at": "2021-06-23T15:57:21.374Z",
  "url": "https://www.themoviedb.org/review/51910979760ee320eb020fc2"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

review_id
string
required

Response

200 - application/json

fetch review details

The response is of type object.