Hello,
This endpoint returns an empty result with the 60572 ID: https://api.themoviedb.org/3/tv/{series_id}/videos
I also tried using the developer page, but I get the same result: https://developer.themoviedb.org/reference/tv-series-videos
response status code 200
{
"id": 60572,
"results": []
}
The series ID is: Pokémon (1997) https://www.themoviedb.org/tv/60572
Other id: 22980 : doesnt work 456 : works
Can you help me? Thank you
¿No encuentras una película o serie? Inicia sesión para crearla:
¿Quieres puntuar o añadir este elemento a una lista?
¿No eres miembro?
Contestado por ticao2 🇧🇷 pt-BR
el 4 de abril de 2025 a las 08:02
For me all the Requests worked correctly.
https://api.themoviedb.org/3/tv/60572?api_key=THE_KEY&language=pt-BR
https://api.themoviedb.org/3/tv/22980?api_key=THE_KEY&language=pt-BR
https://api.themoviedb.org/3/tv/456?api_key=THE_KEY&language=pt-BR
Try again and let me know if the problem persists.
Contestado por tmdb1999
el 4 de abril de 2025 a las 09:53
Maybe I didn't understand how it works or the problem is with the language
Movie: Pokèmon TMDB 60572
It exists on the website:
https://www.themoviedb.org/search?language=it-IT&query=pok%C3%A9mon
but the developer API panel returns an empty result. However it works with the 'en-US' language
It works even with the IT language (this is not the developer API panel) https://api.themoviedb.org/3/tv/60572?api_key=api_key&language=it-IT
My endpoint in Python returns an empty result in IT:
https://api.themoviedb.org/3/tv/60572/videos {'api_key': 'api_key', 'language': 'it-IT', 'query': ''}
My endpoint in Python returns the correct result in US:
https://api.themoviedb.org/3/tv/60572/videos {'api_key': 'api_key', 'language': 'en-US', 'query': ''}
It does not work in the TMDB developer panel and in my Python script with IT language
Contestado por Travis Bell
el 4 de abril de 2025 a las 11:28
Hi @tmdb1999,
Pokémon (id 60572) does not have any videos added to the
it-IT
translation. Compare these two requests:https://www.themoviedb.org/tv/60572/videos?language=it-IT
vs.
https://www.themoviedb.org/tv/60572/videos?language=en-US
Here's the API request:
Request
Response
Contestado por tmdb1999
el 4 de abril de 2025 a las 11:48
Oh.. I misunderstood the term 'videos' as 'trailers'........... from https://api.themoviedb.org/3/tv/{series_id}/videos
I am trying to get information about this TV show based on its ID ( only the ID) What endpoint should I use?
Thank you
Contestado por Travis Bell
el 4 de abril de 2025 a las 11:54
If all you want is the primary details, access the ID directly:
Ie.
Contestado por tmdb1999
el 4 de abril de 2025 a las 11:58
Very kind thank you