API key passed via request header. Either this or the api_key query parameter is required.
Bounding box to query, in format minLon,minLat,maxLon,maxLat. Provide at least one of bbox or point; if both are supplied, bbox is used. Example: -123.2,49.1,-122.9,49.3
Point to query, in format lon,lat. Provide at least one of bbox or point; ignored when bbox is also supplied. Example: -123.1,49.25
Comma-separated list of capture types to filter by. Valid values: panorama, orthomosaic, image. Unrecognized values are ignored. Example: panorama,orthomosaic
Inclusive lower bound on capture date (ISO 8601). Example: 2024-01-01T00:00:00.000Z
Inclusive upper bound on capture date (ISO 8601). Example: 2024-12-31T23:59:59.000Z
Maximum number of zones to return. Must be between 1 and 1000. The default is 100.
100Filter by user entitlements (requires auth)
falseCoverage query results
Number of zones returned after applying the query limit.
Invalid query: missing bbox/point, malformed bbox/point format, or coordinates out of range
Unauthorized - entitled=true requires authentication
GET /developer-api/coverage-map/query HTTP/1.1
Host: world.spexi.com
x-api-key: YOUR_API_KEY
Accept: */*
{
"zones": [
{
"h3Id": "text",
"captureTypes": [
"panorama"
],
"latestCapture": "2026-01-01T00:00:00.000Z",
"missionCount": 1
}
],
"total": 1
}Last updated