GET
/
3
/
search
/
collection
curl --request GET \
  --url https://api.themoviedb.org/3/search/collection \
  --header 'Authorization: Bearer <token>'
{
  "page": 1,
  "results": [
    {
      "adult": false,
      "backdrop_path": "/zuW6fOiusv4X9nnW3paHGfXcSll.jpg",
      "id": 86311,
      "name": "The Avengers Collection",
      "original_language": "en",
      "original_name": "The Avengers Collection",
      "overview": "A superhero film series produced by Marvel Studios based on the Marvel Comics superhero team of the same name, and part of the Marvel Cinematic Universe (MCU).  The series features an ensemble cast from the Marvel Cinematic Universe series films, as they join forces for the peacekeeping organization S.H.I.E.L.D. led by Nick Fury.",
      "poster_path": "/yFSIUVTCvgYrpalUktulvk3Gi5Y.jpg"
    }
  ],
  "total_pages": 1,
  "total_results": 1
}

Authorizations

Authorization
string
header
required

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

Query Parameters

query
string

This is the name of the movie collection.

Example:

"The avengers collection"

include_adult
enum<string>

This indicate whether the movie is an adult content.

Example:

false

language
string

Specifies the language in which the response should be returned.

Example:

"en-US"

page
integer

Indicates which page of results to return. Default is the first page (1).

Example:

1

region
string

This refers to the geographical area or market that is relevant for the query being made.

Response

200 - application/json
collection_id
page
number

This indicates the current page number of the results being displayed.

Example:

1

results
object[]

An array which provides detailed information about the movie collection.

Example:
[
  {
    "adult": false,
    "backdrop_path": "/zuW6fOiusv4X9nnW3paHGfXcSll.jpg",
    "id": 86311,
    "name": "The Avengers Collection",
    "original_language": "en",
    "original_name": "The Avengers Collection",
    "overview": "A superhero film series produced by Marvel Studios based on the Marvel Comics superhero team of the same name, and part of the Marvel Cinematic Universe (MCU).  The series features an ensemble cast from the Marvel Cinematic Universe series films, as they join forces for the peacekeeping organization S.H.I.E.L.D. led by Nick Fury.",
    "poster_path": "/yFSIUVTCvgYrpalUktulvk3Gi5Y.jpg"
  }
]
total_pages
number

This indicates the total number of pages available based on the current query.

Example:

1

total_results
number

This indicate the total number of results that match the query.

Example:

1