POST
/
3
/
tv
/
{series_id}
/
season
/
{season_number}
/
episode
/
{episode_number}
/
rating
curl --request POST \
  --url https://api.themoviedb.org/3/tv/{series_id}/season/{season_number}/episode/{episode_number}/rating \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "value": 8.5
}'
{
  "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

season_number
integer
required

This refers to the numerical identifier assigned to a specific season of a TV series.

Example:

""

series_id
integer
required

This refers to a unique identifier assigned to a television series within the database.

Example:

""

episode_number
integer
required

This refers to the unique number assigned to a specific episode within a season of a television series.

Example:

""

Query Parameters

guest_session_id
string

It represents a unique identifier for a session that is created for a guest user.

session_id
string

A token that represents a logged-in user's session after they have authenticated with their TMDB account.

Example:

""

Body

application/json

Response

201 - application/json

add rating

The response is of type object.