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
Не можете да откриете филм или сериал? Влезте, за да го създадете.
Искате ли да го оцените или добавите към списък?
Нямате профил?
Отговор от ticao2 🇧🇷 pt-BR
на 4 април 2025 в 8:02 AM
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.
Отговор от tmdb1999
на 4 април 2025 в 9:53 AM
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
Отговор от Travis Bell
на 4 април 2025 в 11:28 AM
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
Отговор от tmdb1999
на 4 април 2025 в 11:48 AM
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
Отговор от Travis Bell
на 4 април 2025 в 11:54 AM
If all you want is the primary details, access the ID directly:
Ie.
Отговор от tmdb1999
на 4 април 2025 в 11:58 AM
Very kind thank you