I believe there is a small error in your API Request.
You put the " & " character.
The correct character is " ? " .
Would be like this
https://api.themoviedb.org/3/tv/1408/content_ratings?api_key=THE_KEY
Not this
https://api.themoviedb.org/3/tv/1408/content_ratings&api_key=<key>&language=en
Reply by Travis Bell
on April 9, 2021 at 5:34 PM
TMDb has certifications and content ratings (like MPAA, etc.) available in the following two end points:
Cheers.
Reply by Dan Hinsley
on March 20, 2022 at 2:33 PM
I get a null response when I enter:
https://api.themoviedb.org/3/tv/1408/content_ratings&api_key=&language=en
Is this the correct format?
Reply by ticao2 š§š· pt-BR
on March 21, 2022 at 11:29 AM
I believe there is a small error in your API Request.
You put the " & " character.
The correct character is " ? " .
Reply by Dan Hinsley
on March 21, 2022 at 3:20 PM
Oops. So I tried:
https://api4.thetvdb.com/v4/tv/1408/content_ratings?language=en
Supplying my token in the Authorization header (like I do for all calls), but still get a null return.
Reply by Travis Bell
on March 21, 2022 at 5:23 PM
That is a call to TVDB.
Here is an example working call to the
/content_ratings
method:Request
Response
Reply by Dan Hinsley
on March 21, 2022 at 7:16 PM
Thanks, another question, is there any way to piggyback this onto another call (using append_to_response)?
Reply by ticao2 š§š· pt-BR
on March 22, 2022 at 10:14 AM
I think so.
It would be this API Request.