I am trying to create a function that scrapes netflix website, that working good. But after getting netflix movie id's, how can I find the related tmdb id.
Is there an endpoint that I can use?
لم تجد الفلم أو المسلسل ؟ سجل دخولك و انشئها
هل تريد تقييم او اضافة هذا العنصر للقائمة؟
لست عضو؟
رد بواسطة Victor Franco
بتاريخ مارس 3, 2025 في 11:13 مساءا
Hello! Unfortunately, there isn’t a direct endpoint in the TMDB API to convert Netflix IDs to TMDB IDs.
Typically, the approach is:
GET /search/movie
orGET /search/tv
— to search by the title name and refine the query with the release year or other details.This way, you can link a Netflix title to TMDB even though there isn’t a ready-made mapping. If you have many titles, it’s worth creating a script to automate the search and matching process.
Hope this helps!