GET
/
tv
/
{series_id}
/
content_ratings
curl --request GET \
  --url https://api.themoviedb.org/3/tv/%7B{series_id}%7D/content_ratings \
  --header 'Authorization: Bearer <token>'
{
  "id": 202250,
  "results": [
    {
      "descriptors": [],
      "iso_3166_1": "PH",
      "rating": "SPG"
    },
    {
      "descriptors": [],
      "iso_3166_1": "SG",
      "rating": "M18"
    },
    {
      "descriptors": [],
      "iso_3166_1": "RO",
      "rating": "AP"
    },
    {
      "descriptors": [],
      "iso_3166_1": "NL",
      "rating": "16"
    },
    {
      "descriptors": [],
      "iso_3166_1": "MX",
      "rating": "C"
    },
    {
      "descriptors": [],
      "iso_3166_1": "DK",
      "rating": "15"
    },
    {
      "descriptors": [],
      "iso_3166_1": "NO",
      "rating": "18"
    },
    {
      "descriptors": [],
      "iso_3166_1": "SE",
      "rating": "Från 15 år"
    },
    {
      "descriptors": [],
      "iso_3166_1": "FI",
      "rating": "K16"
    },
    {
      "descriptors": [],
      "iso_3166_1": "CA",
      "rating": "18+"
    }
  ]
}

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

Response

200 - application/json

Fetch content ratings

The response is of type object.