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?
Un film, une émission télévisée ou un artiste est introuvable ? Connectez-vous afin de créer une nouvelle fiche.
Vous souhaitez évaluer ou ajouter cet élément à une liste ?
Pas encore membre ?
Réponse de Victor Franco
le 3 mars 2025 à 23h13
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!