Reputation: 697
I understand that I can search by tag so I can find all photos that have been tagged to contain the term "dog" for example, but is there a way to get the photo and all its related tags (dog,puppy,backyard,etc.)?
Upvotes: 3
Views: 1922
Reputation: 18556
If you use the endpoint GET /photos/:id
you are able to retrieve the categories
of the photo.
"categories": [
{
"id": 4,
"title": "Nature",
"photo_count": 24783,
"links": {
"self": "https://api.unsplash.com/categories/4",
"photos": "https://api.unsplash.com/categories/4/photos"
}
},
// and so on
],
Upvotes: 3