Hi.
https://developers.themoviedb.org/3/search/search-collections
I get the collection code in this link.
https://api.themoviedb.org/3/search/collection?api_key="key"&language=en-US&query=9485&page=1
The final version of the link is like this. But it finds no results.
Não consegue encontrar um certo filme ou série? Inicie sessão e adicione-o.
Deseja classificar ou adicionar este item a uma lista?
Ainda não é um membro?
Resposta de superboy97
em 13 janeiro 2022 às 5:04 AM
This API query try to find a collection that include the "9485" text in its name.
If you want to find the collection "The Fast and the Furious Collection" which have the Id 9485, you need to put the name of the collection or a part of it (URI encoded) to search for it.
Or, if you want directly obtain the detail of this collection directly use the collection method with the Id, instead of the search collection.
Resposta de melihonline
em 13 janeiro 2022 às 5:09 AM
Can you give an example?
Also, can we search for collections by ID number?
Resposta de superboy97
em 13 janeiro 2022 às 5:12 AM
https://api.themoviedb.org/3/collection/9485?api_key="key"&language=en-US
No, you can't search for collections by ID number, as the main use of the search is to obtain the Id Number of the collection.
Resposta de Wiccio
em 10 maio 2024 às 4:07 AM
Thanks for your reply, @superboy97. I also have the same need as @melihonline. So, as of today, you confirm that there is no way to get collections in which a film is included by searching for the film ID?
Resposta de superboy97
em 10 maio 2024 às 4:19 AM
Why do you want to do a search if you already have the movie Id ?
The above discussion was about searching a collection with the collection Id.
As explained in this previous discussion, the collection it belongs to is directly available in the movie details.
Resposta de Wiccio
em 10 maio 2024 às 6:26 AM
Because I'm writing a bot for Wikidata, which cycles through all the film IDs in TMDb. Uh, thanks for this link and this information; I didn't realise that the collection ID is listed on the films page accessible via the API. In that case, I've solved it, thank you very much! ;-)