POST
/
3
/
tv
/
{series_id}
/
rating
curl --request POST \
  --url https://api.themoviedb.org/3/tv/%7B{series_id}%7D/rating \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "media_id": 93405,
  "media_type": "tv",
  "value": 8.5,
  "description": "This represents your rating score."
}'
{
  "status_code": 1,
  "status_message": "Success.",
  "success": true
}

Authorizations

Authorization
string
header
required

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

Path Parameters

series_id
string
required

This represents the series ID. Get it here

Body

application/json

Response

201 - application/json

Add Ratings

The response is of type object.