Person

V1

Person api returns with cast and crew information for a given movie ID.


Endpoints

Verb Endpoint Description
GET /v1/movie/{movieId:int}/cast-crew Get cast and crew representation for the movie Id.

Person Properties

Name Description
MovieId The unique identifier of the movie.
PersonId The unique identifier of the person.
Job The job performed by the person.
  • Actor
  • Director
  • Producer
  • Writer
Name The person's name.
Biography A short biography.
Role Character name played in this movie.
BiographyUrl A url linking to the biography from the source.
Media Associated media.

Examples

Get all cast and crew information.
GET  /v1/movie/48196/cast-crew

Response

{
  "id": 48196,
  "cast": [
    {
      "movieId": 48196,
      "personId": 12345,
      "job": "Actor",
      "name": "CHRISTIAN BALE",
      "biography": "Born January 30, 1974, in Pembrokeshire, Wales, Bale was raised in England, Portugal, and the U.S.",
      "role": "Batman/Bruce Wayne",
      "media": {
        "profileDynamic": "http://media.amc.edgesuite.net/m/headshots/5057.jpg"
      }
    },
    {
      "movieId": 48196,
      "personId": 12346,
      "job": "Actor",
      "name": "HEATH LEDGER",
      "biography": "Born in Perth, Western Australia on April 4, 1979, Ledger first became interested in acting while attending the all-boys Guilford Grammar School.",
      "role": "The Joker",
      "media": {
        "profileDynamic": "http://media.amc.edgesuite.net/m/headshots/13648.jpg"
      }
    },
    {
      "movieId": 48196,
      "personId": 12347,
      "job": "Director",
      "name": "CHRISTOPHER NOLAN",
      "biography": "Born in 1970 and making 8 mm films from the age of seven, Nolan studied English Literature at University College London, graduating to 16 mm through borrowing equipment from the college's film department to make short films in his spare time.",
      "media": {
        "profileDynamic": "http://media.amc.edgesuite.net/m/headshots/6759.jpg"
      }
    }
  ],
  "links": {
    "self": {
      "href": "https://api.amctheatres.com/v1/movie/48196/cast-crew",
      "templated": false
    }
  }
}