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": "/zZDkgOmFMVYpGAkR9Tkxw0CRnxX.jpg",
      "id": 10,
      "name": "Star Wars Collection",
      "original_language": "en",
      "original_name": "Star Wars Collection",
      "overview": "An epic space-opera theatrical film series, which depicts the adventures of various characters \"a long time ago in a galaxy far, far away….\"",
      "poster_path": "/22dj38IckjzEEUZwN1tPU5VJ1qq.jpg"
    },
    {
      "adult": false,
      "backdrop_path": "/zU0W0VRF0ZkN8CvjW4LGw0oSyTa.jpg",
      "id": 302331,
      "name": "LEGO Star Wars Collection",
      "original_language": "en",
      "original_name": "LEGO Star Wars Collection",
      "overview": "A set of animated LEGO movies based on the Star Wars universe.",
      "poster_path": "/sHlgKW5hlQvwJseJkmnkSmL3YDI.jpg"
    },
    {
      "adult": false,
      "backdrop_path": "/8tsHvfkppzqBjz30EbUKYflLN8I.jpg",
      "id": 1201923,
      "name": "Star Wars Droids Collection",
      "original_language": "it",
      "original_name": "Star Wars Droids Collection",
      "overview": "Collection that collects the animated films of the animated series \"Star Wars Droids Adventures\". After being abandoned by their smuggler master, C-3PO and R2-D2 become the property of several new masters with whom they face gangsters, criminals, pirates, bounty hunters, the Galactic Empire and other threats, finding themselves in various difficult situations . The series is structured in three narrative arcs; the droids meet new masters at the beginning of each and are forced to be alone again at the end.",
      "poster_path": "/fPSiEGkvYOwX0XuD288ueQ7ht49.jpg"
    },
    {
      "adult": false,
      "backdrop_path": null,
      "id": 141748,
      "name": "Robot Chicken - Star Wars Collection",
      "original_language": "en",
      "original_name": "Robot Chicken - Star Wars Collection",
      "overview": "A series of Robot Chicken TV films parodying the Star Wars films.",
      "poster_path": "/m6tP4z5IIk8lIsBTpXu5H0B8hO3.jpg"
    },
    {
      "adult": false,
      "backdrop_path": "/cVYUqWzzUSrkLQwb4jlWAkaFCAX.jpg",
      "id": 1004630,
      "name": "LEGO Star Wars (Seasonal) Collection",
      "original_language": "en",
      "original_name": "LEGO Star Wars (Seasonal) Collection",
      "overview": "A collection of LEGO Stars Wars seasonal specials released on Disney+.",
      "poster_path": "/jHITUzB6fZVOYZ13YCqVTS06iyw.jpg"
    },
    {
      "adult": false,
      "backdrop_path": "/VXwSW7UGuNScCTy5V5H9pgioir.jpg",
      "id": 133830,
      "name": "Star Wars: The Ewok Adventures Collection",
      "original_language": "en",
      "original_name": "Star Wars: The Ewok Adventures Collection",
      "overview": "The Ewok Adventures is a 1984 American made-for-TV film duology based in the Star Wars setting. It was released theatrically in Europe as Caravan of Courage: An Ewok Adventure, and is known by that title today. The film focuses on the struggles of a brother and sister, stranded on the forest moon of Endor, in locating their parents, who have been kidnapped by a monster known as the Gorax. The film is set sometime between the fifth and sixth episodes of the Star Wars saga. It is the first of two spin-off films featuring the Ewoks from Star Wars Episode VI: Return of the Jedi. A sequel to this movie released in 1985. While the sequel's working title was simply Ewoks II, it was released as Ewoks: The Battle for Endor.",
      "poster_path": "/vSrIbcWQJ3IL0R5DoWLh0c7HMTz.jpg"
    },
    {
      "adult": false,
      "backdrop_path": null,
      "id": 423877,
      "name": "The Man Who Saved the World Collection",
      "original_language": "en",
      "original_name": "Dünyayı Kurtaran Adam Koleksiyonu",
      "overview": "Dünyayı Kurtaran Adam (The Man Who Saved the World) and Dünyayi Kurtaran Adam'in Oglu (The Son of the Man who Saved the World) is a series of Turkish adventure films also known as Turkish Star Wars because of its notorious use of unauthorized footage from Star Wars and other movies worked into the film.",
      "poster_path": null
    }
  ],
  "total_pages": 1,
  "total_results": 10
}

Authorizations

Authorization
string
header
required

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

Query Parameters

query
string

This represents the name of the collection you want to retrieve.

Example:

"Star wars"

include_adult
string

This specifies if adult rated collection should be retrieved.

Example:

"false"

language
string

This represents the languge.

Example:

"en"

string

This represents the name of the collection you want to retrieve.

Response

200 - application/json

Collection

The response is of type object.