-1

I want to get ID of particular cast using tmdb api. After that I will use that cast id to discover all the movies of that cast.

I just want to know is it possible to fetch Id of any cast by its name?

Travis Bell
  • 204
  • 2
  • 7

1 Answers1

0

You could use this API Endpoint: /search/person. This allows to search for people by name. Please check the API documentation and look for section: /search.

For example:

https://api.themoviedb.org/3/search/person?api_key=###&search_type=ngram&query=julia

Hope it helped.

a3.14_Infinity
  • 5,653
  • 7
  • 42
  • 66