Create Session
Session
Create Session
Create an async session to calculate Quiet Score™ for large batches of locations
POST
Create Session
Overview
The Create Session API initiates an asynchronous session for processing large batches of locations. Perfect for enterprise workloads, bulk property analysis, or integrations that need to process many locations without blocking.To obtain an API key, register for an account and subscribe to a plan.
Authorization
Your API key for authentication
Request Body
Array of location objects to process. Each object must contain
lat (float) and lng (float) coordinates.Request Structure
| Field | Type | Required | Description |
|---|---|---|---|
locations | array | Yes | Array of location objects |
locations[].lat | float | Yes | Latitude coordinate of the location |
locations[].lng | float | Yes | Longitude coordinate of the location |
Response Fields
| Field | Type | Description |
|---|---|---|
session_id | string | Unique identifier for the session |
total_locations | integer | Total number of locations submitted |
submitted_at | string | ISO 8601 timestamp when the session was created |
Notes
- Use the returned
session_idto check processing status via the Session Status endpoint - Sessions are processed asynchronously — your application can continue without waiting
- Maximum of 500 locations per session
- Each location must have valid
latandlngproperties in decimal degrees format - Quiet Score™ results are stored and can be retrieved once processing completes