post
/api/v2/poi/summary
Python SDK method:
client.poi.summary(params).run()

Start POI summary job

Creates a job to generate a POI summary analysis. Aggregates vehicle stop statistics per point-of-interest location, providing counts, average dwell times, and vehicle class breakdowns.

Altitude Help Center — POI Location Specific Insights API

Request Body

POI analysis parameters.

application/json: object

NameTypeInput ShapeValuesDescriptionValue Required
dateFromstring--First date of the analysis range, formatted as yyyy-mm-dd.Y
dateTostring--Last date of the analysis range (inclusive), formatted as yyyy-mm-dd.Y
isMetricboolean-falsePOI Summary currently supports imperial units only. Set this to false.Y
locationIdsarray<string>--List of location ids returned from the locations endpointY
naicsLevel2array<integer (int64)>--NAICS Level-2 industry codes to include. An empty array includes all licensed industries.N
radiusnumber (double)--Capture radius around each POI in miles. POI Summary currently supports imperial units only. Vehicles stopping within this radius are attributed to the POI.Y

Examples

POI summary from discovered locations

Use the numeric id returned by the preceding POI Locations request.

{
  "dateFrom": "2026-01-01",
  "dateTo": "2026-01-31",
  "isMetric": false,
  "locationIds": [
    "-1003048895383462315"
  ],
  "naicsLevel2": [
    445,
    447
  ],
  "radius": 25
}

Success Responses

202 response: object

Job accepted and queued for processing. Poll the location header URL to check status.

NameTypeDescription
errorobjectDetails about why the job failed (RFC 7807 format), or null if it succeeded.
idstringUnique job identifier.
linksobjectNavigation URLs for polling and result retrieval.
statusstringCurrent job lifecycle state: PENDING, QUEUED, RUNNING, DONE, FAILED, CANCELED, or NOT_FOUND.

Response Errors

HTTP Status CodeReason
400The request body or parameters are invalid.
401Authentication is required or the provided credentials are invalid.
403The authenticated user lacks permission to perform this operation.
409The operation conflicts with the current state of the resource.
422The request is syntactically valid but semantically cannot be processed.
429The request rate limit has been exceeded.
500An unexpected server error occurred.