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 的回复
于 2025 年 04 月 04 日 8: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.
tmdb1999 的回复
于 2025 年 04 月 04 日 9: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
Travis Bell 的回复
于 2025 年 04 月 04 日 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
tmdb1999 的回复
于 2025 年 04 月 04 日 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
Travis Bell 的回复
于 2025 年 04 月 04 日 11:54上午
If all you want is the primary details, access the ID directly:
Ie.
tmdb1999 的回复
于 2025 年 04 月 04 日 11:58上午
Very kind thank you