curl --request GET \
--url https://api.themoviedb.org/3/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
}
This endpoint allows you to search for collections by their original, translated, and alternative names.
curl --request GET \
--url https://api.themoviedb.org/3/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
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Collection name you wish to query
"The Avengers"
defaults to false
"boolean"
defaults to en-US
"string"
defaults to 1
"int32"
"string"
search collection
The response is of type object
.