cURL
curl --request POST \ --url 'https://api.themoviedb.org/3/movie/{{movie_id}}/rating' \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "value": 7.5 }'
{ "status_code": 1, "status_message": "Success.", "success": true }
This endpoint rates a movie and save it to your rated list.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
7.5
Add Rating Example
1
"Success."
true