TmdbElixir.People (tmdb_elixir v1.1.0)

Used for making calls related to people (actors and crew members).

Summary

Functions

Get the top level details of a person by ID.

Functions

find(id, params \\ %{})

Get the top level details of a person by ID.

Returns a map with data for the corresponding person.

Accepts query params listed in the TMDb Docs in the form of a map.

Examples

iex> TmdbElixir.People.find(287)
%{
  "name" => "Brad Pitt",
  ...
}