Movie Add Rating

This method lets users rate a movie. A valid session id is required. For a detailed walk through of the authentication process, click here. If you’d like to read more about how to post JSON data, check out this article.

HTTP Request

POST http://api.themoviedb.org/3/movie/:id/rating

Required HTTP Parameters

  • api_key
  • session_id

Required JSON Body

We expect you to send a valid JSON object as the POST data for your request.

  • value

    The value is expected to be a float value between 1 and 10.

Example cURL Request

curl -H "Accept: application/json" \
-H "Content-Type: application/json" \
-d "{'value': 7.5}" \
"http://api.themoviedb.org/3/movie/11/rating?api_key=###&session_id=###"

Example HTTP Response

{
    "status_code": 1,
    “status_message": "Success"
}