Skip to main content
GET
/
movie
/
{movie_id}
/
credits
Credits
curl --request GET \
  --url https://api.themoviedb.org/3/movie/{movie_id}/credits \
  --header 'Authorization: Bearer <token>'
{
  "id": 550,
  "cast": [
    {
      "adult": false,
      "gender": 2,
      "id": 819,
      "known_for_department": "Acting",
      "name": "Edward Norton",
      "original_name": "Edward Norton",
      "popularity": 25.639,
      "profile_path": "/8nytsqL59SFJTVYVrN72k6qkGgJ.jpg",
      "cast_id": 4,
      "character": "Narrator",
      "credit_id": "52fe4250c3a36847f80149f3",
      "order": 0
    },
    {
      "adult": false,
      "gender": 2,
      "id": 287,
      "known_for_department": "Acting",
      "name": "Brad Pitt",
      "original_name": "Brad Pitt",
      "popularity": 69.957,
      "profile_path": "/4rjnRCQ6bGFYdBb4UooOjsQy12c.jpg",
      "cast_id": 5,
      "character": "Tyler Durden",
      "credit_id": "52fe4250c3a36847f80149f7",
      "order": 1
    },
    {
      "adult": false,
      "gender": 1,
      "id": 1283,
      "known_for_department": "Acting",
      "name": "Helena Bonham Carter",
      "original_name": "Helena Bonham Carter",
      "popularity": 37.958,
      "profile_path": "/hJMbNSPJ2PCahsP3rNEU39C8GWU.jpg",
      "cast_id": 285,
      "character": "Marla Singer",
      "credit_id": "631f0de8bd32090082733691",
      "order": 2
    },
    {
      "adult": false,
      "gender": 2,
      "id": 7470,
      "known_for_department": "Acting",
      "name": "Meat Loaf",
      "original_name": "Meat Loaf",
      "popularity": 7.469,
      "profile_path": "/7gKLR1u46OB8WJ6m06LemNBCMx6.jpg",
      "cast_id": 7,
      "character": "Robert Paulson",
      "credit_id": "52fe4250c3a36847f80149ff",
      "order": 3
    },
    {
      "adult": false,
      "gender": 2,
      "id": 7499,
      "known_for_department": "Acting",
      "name": "Jared Leto",
      "original_name": "Jared Leto",
      "popularity": 25.03,
      "profile_path": "/ca3x0OfIKbJppZh8S1Alx3GfUZO.jpg",
      "cast_id": 286,
      "character": "Angel Face",
      "credit_id": "631f0e29ce9e91007f757d86",
      "order": 4
    },
    {
      "adult": false,
      "gender": 2,
      "id": 7471,
      "known_for_department": "Acting",
      "name": "Zach Grenier",
      "original_name": "Zach Grenier",
      "popularity": 8.875,
      "profile_path": "/fSyQKZO39sUsqY283GXiScOg3Hi.jpg",
      "cast_id": 31,
      "character": "Richard Chesler (Regional Manager)",
      "credit_id": "52fe4250c3a36847f8014a55",
      "order": 5,
      "crew": [
        {
          "adult": false,
          "gender": 2,
          "id": 7764,
          "known_for_department": "Sound",
          "name": "Richard Hymns",
          "original_name": "Richard Hymns",
          "popularity": 3.637,
          "profile_path": "/970GjgH2nfqsnEsimqLvLYoYTQn.jpg",
          "credit_id": "52fe4250c3a36847f8014a41",
          "department": "Sound",
          "job": "Sound Editor"
        },
        {
          "adult": false,
          "gender": 2,
          "id": 7763,
          "known_for_department": "Sound",
          "name": "Ren Klyce",
          "original_name": "Ren Klyce",
          "popularity": 0.866,
          "profile_path": "/tMDHEVa05pe3od1NMpfplPVPnxD.jpg",
          "credit_id": "52fe4250c3a36847f8014a3b",
          "department": "Sound",
          "job": "Sound Editor"
        },
        {
          "adult": false,
          "gender": 2,
          "id": 7468,
          "known_for_department": "Writing",
          "name": "Chuck Palahniuk",
          "original_name": "Chuck Palahniuk",
          "popularity": 1.479,
          "profile_path": "/r8WZhWea6RXCNO7HXvvB4lWYxzu.jpg",
          "credit_id": "52fe4250c3a36847f8014a4d",
          "department": "Writing",
          "job": "Novel"
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

movie_id
integer
required

The ID of the movie

Query Parameters

language
string

Defaults to en-US

Response

200 - application/json

Successful

id
integer

A unique numerical identifier

cast
object[]

A collection of objects representing the actors who have appeared in the movie

crew
object[]

A list of objects representing the behind-the-scenes staff who contributed to the production of the movie