Skip to main content
POST
/
3
/
movie
/
{movie_id}
/
rating
Add Rating
curl --request POST \
  --url 'https://api.themoviedb.org/3/movie/{{movie_id}}/rating' \
  --header 'Content-Type: application/json' \
  --data '{
  "value": 8.5
}'
{
  "status_code": 1,
  "status_message": "Success.",
  "success": true
}

Path Parameters

movie_id
string
required

Query Parameters

session_id
string
Example:

"61e841eafdd04aee48066a439469f03f8ef8442b"

Body

application/json
value
number
Example:

8.5

Response

201 - application/json

Rating

status_code
number
Example:

1

status_message
string
Example:

"Success."

success
boolean
Example:

true