Skip to main content

Querying Results

List Collections

https://api.planet.com/analytics/collections

Returns all result collections from your active subscriptions. Each collection contains the output from running an analytic feed over a subscription's defined area and time period.

Example: List Collections

curl "https://api.planet.com/analytics/collections" \
-H "Authorization: api-key $PL_API_KEY"

Response Properties

Each collection includes the following properties:

FieldDescriptionExample
createdUTC timestamp when the collection was created2019-03-08T18:11:57.488Z
descriptionHuman-readable description of the collectionBuilding Detection in New Cairo
idUUID for the collection1ce86055-cad0-4960-bdf3-32763c17f19b
titleHuman-readable title of the collectionNew Cairo Buildings
linksHATEOAS links to the collection, its items, and collections endpointSee example below
[
{
"href": "https://api.planet.com/analytics/collections/0c400b73-17e9-43be-884a-c30851d79ca3",
"rel": "self"
},
{
"href": "https://api.planet.com/analytics/collections/0c400b73-17e9-43be-884a-c30851d79ca3/items",
"rel": "items"
},
{
"href": "https://api.planet.com/analytics/collections",
"rel": "collections"
}
]

Query Collection Results

https://api.planet.com/analytics/collections/{collection_id}/items

Example

curl https://api.planet.com/analytics/collections/$SUBSCRIPTION_ID/items \
-H "Authorization: api-key $PL_API_KEY"

Response structure depends on the analytic feed type. Each feed returns specific metadata fields as described below.


Vessel Detection

Returns GeoJSON features representing individual detected vessels with bounding box coordinates and vessel-specific metadata.

Key Fields

FieldDescriptionExample
geometryGeoJSON polygon defining the vessel's bounding box{"type": "Polygon", "coordinates": [...]}
idUnique identifier (UUID)17f21835-93c4-4664-b2ef-c2f57f5809a5
angleMathematical angle of the vessel bounding box (0-180°)106.7
area_m2Area of the bounding box in square meters2543.2
bunkeredWhether vessel is engaged in ship-to-ship transfer (Enhanced Vessel Detection only)false
headingEstimated heading direction (0-360°)162
length_mEstimated vessel length in meters113.79
width_mEstimated vessel width in meters22.35
object_class_labelVessel classification (Enhanced Vessel Detection only)"tanker"
scoreDetection confidence (0-1, higher = greater certainty)0.943
source_item_idSource imagery item ID"20251016_072148_62_2507"
observedUTC timestamp when vessel was observed"2025-10-16T07:21:48.627212Z"

See the full Vessel Detection metadata reference for all available fields.


Aircraft Detection

Returns GeoJSON features representing individual detected aircraft with bounding box coordinates and aircraft-specific metadata.

Key Fields

FieldDescriptionExample
geometryGeoJSON polygon defining the aircraft's bounding box{"type": "Polygon", "coordinates": [...]}
idUnique identifier (UUID)17f21835-93c4-4664-b2ef-c2f57f5809a5
bbox_area_m2Area of the bounding box in square meters1292.76
bbox_diagonal_mDiagonal length of the bounding box in meters51.09
bbox_length_mEstimated aircraft length in meters38.55
bbox_width_mEstimated aircraft width in meters33.53
scoreDetection confidence (0-1, higher = greater certainty)0.805
source_item_idSource imagery item ID"20260209_080938_54_24fd"
observedUTC timestamp when aircraft was observed"2026-02-09T08:09:38.541005Z"

See the full Aircraft Detection metadata reference for all available fields.


Building Detection (Raster)

Returns raster GeoTIFF outputs for mosaic quads where building detection was performed. Results reference both source and target quads.

Key Fields

FieldDescriptionExample
geometryGeoJSON polygon defining the quad's spatial extent{"type": "Polygon", "coordinates": [...]}
idResult identifier (UUID)50e7d65b-9ec6-4ec1-8f46-c80bcbfffb2b
links.target-quadDownload link for the detection GeoTIFFLink to two-band raster
links.source-quadDownload link for the source imagery quadLink to source GeoTIFF
observedUTC timestamp when source imagery was captured2019-03-20T07:57:18.186039Z
source_mosaic_nameSource mosaic identifier for WMTS queriesglobal_monthly_2018_07_mosaic
source_quad_idX-Y tile identifier of the source quad434-1216
target_mosaic_nameResult mosaic identifier (format: sif-{feed_id}-{date})sif-b8ee0ab1-4500-485d-80b1-a24d92ee4cd5-2018-07-01

GeoTIFF Structure:

  • Band 1 (Detection mask): Binary mask where 0 = no building detected, 255 = building detected
  • Band 2 (Alpha channel): Validity mask where 255 = valid pixel, 0 = invalid pixel

Road Detection (Raster)

Returns raster GeoTIFF outputs for mosaic quads where road detection was performed. Results reference both source and target quads.

Key Fields

FieldDescriptionExample
geometryGeoJSON polygon defining the quad's spatial extent{"type": "Polygon", "coordinates": [...]}
idResult identifier (UUID)50e7d65b-9ec6-4ec1-8f46-c80bcbfffb2b
links.target-quadDownload link for the detection GeoTIFFLink to two-band raster
links.source-quadDownload link for the source imagery quadLink to source GeoTIFF
observedUTC timestamp when source imagery was captured2019-03-20T07:57:18.186039Z
source_mosaic_nameSource mosaic identifier for WMTS queriesglobal_monthly_2018_07_mosaic
source_quad_idX-Y tile identifier of the source quad434-1216
target_mosaic_nameResult mosaic identifier (format: sif-{feed_id}-{date})sif-b8ee0ab1-4500-485d-80b1-a24d92ee4cd5-2018-07-01

GeoTIFF Structure:

  • Band 1 (Detection mask): Binary mask where 0 = no road detected, 255 = road detected
  • Band 2 (Alpha channel): Validity mask where 255 = valid pixel, 0 = invalid pixel

Building Change Detection (Vector)

Returns GeoJSON features representing newly constructed buildings detected through temporal analysis. Each feature contains an aggregation of 8x8 pixel grid cells ("change cells") where building development was detected.

Key Fields

FieldDescriptionExample
geometryGeoJSON polygon of the change cell area{"type": "Polygon", "coordinates": [...]}
idUnique identifier (UUID)17f21835-93c4-4664-b2ef-c2f57f5809a5
class_labelClassification label"building"
change_directionDirection of change"positive"
dateEnd date when change was detected"2026-02-02T00:00:00Z"
observedStart date of observation period"2026-01-26T00:00:00Z"
object_area_m2Area of detected change in square meters461.04
scoreDetection confidence (0.5-1.0, higher = greater certainty)0.594
source_mosaic_nameSource mosaic used for detectionrnb_weekly_v2_2026_01_26_2026_02_02
source_quad_idX-Y identifier of the source quad1140-1295
visual_mosaic_nameVisual mosaic for imagery displayps_weekly_visual_subscription_...

See the full Road & Building Change Detection metadata reference for all available fields.


Road Change Detection (Vector)

Returns GeoJSON features representing newly constructed roads detected through temporal analysis. Each feature contains an aggregation of 8x8 pixel grid cells ("change cells") where road development was detected.

Key Fields

FieldDescriptionExample
geometryGeoJSON polygon of the change cell area{"type": "Polygon", "coordinates": [...]}
idUnique identifier (UUID)17f21835-93c4-4664-b2ef-c2f57f5809a5
class_labelClassification label"road"
change_directionDirection of change"positive"
dateEnd date when change was detected"2026-02-02T00:00:00Z"
observedStart date of observation period"2026-01-26T00:00:00Z"
object_area_m2Area of detected change in square meters461.04
scoreDetection confidence (0.5-1.0, higher = greater certainty)0.594
source_mosaic_nameSource mosaic used for detectionrnb_weekly_v2_2026_01_26_2026_02_02
source_quad_idX-Y identifier of the source quad1140-1295
visual_mosaic_nameVisual mosaic for imagery displayps_weekly_visual_subscription_...

See the full Road & Building Change Detection metadata reference for all available fields.