Check the status of an async Quiet Score™ calculation session
| Field | Type | Description |
|---|---|---|
status | string | Current status: QUEUED, PROCESSING, COMPLETED, or FAILED |
progress.total | integer | Total number of locations in the session |
progress.processed | integer | Number of locations processed so far |
progress.successful | integer | Number of successful calculations |
progress.failed | integer | Number of failed calculations |
results | array | Array of location results (see below) |
submitted_at | string | ISO 8601 timestamp when the session was created |
started_at | string | ISO 8601 timestamp when processing started (null if not started) |
completed_at | string | ISO 8601 timestamp when processing completed (null if not completed) |
results array contains:
| Field | Type | Description |
|---|---|---|
lat | number | Latitude of the location |
lng | number | Longitude of the location |
status | string | "success" |
quiet_score | integer | The calculated Quiet Score™ (0-100) |
listing_id | string | Unique identifier for the created listing |
analyzed_at | string | ISO 8601 timestamp when this location was processed |
| Field | Type | Description |
|---|---|---|
lat | number | Latitude of the location |
lng | number | Longitude of the location |
status | string | "failed" |
error | string | Error message explaining why this location failed |
analyzed_at | string | ISO 8601 timestamp when this location was processed |
| Error | Description |
|---|---|
Failed to calculate quietness score | Unable to calculate the Quiet Score™ for this location |
Listing limit reached | Your plan’s listing limit has been reached |
| Status | Description |
|---|---|
QUEUED | Session is queued and waiting to be processed |
PROCESSING | Session is currently being processed |
COMPLETED | All locations have been processed |
FAILED | Session processing failed |
status is COMPLETED or when progress.processed equals progress.totalcompleted_at field will be null until the session finishesresults array grows as locations are processed - you can see partial results while the session is still PROCESSINGlisting_id from successful results to query individual listings or delete them later