> For the complete documentation index, see [llms.txt](https://learn.spexi.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://learn.spexi.com/api-reference/coverage-api/zone-details.md).

# GET Zone details

## Get zone details

> Returns detailed information about a specific zone (H3 cell), including available capture types and mission dates. Pass ?entitled=true to return only data the authenticated user is entitled to.

```json
{"openapi":"3.0.3","info":{"title":"Spexi Developer API","version":"1.0.0"},"servers":[{"url":"https://world.spexi.com","description":"Production"}],"security":[{"ApiKeyHeader":[]},{"ApiKeyQuery":[]}],"components":{"securitySchemes":{"ApiKeyHeader":{"type":"apiKey","in":"header","name":"x-api-key","description":"API key passed via request header. Either this or the `api_key` query parameter is required."},"ApiKeyQuery":{"type":"apiKey","in":"query","name":"api_key","description":"API key passed as a query parameter. Either this or the `x-api-key` header is required."}},"schemas":{"ZoneDetailResponse":{"type":"object","properties":{"h3Id":{"type":"string","description":"H3 cell identifier"},"captureTypes":{"type":"array","items":{"type":"string","enum":["panorama","orthomosaic","image"]},"description":"Capture types available in this cell"},"missions":{"type":"array","items":{"type":"object","properties":{"missionId":{"type":"number","description":"Mission ID"},"captureTypes":{"type":"array","items":{"type":"string","enum":["panorama","orthomosaic","image"]},"description":"Capture types in this mission"},"captureDate":{"type":"string","format":"date-time","description":"When the mission was executed"}},"required":["missionId","captureTypes","captureDate"]},"description":"Missions within this zone"},"latestCapture":{"type":"string","format":"date-time","nullable":true,"description":"Most recent capture date"},"missionCount":{"type":"integer","description":"Total number of missions"},"previewUrl":{"type":"string","nullable":true,"description":"Relative URL path for preview image"}},"required":["h3Id","captureTypes","missions","latestCapture","missionCount"]}}},"paths":{"/developer-api/coverage-map/zone/{h3Id}":{"get":{"description":"Returns detailed information about a specific zone (H3 cell), including available capture types and mission dates. Pass ?entitled=true to return only data the authenticated user is entitled to.","operationId":"CoverageController_getZoneDetail","parameters":[{"name":"h3Id","required":true,"in":"path","description":"H3 cell identifier (zone hash)","schema":{"pattern":"^[0-9a-fA-F]+$","type":"string"}},{"name":"captureTypes","required":false,"in":"query","description":"Comma-separated list of capture types to filter by. Valid values: panorama, orthomosaic, image. Unrecognized values are ignored. Example: panorama,orthomosaic","schema":{"type":"string"}},{"name":"startDate","required":false,"in":"query","description":"Inclusive lower bound on capture date (ISO 8601). Coverage captured before this is excluded. Example: 2024-01-01T00:00:00.000Z","schema":{"format":"date-time","type":"string"}},{"name":"endDate","required":false,"in":"query","description":"Inclusive upper bound on capture date (ISO 8601). Coverage captured after this is excluded. Example: 2024-12-31T23:59:59.000Z","schema":{"format":"date-time","type":"string"}},{"name":"entitled","required":false,"in":"query","description":"Filter by user entitlements (requires auth)","schema":{"default":false,"type":"boolean"}}],"responses":{"200":{"description":"Zone details","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ZoneDetailResponse"}}}},"401":{"description":"Unauthorized - entitled=true requires authentication"},"404":{"description":"Zone not found"}},"summary":"Get zone details","tags":["Coverage"]}}}}
```
