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?
¿No encuentras una película o serie? Inicia sesión para crearla:
¿Quieres puntuar o añadir este elemento a una lista?
¿No eres miembro?
Contestado por Victor Franco
el 3 de marzo de 2025 a las 23: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!