GET
/
credit
/
{credit_id}
curl --request GET \
  --url https://api.themoviedb.org/3/credit/%7B{credit_id}%7D \
  --header 'Authorization: Bearer <token>'
{
  "credit_type": "cast",
  "department": "Acting",
  "id": "61aecf46a242320089aafb19",
  "job": "Actor",
  "media": {
    "adult": false,
    "backdrop_path": "/3V4kLQg0kSqPLctI5ziYWabAZYF.jpg",
    "character": "Eddie Brock / Venom",
    "genre_ids": [
      28,
      878,
      12,
      53
    ],
    "id": 912649,
    "media_type": "movie",
    "original_language": "en",
    "original_title": "Venom: The Last Dance",
    "overview": "Eddie and Venom are on the run. Hunted by both of their worlds and with the net closing in, the duo are forced into a devastating decision that will bring the curtains down on Venom and Eddie's last dance.",
    "popularity": 7315.802,
    "poster_path": "/aosm8NMQ3UyoBVpSxyimorCQykC.jpg",
    "release_date": "2024-10-22",
    "title": "Venom: The Last Dance",
    "video": false,
    "vote_average": 6.776,
    "vote_count": 1604
  },
  "media_type": "movie",
  "person": {
    "adult": false,
    "gender": 2,
    "id": 2524,
    "known_for_department": "Acting",
    "media_type": "person",
    "name": "Tom Hardy",
    "original_name": "Tom Hardy",
    "popularity": 95.73,
    "profile_path": "/d81K0RH8UX7tZj49tZaQhZ9ewH.jpg"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

credit_id
string
required

Response

200 - application/json

Fetch credit details

The response is of type object.