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?
Can't find a movie or TV show? Login to create it.
Want to rate or add this item to a list?
Not a member?
Reply by Victor Franco
on March 4, 2025 at 12:13 PM
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!