Get closest assets to a list of geometries

This endpoint takes a layer name and a list of geometries in GeoJSON format, then returns the closest asset UUID for each geometry.

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

Example of query geometries in GeoJSON format:
{ "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "coordinates": [ -97.1537, 49.9027 ], "type": "Point" } }, { "type": "Feature", "properties": {}, "geometry": { "coordinates": [ -97.0141, 49.9002 ], "type": "Point" } } ] }

The result is a GeoJSON containing the location of the closest assets to each geometry with the name of layer, UUID, and query point in the properties of assets. Example:

{ "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "layer": "Panorama:SS_Winnipeg_2025", "uuid": "5726b4ae940211f0868402c2cf9eab5f", "query_point": [ -97.1537, 49.9027 ] }, "geometry": { "type": "Point", "coordinates": [ -97.1537, 49.9026 ] } }, { "type": "Feature", "properties": { "layer": "Panorama:SS_Winnipeg_2025", "uuid": "fca74f38773311f086980ebd45b4b023", "query_point": [ -97.0141, 49.9002 ] }, "geometry": { "type": "Point", "coordinates": [ -97.0136, 49.8999 ] } } ] }

Path Params
string
required

Name of the layer from which assets are returned

Body Params
string
required

A GeoJSON that contains a list of geometries

Language
Credentials
OAuth2
LoadingLoading…
Response
Click Try It! to start a request and see the response here!