Skip to main content
GET
https://api.calmyx.com
/
v2
/
listings
Get Active Listings
curl --request GET \
  --url https://api.calmyx.com/v2/listings \
  --header 'Authorization: <authorization>'
{
  "success": true,
  "listings": [
    {
      "listing_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "lat": 37.7749,
      "lng": -122.4194,
      "quiet_score": 72,
      "created_at": "2026-01-10T15:30:00.000Z",
      "updated_at": "2026-01-10T15:30:00.000Z"
    },
    {
      "listing_id": "b2c3d4e5-f6a7-8901-bcde-f23456789012",
      "lat": 34.0522,
      "lng": -118.2437,
      "quiet_score": 58,
      "created_at": "2026-01-09T12:00:00.000Z",
      "updated_at": "2026-01-09T12:00:00.000Z"
    }
  ],
  "total_count": 150,
  "page": 1,
  "page_size": 100,
  "total_pages": 2,
  "has_next": true,
  "has_prev": false
}

Overview

The Get Active Listings API returns a paginated list of all locations you have queried for Quiet Score™. Each listing represents a unique location that has been tracked as part of your subscription.
To obtain an API key, register for an account and subscribe to a plan.

Authorization

Authorization
string
required
Your API key for authentication

Query Parameters

page
integer
default:"1"
The page number for pagination (starts at 1)
page_size
integer
default:"100"
Number of listings per page (maximum 100)
sort_by
string
default:"created_at"
Field to sort by. Options: created_at, lat, lng, quiet_score
sort_order
string
default:"desc"
Sort order: asc (ascending) or desc (descending)
{
  "success": true,
  "listings": [
    {
      "listing_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "lat": 37.7749,
      "lng": -122.4194,
      "quiet_score": 72,
      "created_at": "2026-01-10T15:30:00.000Z",
      "updated_at": "2026-01-10T15:30:00.000Z"
    },
    {
      "listing_id": "b2c3d4e5-f6a7-8901-bcde-f23456789012",
      "lat": 34.0522,
      "lng": -118.2437,
      "quiet_score": 58,
      "created_at": "2026-01-09T12:00:00.000Z",
      "updated_at": "2026-01-09T12:00:00.000Z"
    }
  ],
  "total_count": 150,
  "page": 1,
  "page_size": 100,
  "total_pages": 2,
  "has_next": true,
  "has_prev": false
}

Response Fields

FieldTypeDescription
successbooleanWhether the request was successful
listingsarrayArray of listing objects
listings[].listing_idstringUnique identifier for the listing
listings[].latnumberLatitude coordinate
listings[].lngnumberLongitude coordinate
listings[].quiet_scorenumberQuiet Score™ for this location (0-100)
listings[].created_atstringISO 8601 timestamp when the listing was created
listings[].updated_atstringISO 8601 timestamp when the listing was last updated
total_countnumberTotal number of listings
pagenumberCurrent page number
page_sizenumberNumber of listings per page
total_pagesnumberTotal number of pages
has_nextbooleanWhether there are more pages
has_prevbooleanWhether there are previous pages

Use Cases

  • Portfolio management: View all locations you’ve queried for Quiet Score™
  • Export data: Retrieve listings for external processing or reporting
  • Monitoring: Track which locations are being analyzed