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 ق.ض
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 ق.ض
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 ق.ض
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 ق.ض
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 ق.ض
If all you want is the primary details, access the ID directly:
Ie.
پاسخ توسط tmdb1999
در تاریخ آوریل 4, 2025 ساعت 11:58 ق.ض
Very kind thank you