API key passed via request header. Either this or the api_key query parameter is required.
A point of interest to query with an optional radius search parameter in the format longitude,latitude[,radiusMeters]. Returns images representing diverse viewing angles of the specified point.
An area of interest to query in the format minLon,minLat,maxLon,maxLat.
WKT POLYGON to query. Converted to bounding box for search, but original polygon used for highlighting. Maximum bbox area: 1 km².
Image capture timestamp, expressed as an inclusive range [start, end], or as a single value. Format: Any valid JavaScript date format (e.g., "2023-01-01T00:00:00Z", "2023-01-01", "Jan 1, 2023"). By default, no filter is applied.
2023-01-01T00:00:00Z,2023-12-31T23:59:59ZInclude 'aoiPixelBounds' on each feature, locating the area of interest within the original image. Adds latency, as each image is projected.
falseURL to fetch the next page of results, if more exist.
The number of features in the response.
GET /developer-api/api/v1/image/multi-view HTTP/1.1
Host: world.spexi.com
x-api-key: YOUR_API_KEY
Accept: */*
{
"type": "FeatureCollection",
"features": [
{
"id": "text",
"type": "Feature",
"geometry": {
"type": "Polygon",
"coordinates": [
[]
]
},
"properties": {
"id": "text",
"key": "text",
"url": "https://example.com",
"captureType": "text",
"heading": 1,
"pitch": 1,
"roll": 1,
"altitude": 1,
"tag": "text",
"attributes": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"capturedAt": "text",
"processedAt": "text",
"cameraPosition": {
"type": "Point",
"coordinates": null
},
"distance": 1,
"aoiPixelBounds": null,
"aoiPixelBoundsUnavailable": true
},
"links": [
{
"rel": "text",
"href": "https://example.com",
"type": "text",
"title": "text"
}
]
}
],
"next": "https://example.com",
"numberReturned": 1
}Last updated