GET
/
3
/
collection
/
{collection_id}
curl --request GET \
  --url https://api.themoviedb.org/3/collection/{collection_id} \
  --header 'Authorization: Bearer <token>'
{
  "backdrop_path": "/zJU3dyafiEPdH29h7NKJGj7u7cu.jpg",
  "id": 456,
  "name": "Sissi Collection",
  "overview": "Sissi is a trilogy of 1950 films starring Romy Schneider and Karlheinz Böhm and is part of the classic German-Austrian film history and some of the most successful German language films in box-office history.",
  "parts": [
    {
      "adult": false,
      "backdrop_path": "/rKs8y5WlXcYX5GCbDkXcXybGteZ.jpg",
      "genre_ids": [
        35,
        18,
        10749
      ],
      "id": 457,
      "media_type": "movie",
      "original_language": "de",
      "original_title": "Sissi",
      "overview": "The young Bavarian princess Elisabeth, who all call Sissi, goes with her mother and older sister Néné to Austria where Néné will be wed to an emperor named Franz Joseph, Yet unexpectedly Franz runs into Sissi while out fishing and they fall in love.",
      "popularity": 22.843,
      "poster_path": "/iGy9j4AdhkiOYRYeTSpq7g3zayL.jpg",
      "release_date": "1955-12-22",
      "title": "Sissi",
      "video": false,
      "vote_average": 7.4,
      "vote_count": 473
    },
    {
      "adult": false,
      "backdrop_path": "/xvcqme7lPw7nXNIQU71z11bbWRd.jpg",
      "genre_ids": [
        18,
        35,
        10749
      ],
      "id": 458,
      "media_type": "movie",
      "original_language": "de",
      "original_title": "Sissi - Die junge Kaiserin",
      "overview": "Sissi is now the empress of Austria and attempts to learn etiquette. While she is busy being empress she also has to deal with her difficult new mother-in-law, while the arch-duchess Sophie is trying to tell the emperor how to rule and also Sissi how to be a mother.",
      "popularity": 20.771,
      "poster_path": "/rKEm4jFjRAwfWvbUicj4zKzmlW3.jpg",
      "release_date": "1956-12-01",
      "title": "Sissi: The Young Empress",
      "video": false,
      "vote_average": 7.2,
      "vote_count": 341
    },
    {
      "adult": false,
      "backdrop_path": "/5WuvIg4f2AdFPLUADFjxexVAb2H.jpg",
      "genre_ids": [
        10749,
        18,
        36
      ],
      "id": 459,
      "media_type": "movie",
      "original_language": "de",
      "original_title": "Sissi - Schicksalsjahre einer Kaiserin",
      "overview": "After a wonderful time in Hungary Sissi falls extremely ill and must retreat to a Mediterranean climate to rest. The young empress’ mother takes her from Austria to recover in Madeira.",
      "popularity": 13.435,
      "poster_path": "/6LQaN8KGQcakpRHkGac2FqWfLxQ.jpg",
      "release_date": "1957-12-18",
      "title": "Sissi: The Fateful Years of an Empress",
      "video": false,
      "vote_average": 7.2,
      "vote_count": 331
    }
  ],
  "poster_path": "/rTMRGUPwmhiBXsF38hwYhc1sInK.jpg"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

collection_id
integer
required

a uniques identfier for a movie or tv collection

Example:

456

Query Parameters

language
string
default:en-US

The language in which to retrieve movie details, specified using an ISO 639-1 code (e.g., "en" for English, "fr" for French).

Response

200 - application/json

Details

The response is of type object.