Skip to main content
GET
/
credit
/
{credit_id}
Details
curl --request GET \
  --url https://api.themoviedb.org/3/credit/{credit_id} \
  --header 'Authorization: Bearer <token>'
{
  "credit_type": "cast",
  "department": "Acting",
  "job": "Actor",
  "media": {
    "adult": false,
    "backdrop_path": "/uDgy6hyPd82kOHh6I95FLtLnj6p.jpg",
    "id": 100088,
    "name": "The Last of Us",
    "original_language": "en",
    "original_name": "The Last of Us",
    "overview": "Zwanzig Jahre nachdem die moderne Zivilisation zerstört wurde. – Joel, ein abgehärteter Überlebender, wird angeheuert, um Ellie, ein 14-jähriges Mädchen, aus einer bedrückenden Quarantänezone zu schmuggeln. Was als kleiner Job beginnt, wird bald zu einer brutalen, herzzerreißenden Reise, bei der die beiden die USA durchqueren müssen und aufeinander angewiesen sind, um zu überleben.",
    "poster_path": "/igwIPNClQpGVzb61QlGqcpT5zUy.jpg",
    "media_type": "tv",
    "genre_ids": [
      18
    ],
    "popularity": 898.378,
    "first_air_date": "2023-01-15",
    "vote_average": 8.749,
    "vote_count": 3341,
    "origin_country": [
      "US"
    ],
    "character": "Joel Miller",
    "episodes": [],
    "seasons": [
      {
        "air_date": "2023-01-15",
        "episode_count": 9,
        "id": 144593,
        "name": "Staffel 1",
        "overview": "Die 1. Staffel der Endzeit-Horrorserie The Last of Us feierte ihre Premiere am 15. Januar 2023 bei HBO. In Staffel 1 beginnt für den Überlebenden Joel und das Mädchen Ellie eine Reise durch das postapokalyptische Amerika, in dem Plünderer und mutierte Wesen ihnen nach dem Leben trachten.",
        "poster_path": "/aUQKIpZZ31KWbpdHMCmaV76u78T.jpg",
        "season_number": 1,
        "show_id": 100088
      }
    ]
  },
  "media_type": "tv",
  "id": "6024a814c0ae36003d59cc3c",
  "person": {
    "adult": false,
    "id": 1253360,
    "name": "Pedro Pascal",
    "original_name": "Pedro Pascal",
    "media_type": "person",
    "popularity": 106.095,
    "gender": 2,
    "known_for_department": "Acting",
    "profile_path": "/dBOrm29cr7NUrjiDQMTtrTyDpfy.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

The ID of the collection to retrieve

Response

200 - application/json

Successful

credit_type
string

Specifies the type of credit assigned to a person in a production.

department
string

Indicates the specific department in the production.

job
string

Represents the specific role or position held by a person.

media
object[]

Contains information about the media.

season
object[]

A list of seasons associated with a TV series.

media_type
string

Represents the types of media.

id
string

A unique identifier.

person
object

Details of an individual associated with the production.