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.
Nu găsiți un film sau un serial? Autentificați-vă pentru a-l crea.
Doriți să evaluați sau să adăugați acest articol într-o listă?
Nu sunteți membru?
Răspuns de superboy97
pe data de 13 ianuarie 2022 la ora 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.
Răspuns de melihonline
pe data de 13 ianuarie 2022 la ora 5:09 AM
Can you give an example?
Also, can we search for collections by ID number?
Răspuns de superboy97
pe data de 13 ianuarie 2022 la ora 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.
Răspuns de Wiccio
pe data de 10 mai 2024 la ora 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?
Răspuns de superboy97
pe data de 10 mai 2024 la ora 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.
Răspuns de Wiccio
pe data de 10 mai 2024 la ora 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! ;-)