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+"
}
]
}
This endpoint allows you to get the content ratings that have been added to a TV show.
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+"
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Fetch content ratings
The response is of type object
.