0

I am trying to integrate Unsplash API in my android app. Could anyone please let me know if the API supports location where the image has taken (geotagging)? It is available only for a few images as far as I understand. Is it possible to get it for those images which have geotagging?

Regards, Smitha

Phantômaxx
  • 37,901
  • 21
  • 84
  • 115

1 Answers1

2

Yes, It gives you both image location (where the image was taken) and the user location (where the photographer is)

See get-a-photo API doc. As you see in the doc, sometimes location might be nullable.

Saeed Masoumi
  • 8,746
  • 7
  • 57
  • 76
  • Thanks for the answer Saeed Masoumi I have one more question. I am using search with a keyword to get a bunch of photos. Is it possible to get the location of each photo with just search query or should I take the photo id of each photo and then get its location. – Smitha Mohan Oct 08 '18 at 02:14
  • @SmithaMohan It's not possible you must take the photo id of each photo and then get its location in a separate call – Saeed Masoumi Oct 08 '18 at 07:28