Getting Image Ownership Metadata

Hello,

I show mapillary images on my application and was wondering how to get the image owner via the V4 API.

Thanks,

Stuart

At this point the API does not have such information. However, the endpoint used by web app (graph.mapillary.com/graphql) has fields such as quality_score, owner and creator. Querying that endpoint may require some extra fiddling though.

This query gives pretty much all metadata. Just replace ACCESS_TOKEN and IMAGE_ID.

https://graph.mapillary.com/graphql?access_token=[ACCESS_TOKEN]&doc=query%20FetchImages(%24imageIds%3A%20%5BID!%5D)%20%7B%0A%20%20%20%20multifetch__MapImage(ids%3A%20%24imageIds)%20%7B%0A%20%20%20%20%20%20%20%20node%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20computed_geometry%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20coordinates%0A%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20geometry%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20coordinates%0A%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20id%0A%20%20%20%20%20%20%20%20%20%20%20%20sequence%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20id%0A%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20altitude%0A%20%20%20%20%20%20%20%20%20%20%20%20atomic_scale%0A%20%20%20%20%20%20%20%20%20%20%20%20camera_parameters%0A%20%20%20%20%20%20%20%20%20%20%20%20camera_type%0A%20%20%20%20%20%20%20%20%20%20%20%20captured_at%0A%20%20%20%20%20%20%20%20%20%20%20%20compass_angle%0A%20%20%20%20%20%20%20%20%20%20%20%20computed_altitude%0A%20%20%20%20%20%20%20%20%20%20%20%20computed_compass_angle%0A%20%20%20%20%20%20%20%20%20%20%20%20computed_rotation%0A%20%20%20%20%20%20%20%20%20%20%20%20creator%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20id%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20username%0A%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20exif_orientation%0A%20%20%20%20%20%20%20%20%20%20%20%20height%0A%20%20%20%20%20%20%20%20%20%20%20%20id%0A%20%20%20%20%20%20%20%20%20%20%20%20merge_cc%0A%20%20%20%20%20%20%20%20%20%20%20%20mesh%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20id%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20url%0A%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20owner%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20id%0A%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20quality_score%0A%20%20%20%20%20%20%20%20%20%20%20%20sfm_cluster%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20id%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20url%0A%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20thumb(size%3ASIZE_2048)%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20id%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20url%0A%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20width%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20node_id%0A%20%20%20%20%7D%0A%7D&variables=%7B%0A%20%20%20%20%22imageIds%22%3A%20%5B%0A%20%20%20%20%20%20%20%20[IMAGE_ID]%0A%20%20%20%20%5D%0A%7D