Download OpenAPI specification:Download
Welcome to the All-New AirDNA API!
The AirDNA API provides direct access to our industry-leading data & analytics. Whether you’re looking to discover a property’s earning potential, compare markets side by side, or run comps to inform your revenue management strategy, you can do so with the endpoints found here.
The AirDNA API is divided into four packages, each with their own value and use cases:
For more information on our API and its use cases, Contact Sales to get started with an API Key.
All requests to AirDNA's APIs require an Authorization HTTP header with a Bearer token.
For example, if your API Key is a1b2c3d4e5f6g7h8i9j0k1l2
, then your Authorization
header will be:
Authorization: "Bearer a1b2c3d4e5f6g7h8i9j0k1l2"
The following example uses cURL
to demonstrate how to perform a successful request. This assumes:
curl -i -X POST \
https://api.airdna.co/api/enterprise/v2/market/search \
-H 'Authorization: Bearer a1b2c3d4e5f6g7h8i9j0k1l2' \
-H 'Content-Type: application/json' \
-d '{
"search_term": "Denver",
"pagination": {
"page_size": 1,
"offset": 0
}
}'
200
{
"payload": {
"page_info": {
"page_size": 1,
"offset": 0
},
"results": [
{
"id": "airdna-163",
"name": "Denver",
"type": "market",
"listing_count": 15231,
"location_name": "Denver, Colorado, United States, US",
"location": {
"state": "Colorado",
"country": "United States",
"country_code": "us"
},
"legacy_location": {
"city_names": [],
"zipcodes": [],
"neighborhoods": []
}
}
]
},
"status": {
"type": "success",
"response_id": "API-S-011",
"message": "Successfully fetched 1 Market for the requested parameters."
}
}
The following example uses cURL
to demonstrate what happens if you provide an invalid token.
curl -i -X POST \
https://api.airdna.co/api/enterprise/v2/market/search \
-H 'Authorization: Bearer invalidToken' \
-H 'Content-Type: application/json' \
-d '{
"search_term": "Denver",
"pagination": {
"page_size": 1,
"offset": 0
}
}'
401
{
"error": {
"type": "invalid_credentials",
"message": "Unauthorized"
}
}
The following example uses cURL
to demonstrate what happens if you omit a token.
curl -i -X POST \
https://api.airdna.co/api/enterprise/v2/market/search \
-H 'Content-Type: application/json' \
-d '{
"search_term": "Denver",
"pagination": {
"page_size": 1,
"offset": 0
}
}'
401
{
"error": {
"type": "invalid_credentials",
"message": "Authorization token is missing"
}
}
Filtering is an essential feature to help you obtain data that is relevant to your business needs.
In the following sections, we will explain the do's and don'ts of filtering, and you'll also find a list of available filters that can be used to refine your queries.
⚠️ Notice
- Filters are not required for every data scenario, but we encourage using them when available.
- To use one or more filters on a supported endpoint, you will need to send an
array
of supported Filter Objects.- The order of the filters does not matter.
The Filter Object is how you will use filters with supported endpoints.
The following table describes each of the required properties for any Filter Object.
Property | Data Type(s) | Description |
---|---|---|
"field" |
"string" |
The data attribute that you want to filter on. |
"type" |
"string" |
The type of filter that you want to apply.
|
"value" |
|
The value(s) for the field that you want to filter on. |
⚠️ Notice
- Each Property described in the table is required
- The supported values for
"type"
and"value"
will depend on the"field"
you are filtering on.
If you only need to use a single filter in your query, you can simply add it to the filters
array.
In the following example, we use the filters
array to retrieve a dataset where the Listings can accommodate a minimum
of 8
people.
{
"filters": [
{
"type": "gte"
"field": "accommodates",
"value": 8
}
]
}
⚠️ Notice
Filters must be sent from the
filters
property via anarray
.
Some examples of how you might use this example filter:
The ability to combine multiple filters is a key element that allows you to obtain data that meets your specific Business needs.
⚠️ Notice
- Each
field
can only have one filter applied in any given query.
In the following example, we filter data where the Listings' bedrooms
have a minimum=2
and maximum=6
.
Instead of trying to use both gte
and lte
filters, you can instead use the range
filter.
Applying multiple filters on the same field
is unsupported.
{
"filters": [
{
"type": "gte"
"field": "bedrooms",
"value": 2
},
{
"type": "lte"
"field": "bedrooms",
"value": 6
}
]
}
The supported way of using both gte
and lte
filtering is to use the range
filter.
{
"filters": [
{
"type": "range"
"field": "bedrooms",
"value": [2, 6]
}
]
}
There may be some circumstances where you want each field
to match an exact value. For this purpose, we have the select
filter.
In the following example, we filter data where Listings have exactly 2
bedrooms AND accommodates 4
people.
{
"filters": [
{
"type": "select"
"field": "bedrooms",
"value": 2
},
{
"type": "select"
"field": "accommodates",
"value": 4
}
]
}
You may also want to filter data where each field
matches one or more values. For this purpose, we have the multi_select
filter.
In the following example, we filter data where Listings can accommodate exactly 4
people, AND that the data belongs to two distinct markets ("airdna-163"
and "airdna-414"
).
{
"filters": [
{
"type": "select"
"field": "accommodates",
"value": 4
},
{
"type": "multi_select"
"field": "market_id",
"value": ["airdna-163", "airdna-414"]
}
]
}
Use this filter to only include results where the market's investability
score matches the requested parameters.
Filter the field
by numerical data. Used for numeric comparison operations.
type required | string Numeric Equality Filter type
| |||||||||||||||
field required | string Field to filter on (i.e. "investability"). | |||||||||||||||
value required | number [ 0 .. 100 ] Filter value. Must be a single |
{- "type": "gte",
- "field": "investability",
- "value": 60
}
Use this to filter results where the market's total active listing_count
matches the requested parameters.
Filter the field
by numerical data. Used for numeric comparison operations.
type required | string Numeric Equality Filter type
| |||||||||||||||
field required | string Field to filter on (i.e. "listing_count"). | |||||||||||||||
value required | number >= 0 Filter value. Must be a single |
{- "type": "gte",
- "field": "listing_count",
- "value": 3000
}
Use this filter to only include results that belong to the provided market(s).
Filter the field
to a specific single value. Used for ==
operations.
type required | string Filter type (i.e. "select"). |
field required | string Field to filter on (i.e. "market_id"). |
value required | string Filter value. Must be a |
{- "type": "select",
- "field": "market_id",
- "value": "airdna-163"
}
Use this filter to only include results where the market_type
matches the requested types.
Filter the field
to a specific single value. Used for ==
operations.
type required | string Filter type (i.e. "select"). |
field required | string Field to filter on (i.e. "market_type"). |
value required | string Filter value. Must be a |
{- "type": "select",
- "field": "market_type",
- "value": "urban_metro"
}
Use this filter to only include results where the market's regulation
score matches the requested parameters.
Filter the field
by numerical data. Used for numeric comparison operations.
type required | string Numeric Equality Filter type
| |||||||||||||||
field required | string Field to filter on (i.e. "regulation"). | |||||||||||||||
value required | number [ 0 .. 100 ] Filter value. Must be a single |
{- "type": "gte",
- "field": "regulation",
- "value": 60
}
Use this filter to only include results where the market's rental_demand
score matches the requested parameters.
Filter the field
by numerical data. Used for numeric comparison operations.
type required | string Numeric Equality Filter type
| |||||||||||||||
field required | string Field to filter on (i.e. "rental_demand"). | |||||||||||||||
value required | number [ 0 .. 100 ] Filter value. Must be a single |
{- "type": "gte",
- "field": "rental_demand",
- "value": 70
}
Use this filter to only include results where the market's revenue_growth
score matches the requested parameters.
Filter the field
by numerical data. Used for numeric comparison operations.
type required | string Numeric Equality Filter type
| |||||||||||||||
field required | string Field to filter on (i.e. "revenue_growth"). | |||||||||||||||
value required | number [ 0 .. 100 ] Filter value. Must be a single |
{- "type": "gte",
- "field": "revenue_growth",
- "value": 60
}
Use this filter to only include results where the market's seasonality
score matches the requested parameters.
Filter the field
by numerical data. Used for numeric comparison operations.
type required | string Numeric Equality Filter type
| |||||||||||||||
field required | string Field to filter on (i.e. "seasonality"). | |||||||||||||||
value required | number [ 0 .. 100 ] Filter value. Must be a single |
{- "type": "gte",
- "field": "seasonality",
- "value": 60
}
Use this filter to only include results where the number of accommodates
(guests) matches the requested parameters.
Filter the field
by numerical data. Used for numeric comparison operations.
type required | string Numeric Equality Filter type
| |||||||||||||||
field required | string Field to filter on (i.e. "accommodates"). | |||||||||||||||
value required | number >= 0 Filter value. Must be a single |
{- "type": "gte",
- "field": "accommodates",
- "value": 4
}
Use this filter to include results where the Listings match the requested amenity filters.
type required | string Type of filter (i.e. "jsonb_boolean"). |
field required | string Field to filter on (i.e. "amenities"). |
required | object Key-value pairs of Amenity filters.
|
{- "field": "amenities",
- "type": "jsonb_boolean",
- "value": {
- "has_aircon": true,
- "has_breakfast": true,
- "has_cable_tv": true,
- "has_dryer": true,
- "has_elevator": true,
- "has_gym": true,
- "has_heating": true,
- "has_hottub": true,
- "has_kitchen": true,
- "has_parking": true,
- "has_pets_allowed": true,
- "has_pool": true,
- "has_smoking": true,
- "has_tv": true,
- "has_washer": true,
- "has_wireless_internet": true
}
}
Use this filter to only include results where the number of bathrooms
matches the requested parameters.
Filter the field
by numerical data. Used for numeric comparison operations.
type required | string Numeric Equality Filter type
| |||||||||||||||
field required | string Field to filter on (i.e. "bathrooms"). | |||||||||||||||
value required | number >= 0 Filter value. Must be a single |
{- "type": "gte",
- "field": "bathrooms",
- "value": 2
}
Use this filter to only include results where the number of bedrooms
matches the requested parameters.
Filter the field
by numerical data. Used for numeric comparison operations.
type required | string Numeric Equality Filter type
| |||||||||||||||
field required | string Field to filter on (i.e. "bedrooms"). | |||||||||||||||
value required | number >= 0 Filter value. Must be a single |
{- "type": "gte",
- "field": "bedrooms",
- "value": 2
}
Use this filter to only include results where the days_available_ltm
matches the requested parameters.
Use this to filter to only include results where the days_available_ltm
meet the matches the requested parameters.
Filter the field
by numerical data. Used for numeric comparison operations.
type required | string Numeric Equality Filter type
| |||||||||||||||
field required | string Field to filter on (i.e. "days_available_ltm"). | |||||||||||||||
value required | number [ 0 .. 365 ] Filter value. Must be a single |
{- "type": "gte",
- "field": "days_available_ltm",
- "value": 90
}
Use this filter to only include results where the Listing's value for instant_book
matches the requested parameter.
type required | string Filter type (i.e. "select"). |
field required | string Field to filter on (i.e. "instant_book"). |
value required | boolean Filter value. Must be |
{- "type": "select",
- "field": "instant_book",
- "value": true
}
Use this to filter results where the listings' listing_type
matches the requested value(s).
listing_type
.listing_type
.Filter the field
to a specific single value. Used for ==
operations.
type required | string Filter type (i.e. "select"). |
field required | string Field to filter on (i.e. "listing_type"). |
value required | string Filter value. Must be a |
{- "type": "select",
- "field": "listing_type",
- "value": "entire_place"
}
Use this to filter results where the listings' occupancy
in the last 12 months matches the requested parameters.
Use this filter to only include results where the occupancy
matches the requested parameters.
Filter the field
by numerical data. Used for numeric comparison operations.
type required | string Numeric Equality Filter type
| |||||||||||||||
field required | string Field to filter on (i.e. "occupancy_rate_ltm"). | |||||||||||||||
value required | number [ 0 .. 1 ] Filter value. Must be a single |
{- "type": "gte",
- "field": "occupancy_rate_ltm",
- "value": 0.6
}
Use this to filter results where the listings' price_tier
matches the value(s).
price_tier
.price_tier
.Filter the field
to a specific single value. Used for ==
operations.
type required | string Filter type (i.e. "select"). |
field required | string Field to filter on (i.e. "price_tier"). |
value required | string Filter value. Must be a |
{- "type": "select",
- "field": "price_tier",
- "value": "budget"
}
Use this filter to only include results where the listings' value for professionally_managed
matches the requested parameter.
type required | string Filter type (i.e. "select"). |
field required | string Field to filter on (i.e. "professionally_managed"). |
value required | boolean Filter value. Must be |
{- "type": "select",
- "field": "professionally_managed",
- "value": true
}
Use this to filter results where the listings' property_type
matches the requested parameters.
Use this filter to only receive results where the property_type
matches the requested parameters.
Filter the field
to a specific single value. Used for ==
operations.
type required | string Filter type (i.e. "select"). |
field required | string Field to filter on (i.e. "property_type"). |
required | string or null Filter value. Must be a |
{- "type": "select",
- "field": "property_type",
- "value": "apartment"
}
Use this filter to only include results where the listings' ratings
matches the requested parameters.
Filter the field
by numerical data. Used for numeric comparison operations.
type required | string Numeric Equality Filter type
| |||||||||||||||
field required | string Field to filter on (i.e. "ratings"). | |||||||||||||||
value required | number [ 0 .. 5 ] Filter value. Must be a single |
{- "type": "gte",
- "field": "ratings",
- "value": 4.5
}
Use this to filter results where the listings' real_estate_type
matches the requested value(s).
real_estate_type
.real_estate_type
.Filter the field
to a specific single value. Used for ==
operations.
type required | string Filter type (i.e. "select"). |
field required | string Field to filter on (i.e. "real_estate_type"). |
value required | string Filter value. Must be a |
{- "type": "select",
- "field": "real_estate_type",
- "value": "apartment"
}
Use this filter to only include results where the listings' reviews_count
matches the requested parameters.
Use this filter to only include results where the Listings' reviews_count
matches the requested parameters.
Filter the field
by numerical data. Used for numeric comparison operations.
type required | string Numeric Equality Filter type
| |||||||||||||||
field required | string Field to filter on (i.e. "reviews_count"). | |||||||||||||||
value required | number >= 0 Filter value. Must be a single |
{- "type": "gte",
- "field": "reviews_count",
- "value": 10
}
Use this filter to only include results where the Listing's value for superhost
matches the requested parameter.
type required | string Filter type (i.e. "select"). |
field required | string Field to filter on (i.e. "superhost"). |
value required | boolean Filter value. Must be |
{- "type": "select",
- "field": "superhost",
- "value": true
}
Use this filter to only include results where the listings are active for that percentage of the month.
Use this filter to only include results where the listings are active for that percentage of the month.
Filter the field
by numerical data. Used for numeric comparison operations.
type required | string Numeric Equality Filter type
| |||||||||||||||
field required | string Field to filter on (i.e. "percent_active") | |||||||||||||||
value required | number ( 0 .. 1 ] Filter value. Must be a single |
{- "type": "gte",
- "field": "percent_active",
- "value": 0.5
}
Whether you're looking to discover trending markets, learn about a market's historical performance, or gauge its future outlook, these endpoints can support your research.
We provide between 12 and 60 months of monthly historical data for the following key metrics:
market_id
for a known Market, you can use our Market Search endpoint.If you need to find AirDNA Markets or Submarkets, this endpoint allows you to find them via a simple search_term
.
Each result will provide:
id
that can be used in other endpoints for obtaining data.Schema for performing a request to search for a Market or Submarket
Successful Market Search Response
required | object (MarketSearchResponseSchema) |
required | object (Status) The Status object on the response envelope |
The request was invalid.
An internal server error occurred.
{- "search_term": "Denver",
- "pagination": {
- "page_size": 25,
- "offset": 0
}
}
{- "payload": {
- "page_info": {
- "page_size": 25,
- "offset": 0
}, - "results": [
- {
- "id": "airdna-163",
- "name": "Denver",
- "type": "market",
- "listing_count": 15231,
- "location_name": "Denver, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [ ],
- "zipcodes": [ ],
- "neighborhoods": [ ]
}
}, - {
- "id": "airdna-1490",
- "name": "Downtown Denver",
- "type": "submarket",
- "listing_count": 364,
- "location_name": "Downtown Denver, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [ ],
- "zipcodes": [
- "80294",
- "80264",
- "80293",
- "80290"
], - "neighborhoods": [
- "North Capitol Hill",
- "Golden Triangle",
- "CBD"
]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "56517",
- "name": "New Denver",
- "type": "market",
- "listing_count": 15,
- "location_name": "New Denver, British Columbia, Canada, CA",
- "location": {
- "state": "British Columbia",
- "country": "Canada",
- "country_code": "ca"
}, - "legacy_location": {
- "city_names": [ ],
- "zipcodes": [ ],
- "neighborhoods": [ ]
}
}, - {
- "id": "airdna-1771",
- "name": "Aurora",
- "type": "submarket",
- "listing_count": 1090,
- "location_name": "Aurora, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [
- "Aurora"
], - "zipcodes": [
- "80014",
- "80012",
- "80013",
- "80018",
- "80015",
- "80011",
- "80017",
- "80010",
- "80045",
- "80016"
], - "neighborhoods": [ ]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-1013",
- "name": "Highland",
- "type": "submarket",
- "listing_count": 969,
- "location_name": "Highland, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [ ],
- "zipcodes": [
- "80212",
- "80211"
], - "neighborhoods": [
- "Highland",
- "Berkeley",
- "Jefferson Park"
]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-1525",
- "name": "Arvada",
- "type": "submarket",
- "listing_count": 917,
- "location_name": "Arvada, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [
- "Arvada"
], - "zipcodes": [
- "80003",
- "80004",
- "80002",
- "80005"
], - "neighborhoods": [ ]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-5641",
- "name": "Five Points",
- "type": "submarket",
- "listing_count": 795,
- "location_name": "Five Points, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [ ],
- "zipcodes": [
- "80205"
], - "neighborhoods": [
- "Skyland",
- "Five Points",
- "City Park",
- "Whittier"
]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-2325",
- "name": "Denver Heights",
- "type": "submarket",
- "listing_count": 786,
- "location_name": "Denver Heights, Texas, United States, US",
- "location": {
- "state": "Texas",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [ ],
- "zipcodes": [
- "78210"
], - "neighborhoods": [ ]
}, - "parent_market": {
- "id": "airdna-416",
- "name": "San Antonio"
}
}, - {
- "id": "airdna-1612",
- "name": "West Colfax",
- "type": "submarket",
- "listing_count": 766,
- "location_name": "West Colfax, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [ ],
- "zipcodes": [
- "80204"
], - "neighborhoods": [
- "Valverde",
- "Sun Valley",
- "Lincoln Park",
- "Barnum West",
- "Villa Park",
- "Barnum",
- "West Colfax",
- "Baker"
]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-2331",
- "name": "Chaffee Park",
- "type": "submarket",
- "listing_count": 742,
- "location_name": "Chaffee Park, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [ ],
- "zipcodes": [
- "80221"
], - "neighborhoods": [
- "Chaffee Park"
]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-9143",
- "name": "Golden",
- "type": "submarket",
- "listing_count": 560,
- "location_name": "Golden, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [
- "Golden"
], - "zipcodes": [
- "80419",
- "80403",
- "80228",
- "80401"
], - "neighborhoods": [ ]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-2705",
- "name": "Edgewater",
- "type": "submarket",
- "listing_count": 503,
- "location_name": "Edgewater, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [ ],
- "zipcodes": [
- "80214",
- "80226"
], - "neighborhoods": [ ]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-3038",
- "name": "Littleton",
- "type": "submarket",
- "listing_count": 448,
- "location_name": "Littleton, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [
- "Littleton"
], - "zipcodes": [
- "80120",
- "80121",
- "80123",
- "80122",
- "80128"
], - "neighborhoods": [
- "Marston"
]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-1335",
- "name": "DIA Airport",
- "type": "submarket",
- "listing_count": 425,
- "location_name": "DIA Airport, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [
- "Bennett",
- "Watkins"
], - "zipcodes": [
- "80102",
- "80137",
- "80019",
- "80249"
], - "neighborhoods": [
- "Gateway/Green Valley Ranch",
- "DIA"
]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-6909",
- "name": "Thornton",
- "type": "submarket",
- "listing_count": 408,
- "location_name": "Thornton, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [
- "Thornton"
], - "zipcodes": [
- "80260",
- "80234",
- "80229",
- "80241",
- "80233"
], - "neighborhoods": [ ]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-6596",
- "name": "LoDo",
- "type": "submarket",
- "listing_count": 396,
- "location_name": "LoDo, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [ ],
- "zipcodes": [
- "80202"
], - "neighborhoods": [
- "Auraria",
- "LoDo"
]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-8789",
- "name": "Centennial",
- "type": "submarket",
- "listing_count": 362,
- "location_name": "Centennial, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [
- "Englewood"
], - "zipcodes": [
- "80112",
- "80111"
], - "neighborhoods": [ ]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-4255",
- "name": "Wheat Ridge",
- "type": "submarket",
- "listing_count": 345,
- "location_name": "Wheat Ridge, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [
- "Wheat Ridge"
], - "zipcodes": [
- "80033"
], - "neighborhoods": [ ]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-5962",
- "name": "Westminster",
- "type": "submarket",
- "listing_count": 327,
- "location_name": "Westminster, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [
- "Westminster"
], - "zipcodes": [
- "80030",
- "80031"
], - "neighborhoods": [ ]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-1049",
- "name": "Denver Harbor",
- "type": "submarket",
- "listing_count": 316,
- "location_name": "Denver Harbor, Texas, United States, US",
- "location": {
- "state": "Texas",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [ ],
- "zipcodes": [
- "77020"
], - "neighborhoods": [ ]
}, - "parent_market": {
- "id": "airdna-2",
- "name": "Houston"
}
}, - {
- "id": "airdna-4200",
- "name": "Broomfield",
- "type": "submarket",
- "listing_count": 289,
- "location_name": "Broomfield, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [
- "Broomfield"
], - "zipcodes": [
- "80020",
- "80007",
- "80023",
- "80021"
], - "neighborhoods": [ ]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-2083",
- "name": "Commerce City",
- "type": "submarket",
- "listing_count": 256,
- "location_name": "Commerce City, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [
- "Commerce City"
], - "zipcodes": [
- "80022"
], - "neighborhoods": [
- "Elyria Swansea"
]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-1613",
- "name": "Brighton",
- "type": "submarket",
- "listing_count": 247,
- "location_name": "Brighton, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [
- "Keenesburg",
- "Brighton",
- "Fort Lupton",
- "Hudson",
- "Roggen"
], - "zipcodes": [
- "80602",
- "80603",
- "80642",
- "80643",
- "80601",
- "80652",
- "80621"
], - "neighborhoods": [ ]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-6593",
- "name": "Englewood",
- "type": "submarket",
- "listing_count": 238,
- "location_name": "Englewood, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [ ],
- "zipcodes": [
- "80113",
- "80110"
], - "neighborhoods": [ ]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-4167",
- "name": "Hale",
- "type": "submarket",
- "listing_count": 235,
- "location_name": "Hale, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [ ],
- "zipcodes": [
- "80220"
], - "neighborhoods": [
- "Montclair",
- "Hale",
- "East Colfax",
- "South Park Hill"
]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}
]
}, - "status": {
- "type": "success",
- "response_id": "API-S-011",
- "message": "Successfully fetched 2 Markets & 23 Submarkets for the requested parameters."
}
}
Provides basic information about a specific Market. Includes key data such as:
Successful Market Details Response
required | object (Market) General Information about a Market. |
required | object (Status) The Status object on the response envelope |
The request was invalid.
Failed to find data matching your request.
An internal server error occurred.
{- "payload": {
- "metrics": {
- "market_score": 81.095,
- "revenue": 48981.16,
- "booked": 0.651164,
- "daily_rate": 206.08469,
- "revpar": 134.1949589041096
}, - "id": "airdna-163",
- "name": "Denver",
- "market_type": "urban_metro",
- "images": [
], - "geospatial": null
}, - "status": {
- "type": "success",
- "response_id": "API-S-006",
- "message": "Successfully retrieved Market Details."
}
}
If you're looking to explore & compare top Markets, you can do so either by general Market characteristics, or even compare them based on specific types of Listings!
Each Market includes the following summary metrics (Last 12 months):
Here are some examples of the many things you can do:
Schema for performing a request to fetch Markets relative to a Country.
Successfully retrieved Markets within a Country.
required | object (CountryMarketsResponseSchema) |
required | object (Status) The Status object on the response envelope |
The request was invalid.
Failed to find data matching your request.
An internal server error occurred.
{- "pagination": {
- "page_size": 3,
- "offset": 0
}, - "currency": "usd",
- "sort_order": "revenue",
- "include_geoms": false
}
{- "payload": {
- "page_info": {
- "total_count": 19685,
- "page_size": 3,
- "offset": 0
}, - "sort_order": "revenue",
- "markets": [
- {
- "metrics": {
- "market_score": null,
- "revenue": 576864.41,
- "booked": 0.463362,
- "daily_rate": 3410.8325,
- "revpar": 1580.4504383561643
}, - "id": 61080,
- "name": "Atlanta",
- "market_type": "rural",
- "images": [
], - "geospatial": null
}, - {
- "metrics": {
- "market_score": 57.496,
- "revenue": 563565.4,
- "booked": 0.365989,
- "daily_rate": 4218.7476,
- "revpar": 1544.0147945205479
}, - "id": 59278,
- "name": "Yorkville",
- "market_type": "rural",
- "images": [
], - "geospatial": null
}, - {
- "metrics": {
- "market_score": null,
- "revenue": 533359.71,
- "booked": 0.600583,
- "daily_rate": 2433.0679,
- "revpar": 1461.2594794520548
}, - "id": 78402,
- "name": "Latta",
- "market_type": "rural",
- "images": [
], - "geospatial": null
}
]
}, - "status": {
- "type": "success",
- "response_id": "API-S-002",
- "message": "Successfully retrieved Markets for the requested country."
}
}
This endpoint provides 12 to 60 months of historical monthly occupancy data for a Market.
Each month shows the following metrics:
Supports some Listing Filters to calculate historical occupancy for certain types of STR Listings within the Market.
Supports requests to calculate custom percentiles for occupancy rates within the Market.
Schema for performing a request to fetch occupancy metrics for a Market.
Successful Market Occupancy Metrics Response.
required | object (MarketOccupancyMetricsResponseSchema) |
required | object (Status) The Status object on the response envelope |
The request was invalid.
Failed to find data matching your request.
An internal server error occurred.
{- "num_months": 12,
- "filters": [
- {
- "field": "ratings",
- "type": "gte",
- "value": 4.9
}
]
}
{- "payload": {
- "metrics": [
- {
- "date": "2023-05",
- "occupancy_rate": 71.85,
- "available_listings": 167,
- "booked_listings": 4346,
- "days_available": 36193,
- "days_booked": 75775
}, - {
- "date": "2023-06",
- "occupancy_rate": 82.96,
- "available_listings": 96,
- "booked_listings": 4662,
- "days_available": 22886,
- "days_booked": 90533
}, - {
- "date": "2023-07",
- "occupancy_rate": 80.12,
- "available_listings": 80,
- "booked_listings": 4836,
- "days_available": 26840,
- "days_booked": 95404
}, - {
- "date": "2023-08",
- "occupancy_rate": 72.02,
- "available_listings": 206,
- "booked_listings": 4728,
- "days_available": 37669,
- "days_booked": 84012
}, - {
- "date": "2023-09",
- "occupancy_rate": 75.03,
- "available_listings": 155,
- "booked_listings": 4749,
- "days_available": 32743,
- "days_booked": 84930
}, - {
- "date": "2023-10",
- "occupancy_rate": 67.39,
- "available_listings": 235,
- "booked_listings": 4682,
- "days_available": 43595,
- "days_booked": 79327
}, - {
- "date": "2023-11",
- "occupancy_rate": 56.46,
- "available_listings": 338,
- "booked_listings": 4543,
- "days_available": 56264,
- "days_booked": 63471
}, - {
- "date": "2023-12",
- "occupancy_rate": 56.08,
- "available_listings": 387,
- "booked_listings": 4436,
- "days_available": 59569,
- "days_booked": 61967
}, - {
- "date": "2024-01",
- "occupancy_rate": 45.05,
- "available_listings": 543,
- "booked_listings": 3984,
- "days_available": 65659,
- "days_booked": 47830
}, - {
- "date": "2024-02",
- "occupancy_rate": 58.48,
- "available_listings": 301,
- "booked_listings": 3975,
- "days_available": 49330,
- "days_booked": 51877
}, - {
- "date": "2024-03",
- "occupancy_rate": 60.55,
- "available_listings": 189,
- "booked_listings": 4235,
- "days_available": 47676,
- "days_booked": 63590
}, - {
- "date": "2024-04",
- "occupancy_rate": 63.9,
- "available_listings": 140,
- "booked_listings": 4432,
- "days_available": 44492,
- "days_booked": 67293
}, - {
- "date": "2024-05",
- "occupancy_rate": 72.23,
- "available_listings": 209,
- "booked_listings": 4726,
- "days_available": 38093,
- "days_booked": 85752
}
], - "monthly_pct_change": 13.03,
- "yearly_pct_change": 0.53
}, - "status": {
- "type": "success",
- "response_id": "API-S-046",
- "message": "Successfully retrieved Market occupancy rate metrics."
}
}
This endpoint provides 12 to 60 months of historical monthly revenue data for a Market.
Schema for performing a request to fetch average revenue metrics with currency for a Market.
Successful Market Average Revenue Metrics Response
required | object (MarketAvgRevenueMetricsResponseSchema) |
required | object (Status) The Status object on the response envelope |
The request was invalid.
Failed to find data matching your request.
An internal server error occurred.
{- "num_months": 12,
- "currency": "eur"
}
{- "payload": {
- "metrics": [
- {
- "date": "2023-04",
- "revenue": 2652.54
}, - {
- "date": "2023-05",
- "revenue": 3180.19
}, - {
- "date": "2023-06",
- "revenue": 3916.88
}, - {
- "date": "2023-07",
- "revenue": 3919
}, - {
- "date": "2023-08",
- "revenue": 3367
}, - {
- "date": "2023-09",
- "revenue": 3606.03
}, - {
- "date": "2023-10",
- "revenue": 3245.31
}, - {
- "date": "2023-11",
- "revenue": 2437.82
}, - {
- "date": "2023-12",
- "revenue": 2407.24
}, - {
- "date": "2024-01",
- "revenue": 2154.08
}, - {
- "date": "2024-02",
- "revenue": 2427.43
}, - {
- "date": "2024-03",
- "revenue": 2635.69
}
], - "monthly_pct_change": 8.58,
- "yearly_pct_change": -6.3
}, - "status": {
- "type": "success",
- "response_id": "API-S-032",
- "message": "Successfully retrieved Market average monthly revenue metrics."
}
}
This endpoint provides 12 to 60 months of historical monthly average daily rate data for a Market.
Schema for performing a request to fetch Average Daily Rate metrics for a Market.
Successful Market Average Daily Rate Metrics Response
required | object (MarketAvgDailyRateMetricsResponseSchema) |
required | object (Status) The Status object on the response envelope |
The request was invalid.
Failed to find data matching your request.
An internal server error occurred.
{- "num_months": 12,
- "filters": [
- {
- "field": "price_tier",
- "type": "select",
- "value": "budget"
}
], - "currency": "usd"
}
{- "payload": {
- "metrics": [
- {
- "date": "2023-04",
- "adr": 103.43
}, - {
- "date": "2023-05",
- "adr": 108.9
}, - {
- "date": "2023-06",
- "adr": 124.39
}, - {
- "date": "2023-07",
- "adr": 127.47
}, - {
- "date": "2023-08",
- "adr": 118.83
}, - {
- "date": "2023-09",
- "adr": 121.87
}, - {
- "date": "2023-10",
- "adr": 117.51
}, - {
- "date": "2023-11",
- "adr": 107.97
}, - {
- "date": "2023-12",
- "adr": 110.1
}, - {
- "date": "2024-01",
- "adr": 116.91
}, - {
- "date": "2024-02",
- "adr": 116.55
}, - {
- "date": "2024-03",
- "adr": 121.9
}
], - "monthly_pct_change": 4.59,
- "yearly_pct_change": 5.28
}, - "status": {
- "type": "success",
- "response_id": "API-S-024",
- "message": "Successfully retrieved Market average daily rate metrics."
}
}
This endpoint provides 12 to 60 months of historical monthly RevPAR (Revenue Per Available Rental) data for a Market.
Schema for performing a request to fetch RevPAR metrics for a Market.
Successful Market Revpar Metrics Response
required | object (MarketRevparMetricsResponseSchema) |
required | object (Status) The Status object on the response envelope |
The request was invalid.
Failed to find data matching your request.
An internal server error occurred.
{- "num_months": 12,
- "filters": [
- {
- "field": "accommodates",
- "type": "lt",
- "value": 5
}
], - "currency": "usd"
}
{- "payload": {
- "metrics": [
- {
- "date": "2023-04",
- "revpar": 89.88
}, - {
- "date": "2023-05",
- "revpar": 97.93
}, - {
- "date": "2023-06",
- "revpar": 121.66
}, - {
- "date": "2023-07",
- "revpar": 119.2
}, - {
- "date": "2023-08",
- "revpar": 100.69
}, - {
- "date": "2023-09",
- "revpar": 112.02
}, - {
- "date": "2023-10",
- "revpar": 98.99
}, - {
- "date": "2023-11",
- "revpar": 72.49
}, - {
- "date": "2023-12",
- "revpar": 68.08
}, - {
- "date": "2024-01",
- "revpar": 61.84
}, - {
- "date": "2024-02",
- "revpar": 79.38
}, - {
- "date": "2024-03",
- "revpar": 80.56
}
], - "monthly_pct_change": 1.49,
- "yearly_pct_change": -4.27
}, - "status": {
- "type": "success",
- "response_id": "API-S-054",
- "message": "Successfully retrieved Market revpar metrics."
}
}
This endpoint provides 12 to 20 months of historical monthly booking lead time data for a Market.
Schema for performing a request to fetch Booking Lead Time for a Market or Submarket.
Successful Market Booking Lead Time Metrics Response
required | object (MarketBookingLeadTimeMetricsResponseSchema) |
required | object (Status) The Status object on the response envelope |
The request was invalid.
Failed to find data matching your request.
An internal server error occurred.
{- "num_months": 12,
- "filters": [
- {
- "field": "bathrooms",
- "type": "select",
- "value": 3
}
]
}
{- "payload": {
- "metrics": [
- {
- "date": "2023-05-01",
- "reservation_counts": [
- {
- "lead_time_day_range": [
- 0,
- 6
], - "num_reservations": 423
}, - {
- "lead_time_day_range": [
- 7,
- 14
], - "num_reservations": 124
}, - {
- "lead_time_day_range": [
- 15,
- 30
], - "num_reservations": 176
}, - {
- "lead_time_day_range": [
- 31,
- 60
], - "num_reservations": 246
}, - {
- "lead_time_day_range": [
- 61,
- 90
], - "num_reservations": 190
}, - {
- "lead_time_day_range": [
- 91,
- null
], - "num_reservations": 285
}
]
}, - {
- "date": "2023-06-01",
- "reservation_counts": [
- {
- "lead_time_day_range": [
- 0,
- 6
], - "num_reservations": 391
}, - {
- "lead_time_day_range": [
- 7,
- 14
], - "num_reservations": 130
}, - {
- "lead_time_day_range": [
- 15,
- 30
], - "num_reservations": 220
}, - {
- "lead_time_day_range": [
- 31,
- 60
], - "num_reservations": 255
}, - {
- "lead_time_day_range": [
- 61,
- 90
], - "num_reservations": 247
}, - {
- "lead_time_day_range": [
- 91,
- null
], - "num_reservations": 542
}
]
}, - {
- "date": "2023-07-01",
- "reservation_counts": [
- {
- "lead_time_day_range": [
- 0,
- 6
], - "num_reservations": 423
}, - {
- "lead_time_day_range": [
- 7,
- 14
], - "num_reservations": 151
}, - {
- "lead_time_day_range": [
- 15,
- 30
], - "num_reservations": 215
}, - {
- "lead_time_day_range": [
- 31,
- 60
], - "num_reservations": 277
}, - {
- "lead_time_day_range": [
- 61,
- 90
], - "num_reservations": 185
}, - {
- "lead_time_day_range": [
- 91,
- null
], - "num_reservations": 560
}
]
}, - {
- "date": "2023-08-01",
- "reservation_counts": [
- {
- "lead_time_day_range": [
- 0,
- 6
], - "num_reservations": 505
}, - {
- "lead_time_day_range": [
- 7,
- 14
], - "num_reservations": 116
}, - {
- "lead_time_day_range": [
- 15,
- 30
], - "num_reservations": 207
}, - {
- "lead_time_day_range": [
- 31,
- 60
], - "num_reservations": 232
}, - {
- "lead_time_day_range": [
- 61,
- 90
], - "num_reservations": 163
}, - {
- "lead_time_day_range": [
- 91,
- null
], - "num_reservations": 424
}
]
}, - {
- "date": "2023-09-01",
- "reservation_counts": [
- {
- "lead_time_day_range": [
- 0,
- 6
], - "num_reservations": 466
}, - {
- "lead_time_day_range": [
- 7,
- 14
], - "num_reservations": 150
}, - {
- "lead_time_day_range": [
- 15,
- 30
], - "num_reservations": 200
}, - {
- "lead_time_day_range": [
- 31,
- 60
], - "num_reservations": 273
}, - {
- "lead_time_day_range": [
- 61,
- 90
], - "num_reservations": 162
}, - {
- "lead_time_day_range": [
- 91,
- null
], - "num_reservations": 329
}
]
}, - {
- "date": "2023-10-01",
- "reservation_counts": [
- {
- "lead_time_day_range": [
- 0,
- 6
], - "num_reservations": 450
}, - {
- "lead_time_day_range": [
- 7,
- 14
], - "num_reservations": 121
}, - {
- "lead_time_day_range": [
- 15,
- 30
], - "num_reservations": 181
}, - {
- "lead_time_day_range": [
- 31,
- 60
], - "num_reservations": 273
}, - {
- "lead_time_day_range": [
- 61,
- 90
], - "num_reservations": 124
}, - {
- "lead_time_day_range": [
- 91,
- null
], - "num_reservations": 282
}
]
}, - {
- "date": "2023-11-01",
- "reservation_counts": [
- {
- "lead_time_day_range": [
- 0,
- 6
], - "num_reservations": 451
}, - {
- "lead_time_day_range": [
- 7,
- 14
], - "num_reservations": 141
}, - {
- "lead_time_day_range": [
- 15,
- 30
], - "num_reservations": 185
}, - {
- "lead_time_day_range": [
- 31,
- 60
], - "num_reservations": 250
}, - {
- "lead_time_day_range": [
- 61,
- 90
], - "num_reservations": 121
}, - {
- "lead_time_day_range": [
- 91,
- null
], - "num_reservations": 189
}
]
}, - {
- "date": "2023-12-01",
- "reservation_counts": [
- {
- "lead_time_day_range": [
- 0,
- 6
], - "num_reservations": 467
}, - {
- "lead_time_day_range": [
- 7,
- 14
], - "num_reservations": 111
}, - {
- "lead_time_day_range": [
- 15,
- 30
], - "num_reservations": 179
}, - {
- "lead_time_day_range": [
- 31,
- 60
], - "num_reservations": 229
}, - {
- "lead_time_day_range": [
- 61,
- 90
], - "num_reservations": 86
}, - {
- "lead_time_day_range": [
- 91,
- null
], - "num_reservations": 165
}
]
}, - {
- "date": "2024-01-01",
- "reservation_counts": [
- {
- "lead_time_day_range": [
- 0,
- 6
], - "num_reservations": 423
}, - {
- "lead_time_day_range": [
- 7,
- 14
], - "num_reservations": 107
}, - {
- "lead_time_day_range": [
- 15,
- 30
], - "num_reservations": 137
}, - {
- "lead_time_day_range": [
- 31,
- 60
], - "num_reservations": 138
}, - {
- "lead_time_day_range": [
- 61,
- 90
], - "num_reservations": 81
}, - {
- "lead_time_day_range": [
- 91,
- null
], - "num_reservations": 106
}
]
}, - {
- "date": "2024-02-01",
- "reservation_counts": [
- {
- "lead_time_day_range": [
- 0,
- 6
], - "num_reservations": 405
}, - {
- "lead_time_day_range": [
- 7,
- 14
], - "num_reservations": 106
}, - {
- "lead_time_day_range": [
- 15,
- 30
], - "num_reservations": 195
}, - {
- "lead_time_day_range": [
- 31,
- 60
], - "num_reservations": 204
}, - {
- "lead_time_day_range": [
- 61,
- 90
], - "num_reservations": 91
}, - {
- "lead_time_day_range": [
- 91,
- null
], - "num_reservations": 83
}
]
}, - {
- "date": "2024-03-01",
- "reservation_counts": [
- {
- "lead_time_day_range": [
- 0,
- 6
], - "num_reservations": 447
}, - {
- "lead_time_day_range": [
- 7,
- 14
], - "num_reservations": 146
}, - {
- "lead_time_day_range": [
- 15,
- 30
], - "num_reservations": 151
}, - {
- "lead_time_day_range": [
- 31,
- 60
], - "num_reservations": 180
}, - {
- "lead_time_day_range": [
- 61,
- 90
], - "num_reservations": 114
}, - {
- "lead_time_day_range": [
- 91,
- null
], - "num_reservations": 119
}
]
}, - {
- "date": "2024-04-01",
- "reservation_counts": [
- {
- "lead_time_day_range": [
- 0,
- 6
], - "num_reservations": 455
}, - {
- "lead_time_day_range": [
- 7,
- 14
], - "num_reservations": 131
}, - {
- "lead_time_day_range": [
- 15,
- 30
], - "num_reservations": 192
}, - {
- "lead_time_day_range": [
- 31,
- 60
], - "num_reservations": 225
}, - {
- "lead_time_day_range": [
- 61,
- 90
], - "num_reservations": 171
}, - {
- "lead_time_day_range": [
- 91,
- null
], - "num_reservations": 169
}
]
}
], - "monthly_pct_change": 16.08,
- "yearly_pct_change": 6.42
}, - "status": {
- "type": "success",
- "response_id": "API-S-036",
- "message": "Successfully retrieved Market booking lead time metrics."
}
}
This endpoint provides 12 to 20 months of historical monthly average length of stay data for a Market.
Schema for performing a request to fetch Average Length of Stay for a Market or Submarket.
Successful Market Average Length of Stay Metrics Response
required | object (MarketAvgLengthOfStayMetricsResponseSchema) |
required | object (Status) The Status object on the response envelope |
The request was invalid.
Failed to find data matching your request.
An internal server error occurred.
{- "num_months": 12
}
{- "payload": {
- "metrics": [
- {
- "date": "2023-05",
- "days_avg": 3.6
}, - {
- "date": "2023-06",
- "days_avg": 3.63
}, - {
- "date": "2023-07",
- "days_avg": 3.57
}, - {
- "date": "2023-08",
- "days_avg": 3.45
}, - {
- "date": "2023-09",
- "days_avg": 3.37
}, - {
- "date": "2023-10",
- "days_avg": 3.39
}, - {
- "date": "2023-11",
- "days_avg": 3.41
}, - {
- "date": "2023-12",
- "days_avg": 3.57
}, - {
- "date": "2024-01",
- "days_avg": 3.58
}, - {
- "date": "2024-02",
- "days_avg": 3.52
}, - {
- "date": "2024-03",
- "days_avg": 3.52
}, - {
- "date": "2024-04",
- "days_avg": 3.33
}
], - "monthly_pct_change": -5.2,
- "yearly_pct_change": -3.67
}, - "status": {
- "type": "success",
- "response_id": "API-S-028",
- "message": "Successfully retrieved Market average length of stay metrics."
}
}
This endpoint provides 12 to 60 months of active listings count data for a Market.
Schema for performing a request to fetch Active Listings Count for a Market.
Successful Market Active Listings Count Response
required | object (MarketActiveListingsCountResponseSchema) |
required | object (Status) The Status object on the response envelope |
The request was invalid.
Failed to find data matching your request.
An internal server error occurred.
{- "num_months": 12,
- "filters": [
- {
- "field": "bedrooms",
- "type": "select",
- "value": 3
}
]
}
{- "payload": {
- "metrics": [
- {
- "date": "2023-06",
- "listing_count": 1400
}, - {
- "date": "2023-07",
- "listing_count": 1453
}, - {
- "date": "2023-08",
- "listing_count": 1409
}, - {
- "date": "2023-09",
- "listing_count": 1412
}, - {
- "date": "2023-10",
- "listing_count": 1389
}, - {
- "date": "2023-11",
- "listing_count": 1347
}, - {
- "date": "2023-12",
- "listing_count": 1356
}, - {
- "date": "2024-01",
- "listing_count": 1267
}, - {
- "date": "2024-02",
- "listing_count": 1154
}, - {
- "date": "2024-03",
- "listing_count": 1173
}, - {
- "date": "2024-04",
- "listing_count": 1206
}, - {
- "date": "2024-05",
- "listing_count": 1334
}
], - "monthly_pct_change": 10.61,
- "yearly_pct_change": 4.22
}, - "status": {
- "type": "success",
- "response_id": "API-S-018",
- "message": "Successfully retrieved Market active listings count."
}
}
This endpoint provides 1 to 12 months of future daily pricing data for a Market.
Schema for performing a request to fetch future metrics with currency for a Market.
Successful Market Future Rates Response
required | object (MarketFuturePricingResponseSchema) |
required | object (Status) The Status object on the response envelope |
The request was invalid.
Failed to find data matching your request.
An internal server error occurred.
{- "num_months": 3,
- "filters": [
- {
- "field": "accommodates",
- "type": "select",
- "value": 4
}
], - "currency": "usd"
}
{- "payload": {
- "metrics": [
- {
- "date": "2024-06-04",
- "available_count": 362,
- "booked_count": 478,
- "mean_available_rate": 169.14088397790056,
- "mean_booked_rate": 173.4602510460251,
- "median_available_rate": 149,
- "median_booked_rate": 156,
- "occupancy": 56.9
}, - {
- "date": "2024-06-05",
- "available_count": 329,
- "booked_count": 505,
- "mean_available_rate": 170.69604863221883,
- "mean_booked_rate": 177.51881188118813,
- "median_available_rate": 150,
- "median_booked_rate": 160,
- "occupancy": 60.55
}, - {
- "date": "2024-06-06",
- "available_count": 279,
- "booked_count": 562,
- "mean_available_rate": 188.1505376344086,
- "mean_booked_rate": 181.21530249110322,
- "median_available_rate": 170,
- "median_booked_rate": 165,
- "occupancy": 66.83
}, - {
- "date": "2024-06-07",
- "available_count": 252,
- "booked_count": 608,
- "mean_available_rate": 210.48809523809524,
- "mean_booked_rate": 195.20559210526315,
- "median_available_rate": 185,
- "median_booked_rate": 177,
- "occupancy": 70.7
}, - {
- "date": "2024-06-08",
- "available_count": 252,
- "booked_count": 601,
- "mean_available_rate": 206,
- "mean_booked_rate": 195.9916805324459,
- "median_available_rate": 183,
- "median_booked_rate": 177,
- "occupancy": 70.46
}, - {
- "date": "2024-06-09",
- "available_count": 358,
- "booked_count": 490,
- "mean_available_rate": 182.6703910614525,
- "mean_booked_rate": 181.94897959183675,
- "median_available_rate": 162,
- "median_booked_rate": 164,
- "occupancy": 57.78
}, - {
- "date": "2024-06-10",
- "available_count": 473,
- "booked_count": 382,
- "mean_available_rate": 172.65327695560254,
- "mean_booked_rate": 174.18848167539267,
- "median_available_rate": 150,
- "median_booked_rate": 155,
- "occupancy": 44.68
}, - {
- "date": "2024-06-11",
- "available_count": 494,
- "booked_count": 367,
- "mean_available_rate": 170.251012145749,
- "mean_booked_rate": 176.06267029972753,
- "median_available_rate": 149,
- "median_booked_rate": 158,
- "occupancy": 42.62
}, - {
- "date": "2024-06-12",
- "available_count": 424,
- "booked_count": 434,
- "mean_available_rate": 176.42924528301887,
- "mean_booked_rate": 179.25115207373273,
- "median_available_rate": 153,
- "median_booked_rate": 162,
- "occupancy": 50.58
}, - {
- "date": "2024-06-13",
- "available_count": 266,
- "booked_count": 592,
- "mean_available_rate": 183.906015037594,
- "mean_booked_rate": 196.09966216216216,
- "median_available_rate": 162,
- "median_booked_rate": 174,
- "occupancy": 69
}, - {
- "date": "2024-06-14",
- "available_count": 127,
- "booked_count": 738,
- "mean_available_rate": 219.5511811023622,
- "mean_booked_rate": 208.7059620596206,
- "median_available_rate": 198,
- "median_booked_rate": 187,
- "occupancy": 85.32
}, - {
- "date": "2024-06-15",
- "available_count": 132,
- "booked_count": 738,
- "mean_available_rate": 216.6818181818182,
- "mean_booked_rate": 209.71138211382114,
- "median_available_rate": 202,
- "median_booked_rate": 188,
- "occupancy": 84.83
}, - {
- "date": "2024-06-16",
- "available_count": 284,
- "booked_count": 577,
- "mean_available_rate": 191.26760563380282,
- "mean_booked_rate": 191.68284228769497,
- "median_available_rate": 176,
- "median_booked_rate": 170,
- "occupancy": 67.02
}, - {
- "date": "2024-06-17",
- "available_count": 387,
- "booked_count": 474,
- "mean_available_rate": 182.50904392764858,
- "mean_booked_rate": 180.3945147679325,
- "median_available_rate": 164,
- "median_booked_rate": 162,
- "occupancy": 55.05
}, - {
- "date": "2024-06-18",
- "available_count": 447,
- "booked_count": 421,
- "mean_available_rate": 178.2304250559284,
- "mean_booked_rate": 180.37767220902612,
- "median_available_rate": 160,
- "median_booked_rate": 163,
- "occupancy": 48.5
}, - {
- "date": "2024-06-19",
- "available_count": 359,
- "booked_count": 494,
- "mean_available_rate": 187.92200557103064,
- "mean_booked_rate": 189.78744939271255,
- "median_available_rate": 169,
- "median_booked_rate": 170,
- "occupancy": 57.91
}, - {
- "date": "2024-06-20",
- "available_count": 285,
- "booked_count": 580,
- "mean_available_rate": 189.4561403508772,
- "mean_booked_rate": 202.47241379310344,
- "median_available_rate": 178,
- "median_booked_rate": 178,
- "occupancy": 67.05
}, - {
- "date": "2024-06-21",
- "available_count": 278,
- "booked_count": 592,
- "mean_available_rate": 209.64388489208633,
- "mean_booked_rate": 212.42398648648648,
- "median_available_rate": 180,
- "median_booked_rate": 187,
- "occupancy": 68.05
}, - {
- "date": "2024-06-22",
- "available_count": 278,
- "booked_count": 593,
- "mean_available_rate": 209.6726618705036,
- "mean_booked_rate": 212.83305227655987,
- "median_available_rate": 180,
- "median_booked_rate": 190,
- "occupancy": 68.08
}, - {
- "date": "2024-06-23",
- "available_count": 355,
- "booked_count": 521,
- "mean_available_rate": 186.60845070422536,
- "mean_booked_rate": 198.89059500959692,
- "median_available_rate": 162,
- "median_booked_rate": 177,
- "occupancy": 59.47
}, - {
- "date": "2024-06-24",
- "available_count": 442,
- "booked_count": 433,
- "mean_available_rate": 180.70814479638008,
- "mean_booked_rate": 189.4526558891455,
- "median_available_rate": 161,
- "median_booked_rate": 168,
- "occupancy": 49.49
}, - {
- "date": "2024-06-25",
- "available_count": 422,
- "booked_count": 444,
- "mean_available_rate": 175.62322274881515,
- "mean_booked_rate": 191.94144144144144,
- "median_available_rate": 162,
- "median_booked_rate": 170,
- "occupancy": 51.27
}, - {
- "date": "2024-06-26",
- "available_count": 391,
- "booked_count": 479,
- "mean_available_rate": 189.28388746803068,
- "mean_booked_rate": 193.39874739039666,
- "median_available_rate": 168,
- "median_booked_rate": 172,
- "occupancy": 55.06
}, - {
- "date": "2024-06-27",
- "available_count": 312,
- "booked_count": 571,
- "mean_available_rate": 203.31410256410257,
- "mean_booked_rate": 204.38528896672506,
- "median_available_rate": 180,
- "median_booked_rate": 179,
- "occupancy": 64.67
}, - {
- "date": "2024-06-28",
- "available_count": 301,
- "booked_count": 589,
- "mean_available_rate": 228.93355481727573,
- "mean_booked_rate": 211.05942275042446,
- "median_available_rate": 200,
- "median_booked_rate": 185,
- "occupancy": 66.18
}, - {
- "date": "2024-06-29",
- "available_count": 316,
- "booked_count": 575,
- "mean_available_rate": 229.65822784810126,
- "mean_booked_rate": 208.3286956521739,
- "median_available_rate": 200,
- "median_booked_rate": 184,
- "occupancy": 64.53
}, - {
- "date": "2024-06-30",
- "available_count": 371,
- "booked_count": 474,
- "mean_available_rate": 198.6253369272237,
- "mean_booked_rate": 197.5042194092827,
- "median_available_rate": 180,
- "median_booked_rate": 176,
- "occupancy": 56.09
}, - {
- "date": "2024-07-01",
- "available_count": 375,
- "booked_count": 447,
- "mean_available_rate": 194.82133333333334,
- "mean_booked_rate": 189.586129753915,
- "median_available_rate": 170,
- "median_booked_rate": 173,
- "occupancy": 54.38
}, - {
- "date": "2024-07-02",
- "available_count": 360,
- "booked_count": 468,
- "mean_available_rate": 196.7138888888889,
- "mean_booked_rate": 189.35897435897436,
- "median_available_rate": 170,
- "median_booked_rate": 175,
- "occupancy": 56.52
}, - {
- "date": "2024-07-03",
- "available_count": 302,
- "booked_count": 528,
- "mean_available_rate": 212.20529801324503,
- "mean_booked_rate": 195.62689393939394,
- "median_available_rate": 189,
- "median_booked_rate": 174,
- "occupancy": 63.61
}, - {
- "date": "2024-07-04",
- "available_count": 256,
- "booked_count": 585,
- "mean_available_rate": 230.02734375,
- "mean_booked_rate": 202.73675213675213,
- "median_available_rate": 206,
- "median_booked_rate": 176,
- "occupancy": 69.56
}, - {
- "date": "2024-07-05",
- "available_count": 250,
- "booked_count": 594,
- "mean_available_rate": 254.048,
- "mean_booked_rate": 209.84680134680136,
- "median_available_rate": 231,
- "median_booked_rate": 183,
- "occupancy": 70.38
}, - {
- "date": "2024-07-06",
- "available_count": 309,
- "booked_count": 543,
- "mean_available_rate": 241.77022653721684,
- "mean_booked_rate": 205.95948434622468,
- "median_available_rate": 218,
- "median_booked_rate": 183,
- "occupancy": 63.73
}, - {
- "date": "2024-07-07",
- "available_count": 479,
- "booked_count": 367,
- "mean_available_rate": 201.24217118997913,
- "mean_booked_rate": 190.29155313351498,
- "median_available_rate": 178,
- "median_booked_rate": 174,
- "occupancy": 43.38
}, - {
- "date": "2024-07-08",
- "available_count": 593,
- "booked_count": 256,
- "mean_available_rate": 189.04890387858347,
- "mean_booked_rate": 184.80859375,
- "median_available_rate": 165,
- "median_booked_rate": 168,
- "occupancy": 30.15
}, - {
- "date": "2024-07-09",
- "available_count": 616,
- "booked_count": 241,
- "mean_available_rate": 188.63636363636363,
- "mean_booked_rate": 183.0622406639004,
- "median_available_rate": 166,
- "median_booked_rate": 167,
- "occupancy": 28.12
}, - {
- "date": "2024-07-10",
- "available_count": 601,
- "booked_count": 256,
- "mean_available_rate": 200.0981697171381,
- "mean_booked_rate": 179.3984375,
- "median_available_rate": 176,
- "median_booked_rate": 162,
- "occupancy": 29.87
}, - {
- "date": "2024-07-11",
- "available_count": 551,
- "booked_count": 312,
- "mean_available_rate": 213.15970961887479,
- "mean_booked_rate": 187.79166666666666,
- "median_available_rate": 187,
- "median_booked_rate": 164,
- "occupancy": 36.15
}, - {
- "date": "2024-07-12",
- "available_count": 526,
- "booked_count": 340,
- "mean_available_rate": 227.2471482889734,
- "mean_booked_rate": 199.06764705882352,
- "median_available_rate": 199,
- "median_booked_rate": 179,
- "occupancy": 39.26
}, - {
- "date": "2024-07-13",
- "available_count": 536,
- "booked_count": 335,
- "mean_available_rate": 219.5242537313433,
- "mean_booked_rate": 200,
- "median_available_rate": 193,
- "median_booked_rate": 179,
- "occupancy": 38.46
}, - {
- "date": "2024-07-14",
- "available_count": 578,
- "booked_count": 290,
- "mean_available_rate": 197.4948096885813,
- "mean_booked_rate": 190.00344827586207,
- "median_available_rate": 175,
- "median_booked_rate": 171,
- "occupancy": 33.41
}, - {
- "date": "2024-07-15",
- "available_count": 621,
- "booked_count": 244,
- "mean_available_rate": 188.55716586151368,
- "mean_booked_rate": 180.95081967213116,
- "median_available_rate": 168,
- "median_booked_rate": 162,
- "occupancy": 28.21
}, - {
- "date": "2024-07-16",
- "available_count": 617,
- "booked_count": 246,
- "mean_available_rate": 187.97730956239872,
- "mean_booked_rate": 186.33333333333334,
- "median_available_rate": 167,
- "median_booked_rate": 165,
- "occupancy": 28.51
}, - {
- "date": "2024-07-17",
- "available_count": 560,
- "booked_count": 296,
- "mean_available_rate": 200.90357142857144,
- "mean_booked_rate": 188.40540540540542,
- "median_available_rate": 174,
- "median_booked_rate": 164,
- "occupancy": 34.58
}, - {
- "date": "2024-07-18",
- "available_count": 480,
- "booked_count": 387,
- "mean_available_rate": 215.62708333333333,
- "mean_booked_rate": 196.18087855297156,
- "median_available_rate": 187,
- "median_booked_rate": 171,
- "occupancy": 44.64
}, - {
- "date": "2024-07-19",
- "available_count": 429,
- "booked_count": 441,
- "mean_available_rate": 233.8951048951049,
- "mean_booked_rate": 202.47619047619048,
- "median_available_rate": 213,
- "median_booked_rate": 177,
- "occupancy": 50.69
}, - {
- "date": "2024-07-20",
- "available_count": 442,
- "booked_count": 431,
- "mean_available_rate": 227.24886877828055,
- "mean_booked_rate": 204.292343387471,
- "median_available_rate": 199,
- "median_booked_rate": 180,
- "occupancy": 49.37
}, - {
- "date": "2024-07-21",
- "available_count": 503,
- "booked_count": 360,
- "mean_available_rate": 203.18091451292247,
- "mean_booked_rate": 192.85833333333332,
- "median_available_rate": 175,
- "median_booked_rate": 171,
- "occupancy": 41.71
}, - {
- "date": "2024-07-22",
- "available_count": 574,
- "booked_count": 296,
- "mean_available_rate": 188.91463414634146,
- "mean_booked_rate": 185.00675675675674,
- "median_available_rate": 169,
- "median_booked_rate": 161,
- "occupancy": 34.02
}, - {
- "date": "2024-07-23",
- "available_count": 600,
- "booked_count": 262,
- "mean_available_rate": 187.06833333333333,
- "mean_booked_rate": 187.8740458015267,
- "median_available_rate": 168,
- "median_booked_rate": 165,
- "occupancy": 30.39
}, - {
- "date": "2024-07-24",
- "available_count": 594,
- "booked_count": 268,
- "mean_available_rate": 196.0185185185185,
- "mean_booked_rate": 183.08582089552237,
- "median_available_rate": 169,
- "median_booked_rate": 162,
- "occupancy": 31.09
}, - {
- "date": "2024-07-25",
- "available_count": 571,
- "booked_count": 301,
- "mean_available_rate": 206.47460595446586,
- "mean_booked_rate": 191.62458471760797,
- "median_available_rate": 175,
- "median_booked_rate": 175,
- "occupancy": 34.52
}, - {
- "date": "2024-07-26",
- "available_count": 530,
- "booked_count": 341,
- "mean_available_rate": 222.5188679245283,
- "mean_booked_rate": 206.89149560117303,
- "median_available_rate": 189,
- "median_booked_rate": 188,
- "occupancy": 39.15
}, - {
- "date": "2024-07-27",
- "available_count": 517,
- "booked_count": 356,
- "mean_available_rate": 221.80851063829786,
- "mean_booked_rate": 202.76123595505618,
- "median_available_rate": 185,
- "median_booked_rate": 184,
- "occupancy": 40.78
}, - {
- "date": "2024-07-28",
- "available_count": 574,
- "booked_count": 294,
- "mean_available_rate": 199.87456445993033,
- "mean_booked_rate": 188.3231292517007,
- "median_available_rate": 175,
- "median_booked_rate": 169,
- "occupancy": 33.87
}, - {
- "date": "2024-07-29",
- "available_count": 613,
- "booked_count": 245,
- "mean_available_rate": 187.58401305057097,
- "mean_booked_rate": 183.6,
- "median_available_rate": 168,
- "median_booked_rate": 155,
- "occupancy": 28.55
}, - {
- "date": "2024-07-30",
- "available_count": 625,
- "booked_count": 233,
- "mean_available_rate": 188.8656,
- "mean_booked_rate": 181.6351931330472,
- "median_available_rate": 169,
- "median_booked_rate": 160,
- "occupancy": 27.16
}, - {
- "date": "2024-07-31",
- "available_count": 626,
- "booked_count": 233,
- "mean_available_rate": 193.5926517571885,
- "mean_booked_rate": 187.04291845493563,
- "median_available_rate": 170,
- "median_booked_rate": 161,
- "occupancy": 27.12
}, - {
- "date": "2024-08-01",
- "available_count": 608,
- "booked_count": 239,
- "mean_available_rate": 205.33059210526315,
- "mean_booked_rate": 186.02928870292888,
- "median_available_rate": 177,
- "median_booked_rate": 161,
- "occupancy": 28.22
}, - {
- "date": "2024-08-02",
- "available_count": 573,
- "booked_count": 285,
- "mean_available_rate": 221.05061082024432,
- "mean_booked_rate": 194.64912280701753,
- "median_available_rate": 193,
- "median_booked_rate": 175,
- "occupancy": 33.22
}, - {
- "date": "2024-08-03",
- "available_count": 564,
- "booked_count": 287,
- "mean_available_rate": 219.7163120567376,
- "mean_booked_rate": 197.10104529616726,
- "median_available_rate": 196,
- "median_booked_rate": 177,
- "occupancy": 33.73
}, - {
- "date": "2024-08-04",
- "available_count": 637,
- "booked_count": 219,
- "mean_available_rate": 197.64050235478808,
- "mean_booked_rate": 179.05479452054794,
- "median_available_rate": 175,
- "median_booked_rate": 160,
- "occupancy": 25.58
}, - {
- "date": "2024-08-05",
- "available_count": 659,
- "booked_count": 197,
- "mean_available_rate": 187.41881638846738,
- "mean_booked_rate": 176.61928934010152,
- "median_available_rate": 168,
- "median_booked_rate": 152,
- "occupancy": 23.01
}, - {
- "date": "2024-08-06",
- "available_count": 665,
- "booked_count": 191,
- "mean_available_rate": 186.9187969924812,
- "mean_booked_rate": 178.38219895287958,
- "median_available_rate": 167,
- "median_booked_rate": 152,
- "occupancy": 22.31
}, - {
- "date": "2024-08-07",
- "available_count": 628,
- "booked_count": 222,
- "mean_available_rate": 193.14968152866243,
- "mean_booked_rate": 185.05855855855856,
- "median_available_rate": 170,
- "median_booked_rate": 159,
- "occupancy": 26.12
}, - {
- "date": "2024-08-08",
- "available_count": 612,
- "booked_count": 243,
- "mean_available_rate": 205.16176470588235,
- "mean_booked_rate": 186.37860082304528,
- "median_available_rate": 178,
- "median_booked_rate": 159,
- "occupancy": 28.42
}, - {
- "date": "2024-08-09",
- "available_count": 599,
- "booked_count": 259,
- "mean_available_rate": 218.06010016694492,
- "mean_booked_rate": 192.76833976833976,
- "median_available_rate": 190,
- "median_booked_rate": 169,
- "occupancy": 30.19
}, - {
- "date": "2024-08-10",
- "available_count": 613,
- "booked_count": 253,
- "mean_available_rate": 216.06851549755302,
- "mean_booked_rate": 195.55731225296444,
- "median_available_rate": 190,
- "median_booked_rate": 172,
- "occupancy": 29.21
}, - {
- "date": "2024-08-11",
- "available_count": 659,
- "booked_count": 207,
- "mean_available_rate": 196.89833080424887,
- "mean_booked_rate": 178.72946859903382,
- "median_available_rate": 175,
- "median_booked_rate": 160,
- "occupancy": 23.9
}, - {
- "date": "2024-08-12",
- "available_count": 684,
- "booked_count": 178,
- "mean_available_rate": 185.640350877193,
- "mean_booked_rate": 177.51685393258427,
- "median_available_rate": 165,
- "median_booked_rate": 157,
- "occupancy": 20.65
}, - {
- "date": "2024-08-13",
- "available_count": 699,
- "booked_count": 164,
- "mean_available_rate": 183.63805436337626,
- "mean_booked_rate": 175.22560975609755,
- "median_available_rate": 162,
- "median_booked_rate": 152,
- "occupancy": 19
}, - {
- "date": "2024-08-14",
- "available_count": 691,
- "booked_count": 174,
- "mean_available_rate": 188.98697539797396,
- "mean_booked_rate": 181.59195402298852,
- "median_available_rate": 165,
- "median_booked_rate": 162,
- "occupancy": 20.12
}, - {
- "date": "2024-08-15",
- "available_count": 658,
- "booked_count": 208,
- "mean_available_rate": 201.838905775076,
- "mean_booked_rate": 187.39903846153845,
- "median_available_rate": 171,
- "median_booked_rate": 167,
- "occupancy": 24.02
}, - {
- "date": "2024-08-16",
- "available_count": 652,
- "booked_count": 219,
- "mean_available_rate": 210.0521472392638,
- "mean_booked_rate": 201.42922374429224,
- "median_available_rate": 185,
- "median_booked_rate": 173,
- "occupancy": 25.14
}, - {
- "date": "2024-08-17",
- "available_count": 665,
- "booked_count": 207,
- "mean_available_rate": 206.55789473684212,
- "mean_booked_rate": 208.7487922705314,
- "median_available_rate": 180,
- "median_booked_rate": 178,
- "occupancy": 23.74
}, - {
- "date": "2024-08-18",
- "available_count": 706,
- "booked_count": 160,
- "mean_available_rate": 188.06232294617564,
- "mean_booked_rate": 193.55,
- "median_available_rate": 164,
- "median_booked_rate": 168,
- "occupancy": 18.48
}, - {
- "date": "2024-08-19",
- "available_count": 747,
- "booked_count": 120,
- "mean_available_rate": 179.36010709504686,
- "mean_booked_rate": 182.84166666666667,
- "median_available_rate": 159,
- "median_booked_rate": 163,
- "occupancy": 13.84
}, - {
- "date": "2024-08-20",
- "available_count": 760,
- "booked_count": 107,
- "mean_available_rate": 177.98684210526315,
- "mean_booked_rate": 180.3271028037383,
- "median_available_rate": 157,
- "median_booked_rate": 158,
- "occupancy": 12.34
}, - {
- "date": "2024-08-21",
- "available_count": 756,
- "booked_count": 114,
- "mean_available_rate": 182.13756613756613,
- "mean_booked_rate": 176.73684210526315,
- "median_available_rate": 159,
- "median_booked_rate": 154,
- "occupancy": 13.1
}, - {
- "date": "2024-08-22",
- "available_count": 733,
- "booked_count": 140,
- "mean_available_rate": 193.6412005457026,
- "mean_booked_rate": 185.99285714285713,
- "median_available_rate": 165,
- "median_booked_rate": 165,
- "occupancy": 16.04
}, - {
- "date": "2024-08-23",
- "available_count": 610,
- "booked_count": 175,
- "mean_available_rate": 212.86065573770492,
- "mean_booked_rate": 195.86285714285714,
- "median_available_rate": 185,
- "median_booked_rate": 171,
- "occupancy": 22.29
}, - {
- "date": "2024-08-24",
- "available_count": 609,
- "booked_count": 180,
- "mean_available_rate": 212.367816091954,
- "mean_booked_rate": 196.76666666666668,
- "median_available_rate": 185,
- "median_booked_rate": 171,
- "occupancy": 22.81
}, - {
- "date": "2024-08-25",
- "available_count": 623,
- "booked_count": 159,
- "mean_available_rate": 193.9518459069021,
- "mean_booked_rate": 186.62893081761007,
- "median_available_rate": 168,
- "median_booked_rate": 168,
- "occupancy": 20.33
}, - {
- "date": "2024-08-26",
- "available_count": 648,
- "booked_count": 130,
- "mean_available_rate": 183.7685185185185,
- "mean_booked_rate": 184.40769230769232,
- "median_available_rate": 161,
- "median_booked_rate": 161,
- "occupancy": 16.71
}, - {
- "date": "2024-08-27",
- "available_count": 651,
- "booked_count": 124,
- "mean_available_rate": 184.5668202764977,
- "mean_booked_rate": 176.7983870967742,
- "median_available_rate": 163,
- "median_booked_rate": 152,
- "occupancy": 16
}, - {
- "date": "2024-08-28",
- "available_count": 642,
- "booked_count": 129,
- "mean_available_rate": 187.81308411214954,
- "mean_booked_rate": 180.06976744186048,
- "median_available_rate": 166,
- "median_booked_rate": 157,
- "occupancy": 16.73
}, - {
- "date": "2024-08-29",
- "available_count": 611,
- "booked_count": 168,
- "mean_available_rate": 199.09656301145662,
- "mean_booked_rate": 190.78571428571428,
- "median_available_rate": 170,
- "median_booked_rate": 166,
- "occupancy": 21.57
}, - {
- "date": "2024-08-30",
- "available_count": 570,
- "booked_count": 212,
- "mean_available_rate": 212.90175438596492,
- "mean_booked_rate": 198.45754716981133,
- "median_available_rate": 188,
- "median_booked_rate": 174,
- "occupancy": 27.11
}, - {
- "date": "2024-08-31",
- "available_count": 579,
- "booked_count": 206,
- "mean_available_rate": 213.0846286701209,
- "mean_booked_rate": 200.40776699029126,
- "median_available_rate": 187,
- "median_booked_rate": 174,
- "occupancy": 26.24
}
]
}, - "status": {
- "type": "success",
- "response_id": "API-S-064",
- "message": "Successfully retrieved Market Future Daily Pricing."
}
}
Whether you're looking to discover trending Submarkets or learn about a Submarket's historical performance, these endpoints can support your research.
We provide between 12 and 60 months of monthly historical data for the following key metrics:
submarket_id
for a known Submarket, you can use our Market Search endpoint.If you need to find AirDNA Markets or Submarkets, this endpoint allows you to find them via a simple search_term
.
Each result will provide:
id
that can be used in other endpoints for obtaining data.Schema for performing a request to search for a Market or Submarket
Successful Market Search Response
required | object (MarketSearchResponseSchema) |
required | object (Status) The Status object on the response envelope |
The request was invalid.
An internal server error occurred.
{- "search_term": "Denver",
- "pagination": {
- "page_size": 25,
- "offset": 0
}
}
{- "payload": {
- "page_info": {
- "page_size": 25,
- "offset": 0
}, - "results": [
- {
- "id": "airdna-163",
- "name": "Denver",
- "type": "market",
- "listing_count": 15231,
- "location_name": "Denver, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [ ],
- "zipcodes": [ ],
- "neighborhoods": [ ]
}
}, - {
- "id": "airdna-1490",
- "name": "Downtown Denver",
- "type": "submarket",
- "listing_count": 364,
- "location_name": "Downtown Denver, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [ ],
- "zipcodes": [
- "80294",
- "80264",
- "80293",
- "80290"
], - "neighborhoods": [
- "North Capitol Hill",
- "Golden Triangle",
- "CBD"
]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "56517",
- "name": "New Denver",
- "type": "market",
- "listing_count": 15,
- "location_name": "New Denver, British Columbia, Canada, CA",
- "location": {
- "state": "British Columbia",
- "country": "Canada",
- "country_code": "ca"
}, - "legacy_location": {
- "city_names": [ ],
- "zipcodes": [ ],
- "neighborhoods": [ ]
}
}, - {
- "id": "airdna-1771",
- "name": "Aurora",
- "type": "submarket",
- "listing_count": 1090,
- "location_name": "Aurora, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [
- "Aurora"
], - "zipcodes": [
- "80014",
- "80012",
- "80013",
- "80018",
- "80015",
- "80011",
- "80017",
- "80010",
- "80045",
- "80016"
], - "neighborhoods": [ ]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-1013",
- "name": "Highland",
- "type": "submarket",
- "listing_count": 969,
- "location_name": "Highland, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [ ],
- "zipcodes": [
- "80212",
- "80211"
], - "neighborhoods": [
- "Highland",
- "Berkeley",
- "Jefferson Park"
]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-1525",
- "name": "Arvada",
- "type": "submarket",
- "listing_count": 917,
- "location_name": "Arvada, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [
- "Arvada"
], - "zipcodes": [
- "80003",
- "80004",
- "80002",
- "80005"
], - "neighborhoods": [ ]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-5641",
- "name": "Five Points",
- "type": "submarket",
- "listing_count": 795,
- "location_name": "Five Points, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [ ],
- "zipcodes": [
- "80205"
], - "neighborhoods": [
- "Skyland",
- "Five Points",
- "City Park",
- "Whittier"
]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-2325",
- "name": "Denver Heights",
- "type": "submarket",
- "listing_count": 786,
- "location_name": "Denver Heights, Texas, United States, US",
- "location": {
- "state": "Texas",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [ ],
- "zipcodes": [
- "78210"
], - "neighborhoods": [ ]
}, - "parent_market": {
- "id": "airdna-416",
- "name": "San Antonio"
}
}, - {
- "id": "airdna-1612",
- "name": "West Colfax",
- "type": "submarket",
- "listing_count": 766,
- "location_name": "West Colfax, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [ ],
- "zipcodes": [
- "80204"
], - "neighborhoods": [
- "Valverde",
- "Sun Valley",
- "Lincoln Park",
- "Barnum West",
- "Villa Park",
- "Barnum",
- "West Colfax",
- "Baker"
]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-2331",
- "name": "Chaffee Park",
- "type": "submarket",
- "listing_count": 742,
- "location_name": "Chaffee Park, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [ ],
- "zipcodes": [
- "80221"
], - "neighborhoods": [
- "Chaffee Park"
]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-9143",
- "name": "Golden",
- "type": "submarket",
- "listing_count": 560,
- "location_name": "Golden, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [
- "Golden"
], - "zipcodes": [
- "80419",
- "80403",
- "80228",
- "80401"
], - "neighborhoods": [ ]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-2705",
- "name": "Edgewater",
- "type": "submarket",
- "listing_count": 503,
- "location_name": "Edgewater, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [ ],
- "zipcodes": [
- "80214",
- "80226"
], - "neighborhoods": [ ]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-3038",
- "name": "Littleton",
- "type": "submarket",
- "listing_count": 448,
- "location_name": "Littleton, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [
- "Littleton"
], - "zipcodes": [
- "80120",
- "80121",
- "80123",
- "80122",
- "80128"
], - "neighborhoods": [
- "Marston"
]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-1335",
- "name": "DIA Airport",
- "type": "submarket",
- "listing_count": 425,
- "location_name": "DIA Airport, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [
- "Bennett",
- "Watkins"
], - "zipcodes": [
- "80102",
- "80137",
- "80019",
- "80249"
], - "neighborhoods": [
- "Gateway/Green Valley Ranch",
- "DIA"
]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-6909",
- "name": "Thornton",
- "type": "submarket",
- "listing_count": 408,
- "location_name": "Thornton, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [
- "Thornton"
], - "zipcodes": [
- "80260",
- "80234",
- "80229",
- "80241",
- "80233"
], - "neighborhoods": [ ]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-6596",
- "name": "LoDo",
- "type": "submarket",
- "listing_count": 396,
- "location_name": "LoDo, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [ ],
- "zipcodes": [
- "80202"
], - "neighborhoods": [
- "Auraria",
- "LoDo"
]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-8789",
- "name": "Centennial",
- "type": "submarket",
- "listing_count": 362,
- "location_name": "Centennial, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [
- "Englewood"
], - "zipcodes": [
- "80112",
- "80111"
], - "neighborhoods": [ ]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-4255",
- "name": "Wheat Ridge",
- "type": "submarket",
- "listing_count": 345,
- "location_name": "Wheat Ridge, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [
- "Wheat Ridge"
], - "zipcodes": [
- "80033"
], - "neighborhoods": [ ]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-5962",
- "name": "Westminster",
- "type": "submarket",
- "listing_count": 327,
- "location_name": "Westminster, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [
- "Westminster"
], - "zipcodes": [
- "80030",
- "80031"
], - "neighborhoods": [ ]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-1049",
- "name": "Denver Harbor",
- "type": "submarket",
- "listing_count": 316,
- "location_name": "Denver Harbor, Texas, United States, US",
- "location": {
- "state": "Texas",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [ ],
- "zipcodes": [
- "77020"
], - "neighborhoods": [ ]
}, - "parent_market": {
- "id": "airdna-2",
- "name": "Houston"
}
}, - {
- "id": "airdna-4200",
- "name": "Broomfield",
- "type": "submarket",
- "listing_count": 289,
- "location_name": "Broomfield, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [
- "Broomfield"
], - "zipcodes": [
- "80020",
- "80007",
- "80023",
- "80021"
], - "neighborhoods": [ ]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-2083",
- "name": "Commerce City",
- "type": "submarket",
- "listing_count": 256,
- "location_name": "Commerce City, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [
- "Commerce City"
], - "zipcodes": [
- "80022"
], - "neighborhoods": [
- "Elyria Swansea"
]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-1613",
- "name": "Brighton",
- "type": "submarket",
- "listing_count": 247,
- "location_name": "Brighton, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [
- "Keenesburg",
- "Brighton",
- "Fort Lupton",
- "Hudson",
- "Roggen"
], - "zipcodes": [
- "80602",
- "80603",
- "80642",
- "80643",
- "80601",
- "80652",
- "80621"
], - "neighborhoods": [ ]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-6593",
- "name": "Englewood",
- "type": "submarket",
- "listing_count": 238,
- "location_name": "Englewood, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [ ],
- "zipcodes": [
- "80113",
- "80110"
], - "neighborhoods": [ ]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-4167",
- "name": "Hale",
- "type": "submarket",
- "listing_count": 235,
- "location_name": "Hale, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [ ],
- "zipcodes": [
- "80220"
], - "neighborhoods": [
- "Montclair",
- "Hale",
- "East Colfax",
- "South Park Hill"
]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}
]
}, - "status": {
- "type": "success",
- "response_id": "API-S-011",
- "message": "Successfully fetched 2 Markets & 23 Submarkets for the requested parameters."
}
}
Provides basic information about a specific Submarket. Includes key data such as:
Successful Submarket Details Response
required | object (Submarket) General Information about a Submarket. |
required | object (Status) The Status object on the response envelope |
The request was invalid.
Failed to find data matching your request.
An internal server error occurred.
{- "payload": {
- "metrics": {
- "market_score": 90.07,
- "revenue": 54734.44,
- "booked": 0.661518,
- "daily_rate": 226.68661,
- "revpar": 149.9573698630137
}, - "id": "airdna-2331",
- "name": "Chaffee Park",
- "market_type": "suburban",
- "parent_market_name": "Denver",
- "market_id": "airdna-163",
- "images": [
], - "region_type": "neighborhood",
- "geospatial": null
}, - "status": {
- "type": "success",
- "response_id": "API-S-007",
- "message": "Successfully retrieved Submarket Details."
}
}
If you're looking to explore & compare top Submarkets, you can do so either by general Submarket characteristics, or even compare them based on specific types of Listings!
Each Submarket includes the following summary metrics (Last 12 months):
Here are some examples of the many things you can do:
Schema for performing a request to fetch Submarkets relative to a Country.
Successfully retrieved Submarkets within a Country.
required | object (CountrySubmarketsResponseSchema) |
required | object (Status) The Status object on the response envelope |
The request was invalid.
Failed to find data matching your request.
An internal server error occurred.
{- "pagination": {
- "page_size": 3,
- "offset": 0
}, - "currency": "usd",
- "sort_order": "revenue",
- "include_geoms": false
}
{- "payload": {
- "page_info": {
- "total_count": 27072,
- "page_size": 3,
- "offset": 0
}, - "sort_order": "revenue",
- "submarkets": [
- {
- "metrics": {
- "market_score": null,
- "revenue": 640687.57,
- "booked": 0.514019,
- "daily_rate": 3414.8728,
- "revpar": 1755.308410958904
}, - "id": 13115,
- "name": "83601",
- "market_type": "rural",
- "parent_market_name": "Atlanta",
- "market_id": 61080,
- "images": [
], - "region_type": "zipcode",
- "geospatial": null
}, - {
- "metrics": {
- "market_score": null,
- "revenue": 535643.91,
- "booked": 0.658147,
- "daily_rate": 2229.7717,
- "revpar": 1467.5175616438355
}, - "id": 28331,
- "name": "29565",
- "market_type": "rural",
- "parent_market_name": "Latta",
- "market_id": 78402,
- "images": [
], - "region_type": "zipcode",
- "geospatial": null
}, - {
- "metrics": {
- "market_score": null,
- "revenue": 459900,
- "booked": 1,
- "daily_rate": 1260,
- "revpar": 1260
}, - "id": 7898,
- "name": "87315",
- "market_type": "rural",
- "parent_market_name": "Fence Lake",
- "market_id": 71914,
- "images": [
], - "region_type": "zipcode",
- "geospatial": null
}
]
}, - "status": {
- "type": "success",
- "response_id": "API-S-003",
- "message": "Successfully retrieved Submarkets for the requested country."
}
}
If you're looking to explore & compare top Submarkets, you can do so either by general Submarket characteristics, or even compare them based on specific types of Listings!
Each Submarket includes the following summary metrics (Last 12 months):
Here are some examples of the many things you can do:
Schema for performing a request to fetch Submarkets relative to a Market.
Successfully retrieved Submarkets within a Country.
required | object (CountrySubmarketsResponseSchema) |
required | object (Status) The Status object on the response envelope |
The request was invalid.
Failed to find data matching your request.
An internal server error occurred.
{- "pagination": {
- "page_size": 25,
- "offset": 0
}, - "bounding_box": {
- "ne": {
- "lat": 40.23006276087403,
- "lng": -104.4991649290008
}, - "sw": {
- "lat": 39.321066395153956,
- "lng": -105.42090990822489
}
}, - "filters": [
- {
- "field": "accommodates",
- "type": "gte",
- "value": 4
}
], - "currency": "usd",
- "sort_order": "market_score",
- "include_geoms": false
}
{- "payload": {
- "page_info": {
- "total_count": 27072,
- "page_size": 3,
- "offset": 0
}, - "sort_order": "revenue",
- "submarkets": [
- {
- "metrics": {
- "market_score": null,
- "revenue": 640687.57,
- "booked": 0.514019,
- "daily_rate": 3414.8728,
- "revpar": 1755.308410958904
}, - "id": 13115,
- "name": "83601",
- "market_type": "rural",
- "parent_market_name": "Atlanta",
- "market_id": 61080,
- "images": [
], - "region_type": "zipcode",
- "geospatial": null
}, - {
- "metrics": {
- "market_score": null,
- "revenue": 535643.91,
- "booked": 0.658147,
- "daily_rate": 2229.7717,
- "revpar": 1467.5175616438355
}, - "id": 28331,
- "name": "29565",
- "market_type": "rural",
- "parent_market_name": "Latta",
- "market_id": 78402,
- "images": [
], - "region_type": "zipcode",
- "geospatial": null
}, - {
- "metrics": {
- "market_score": null,
- "revenue": 459900,
- "booked": 1,
- "daily_rate": 1260,
- "revpar": 1260
}, - "id": 7898,
- "name": "87315",
- "market_type": "rural",
- "parent_market_name": "Fence Lake",
- "market_id": 71914,
- "images": [
], - "region_type": "zipcode",
- "geospatial": null
}
]
}, - "status": {
- "type": "success",
- "response_id": "API-S-003",
- "message": "Successfully retrieved Submarkets for the requested country."
}
}
This endpoint provides 12 to 60 months of historical monthly occupancy data for a Submarket.
Each month shows the following metrics:
Supports some Listing Filters to calculate historical occupancy for certain types of STR Listings within the Submarket.
Supports requests to calculate custom percentiles for occupancy rates within the Submarket.
Schema for performing a request to fetch occupancy metrics for a Submarket.
Successful Submarket Occupancy Metrics Response.
required | object (MarketOccupancyMetricsResponseSchema) |
required | object (Status) The Status object on the response envelope |
The request was invalid.
Failed to find data matching your request.
An internal server error occurred.
{- "num_months": 12,
- "filters": [
- {
- "field": "ratings",
- "type": "gte",
- "value": 4.9
}
]
}
{- "payload": {
- "metrics": [
- {
- "date": "2023-05",
- "occupancy_rate": 68.96,
- "available_listings": 10,
- "booked_listings": 226,
- "days_available": 2023,
- "days_booked": 4191
}, - {
- "date": "2023-06",
- "occupancy_rate": 80.54,
- "available_listings": 2,
- "booked_listings": 240,
- "days_available": 1364,
- "days_booked": 4932
}, - {
- "date": "2023-07",
- "occupancy_rate": 77.26,
- "available_listings": 3,
- "booked_listings": 253,
- "days_available": 1619,
- "days_booked": 5092
}, - {
- "date": "2023-08",
- "occupancy_rate": 69.66,
- "available_listings": 12,
- "booked_listings": 242,
- "days_available": 2164,
- "days_booked": 4495
}, - {
- "date": "2023-09",
- "occupancy_rate": 74.74,
- "available_listings": 2,
- "booked_listings": 248,
- "days_available": 1740,
- "days_booked": 4562
}, - {
- "date": "2023-10",
- "occupancy_rate": 66.46,
- "available_listings": 6,
- "booked_listings": 237,
- "days_available": 2216,
- "days_booked": 4159
}, - {
- "date": "2023-11",
- "occupancy_rate": 58.25,
- "available_listings": 11,
- "booked_listings": 222,
- "days_available": 2697,
- "days_booked": 3389
}, - {
- "date": "2023-12",
- "occupancy_rate": 59.23,
- "available_listings": 9,
- "booked_listings": 236,
- "days_available": 2863,
- "days_booked": 3601
}, - {
- "date": "2024-01",
- "occupancy_rate": 46.22,
- "available_listings": 20,
- "booked_listings": 225,
- "days_available": 3663,
- "days_booked": 2853
}, - {
- "date": "2024-02",
- "occupancy_rate": 60.82,
- "available_listings": 7,
- "booked_listings": 237,
- "days_available": 2975,
- "days_booked": 3298
}, - {
- "date": "2024-03",
- "occupancy_rate": 59.85,
- "available_listings": 6,
- "booked_listings": 244,
- "days_available": 2737,
- "days_booked": 3863
}, - {
- "date": "2024-04",
- "occupancy_rate": 61.69,
- "available_listings": 9,
- "booked_listings": 244,
- "days_available": 2650,
- "days_booked": 3768
}, - {
- "date": "2024-05",
- "occupancy_rate": 70.12,
- "available_listings": 6,
- "booked_listings": 244,
- "days_available": 2122,
- "days_booked": 4433
}
], - "monthly_pct_change": 13.67,
- "yearly_pct_change": 1.68
}, - "status": {
- "type": "success",
- "response_id": "API-S-047",
- "message": "Successfully retrieved Submarket occupancy rate metrics."
}
}
This endpoint provides 12 to 60 months of historical monthly revenue data for a Submarket.
Schema for performing a request to fetch average revenue metrics with currency for a Submarket.
Successful Submarket Average Revenue Metrics Response
required | object (MarketAvgRevenueMetricsResponseSchema) |
required | object (Status) The Status object on the response envelope |
The request was invalid.
Failed to find data matching your request.
An internal server error occurred.
{- "num_months": 12,
- "currency": "eur"
}
{- "payload": {
- "metrics": [
- {
- "date": "2023-05",
- "revenue": 3170.91
}, - {
- "date": "2023-06",
- "revenue": 4171.85
}, - {
- "date": "2023-07",
- "revenue": 4343.17
}, - {
- "date": "2023-08",
- "revenue": 3912.5
}, - {
- "date": "2023-09",
- "revenue": 3868.81
}, - {
- "date": "2023-10",
- "revenue": 3576.23
}, - {
- "date": "2023-11",
- "revenue": 2889.52
}, - {
- "date": "2023-12",
- "revenue": 2912.49
}, - {
- "date": "2024-01",
- "revenue": 2486.81
}, - {
- "date": "2024-02",
- "revenue": 2731.83
}, - {
- "date": "2024-03",
- "revenue": 3469.15
}, - {
- "date": "2024-04",
- "revenue": 2915.01
}
], - "monthly_pct_change": -15.97,
- "yearly_pct_change": -7.39
}, - "status": {
- "type": "success",
- "response_id": "API-S-033",
- "message": "Successfully retrieved Submarket average monthly revenue metrics."
}
}
This endpoint provides 12 to 60 months of historical monthly average daily rate data for a Submarket.
Schema for performing a request to fetch Average Daily Rate metrics for a Submarket.
Successful Submarket Average Daily Rate Metrics Response
required | object (MarketAvgDailyRateMetricsResponseSchema) |
required | object (Status) The Status object on the response envelope |
The request was invalid.
Failed to find data matching your request.
An internal server error occurred.
{- "num_months": 12,
- "filters": [
- {
- "field": "price_tier",
- "type": "select",
- "value": "budget"
}
], - "currency": "usd"
}
{- "payload": {
- "metrics": [
- {
- "date": "2023-05",
- "adr": 90.55
}, - {
- "date": "2023-06",
- "adr": 156.23
}, - {
- "date": "2023-07",
- "adr": 172.19
}, - {
- "date": "2023-08",
- "adr": 110.62
}, - {
- "date": "2023-09",
- "adr": 133.74
}, - {
- "date": "2023-10",
- "adr": 145.48
}, - {
- "date": "2023-11",
- "adr": 118.38
}, - {
- "date": "2023-12",
- "adr": 112.07
}, - {
- "date": "2024-01",
- "adr": 157.18
}, - {
- "date": "2024-02",
- "adr": 149.82
}, - {
- "date": "2024-03",
- "adr": 149.05
}, - {
- "date": "2024-04",
- "adr": 126.73
}
], - "monthly_pct_change": -14.98,
- "yearly_pct_change": 46.1
}, - "status": {
- "type": "success",
- "response_id": "API-S-025",
- "message": "Successfully retrieved Submarket average daily rate metrics."
}
}
This endpoint provides 12 to 60 months of historical monthly RevPAR (Revenue Per Available Rental) data for a Submarket.
Schema for performing a request to fetch RevPAR metrics for a Submarket.
Successful Submarket Revpar Metrics Response
required | object (MarketRevparMetricsResponseSchema) |
required | object (Status) The Status object on the response envelope |
The request was invalid.
Failed to find data matching your request.
An internal server error occurred.
{- "num_months": 12,
- "filters": [
- {
- "field": "accommodates",
- "type": "lt",
- "value": 5
}
], - "currency": "usd"
}
{- "payload": {
- "metrics": [
- {
- "date": "2023-05",
- "revpar": 92.39
}, - {
- "date": "2023-06",
- "revpar": 125.7
}, - {
- "date": "2023-07",
- "revpar": 127.11
}, - {
- "date": "2023-08",
- "revpar": 111.1
}, - {
- "date": "2023-09",
- "revpar": 116.56
}, - {
- "date": "2023-10",
- "revpar": 97.67
}, - {
- "date": "2023-11",
- "revpar": 72.37
}, - {
- "date": "2023-12",
- "revpar": 62.93
}, - {
- "date": "2024-01",
- "revpar": 60.43
}, - {
- "date": "2024-02",
- "revpar": 105.58
}, - {
- "date": "2024-03",
- "revpar": 72.76
}, - {
- "date": "2024-04",
- "revpar": 72.07
}
], - "monthly_pct_change": -0.95,
- "yearly_pct_change": -28.99
}, - "status": {
- "type": "success",
- "response_id": "API-S-055",
- "message": "Successfully retrieved Submarket revpar metrics."
}
}
This endpoint provides 12 to 20 months of historical monthly booking lead time data for a Submarket.
Schema for performing a request to fetch Booking Lead Time for a Submarket.
Successful Submarket Booking Lead Time Metrics Response
required | object (MarketBookingLeadTimeMetricsResponseSchema) |
required | object (Status) The Status object on the response envelope |
The request was invalid.
Failed to find data matching your request.
An internal server error occurred.
{- "num_months": 12,
- "filters": [
- {
- "field": "bathrooms",
- "type": "select",
- "value": 3
}
]
}
{- "payload": {
- "metrics": [
- {
- "date": "2023-05-01",
- "reservation_counts": [
- {
- "lead_time_day_range": [
- 0,
- 6
], - "num_reservations": 7
}, - {
- "lead_time_day_range": [
- 7,
- 14
], - "num_reservations": 0
}, - {
- "lead_time_day_range": [
- 15,
- 30
], - "num_reservations": 0
}, - {
- "lead_time_day_range": [
- 31,
- 60
], - "num_reservations": 2
}, - {
- "lead_time_day_range": [
- 61,
- 90
], - "num_reservations": 1
}, - {
- "lead_time_day_range": [
- 91,
- null
], - "num_reservations": 6
}
]
}, - {
- "date": "2023-06-01",
- "reservation_counts": [
- {
- "lead_time_day_range": [
- 0,
- 6
], - "num_reservations": 6
}, - {
- "lead_time_day_range": [
- 7,
- 14
], - "num_reservations": 4
}, - {
- "lead_time_day_range": [
- 15,
- 30
], - "num_reservations": 3
}, - {
- "lead_time_day_range": [
- 31,
- 60
], - "num_reservations": 3
}, - {
- "lead_time_day_range": [
- 61,
- 90
], - "num_reservations": 1
}, - {
- "lead_time_day_range": [
- 91,
- null
], - "num_reservations": 6
}
]
}, - {
- "date": "2023-07-01",
- "reservation_counts": [
- {
- "lead_time_day_range": [
- 0,
- 6
], - "num_reservations": 10
}, - {
- "lead_time_day_range": [
- 7,
- 14
], - "num_reservations": 3
}, - {
- "lead_time_day_range": [
- 15,
- 30
], - "num_reservations": 7
}, - {
- "lead_time_day_range": [
- 31,
- 60
], - "num_reservations": 3
}, - {
- "lead_time_day_range": [
- 61,
- 90
], - "num_reservations": 0
}, - {
- "lead_time_day_range": [
- 91,
- null
], - "num_reservations": 8
}
]
}, - {
- "date": "2023-08-01",
- "reservation_counts": [
- {
- "lead_time_day_range": [
- 0,
- 6
], - "num_reservations": 4
}, - {
- "lead_time_day_range": [
- 7,
- 14
], - "num_reservations": 4
}, - {
- "lead_time_day_range": [
- 15,
- 30
], - "num_reservations": 5
}, - {
- "lead_time_day_range": [
- 31,
- 60
], - "num_reservations": 3
}, - {
- "lead_time_day_range": [
- 61,
- 90
], - "num_reservations": 0
}, - {
- "lead_time_day_range": [
- 91,
- null
], - "num_reservations": 7
}
]
}, - {
- "date": "2023-09-01",
- "reservation_counts": [
- {
- "lead_time_day_range": [
- 0,
- 6
], - "num_reservations": 6
}, - {
- "lead_time_day_range": [
- 7,
- 14
], - "num_reservations": 2
}, - {
- "lead_time_day_range": [
- 15,
- 30
], - "num_reservations": 5
}, - {
- "lead_time_day_range": [
- 31,
- 60
], - "num_reservations": 8
}, - {
- "lead_time_day_range": [
- 61,
- 90
], - "num_reservations": 0
}, - {
- "lead_time_day_range": [
- 91,
- null
], - "num_reservations": 5
}
]
}, - {
- "date": "2023-10-01",
- "reservation_counts": [
- {
- "lead_time_day_range": [
- 0,
- 6
], - "num_reservations": 8
}, - {
- "lead_time_day_range": [
- 7,
- 14
], - "num_reservations": 0
}, - {
- "lead_time_day_range": [
- 15,
- 30
], - "num_reservations": 3
}, - {
- "lead_time_day_range": [
- 31,
- 60
], - "num_reservations": 7
}, - {
- "lead_time_day_range": [
- 61,
- 90
], - "num_reservations": 1
}, - {
- "lead_time_day_range": [
- 91,
- null
], - "num_reservations": 8
}
]
}, - {
- "date": "2023-11-01",
- "reservation_counts": [
- {
- "lead_time_day_range": [
- 0,
- 6
], - "num_reservations": 4
}, - {
- "lead_time_day_range": [
- 7,
- 14
], - "num_reservations": 3
}, - {
- "lead_time_day_range": [
- 15,
- 30
], - "num_reservations": 6
}, - {
- "lead_time_day_range": [
- 31,
- 60
], - "num_reservations": 4
}, - {
- "lead_time_day_range": [
- 61,
- 90
], - "num_reservations": 1
}, - {
- "lead_time_day_range": [
- 91,
- null
], - "num_reservations": 6
}
]
}, - {
- "date": "2023-12-01",
- "reservation_counts": [
- {
- "lead_time_day_range": [
- 0,
- 6
], - "num_reservations": 5
}, - {
- "lead_time_day_range": [
- 7,
- 14
], - "num_reservations": 4
}, - {
- "lead_time_day_range": [
- 15,
- 30
], - "num_reservations": 6
}, - {
- "lead_time_day_range": [
- 31,
- 60
], - "num_reservations": 3
}, - {
- "lead_time_day_range": [
- 61,
- 90
], - "num_reservations": 1
}, - {
- "lead_time_day_range": [
- 91,
- null
], - "num_reservations": 4
}
]
}, - {
- "date": "2024-01-01",
- "reservation_counts": [
- {
- "lead_time_day_range": [
- 0,
- 6
], - "num_reservations": 9
}, - {
- "lead_time_day_range": [
- 7,
- 14
], - "num_reservations": 0
}, - {
- "lead_time_day_range": [
- 15,
- 30
], - "num_reservations": 5
}, - {
- "lead_time_day_range": [
- 31,
- 60
], - "num_reservations": 1
}, - {
- "lead_time_day_range": [
- 61,
- 90
], - "num_reservations": 0
}, - {
- "lead_time_day_range": [
- 91,
- null
], - "num_reservations": 7
}
]
}, - {
- "date": "2024-02-01",
- "reservation_counts": [
- {
- "lead_time_day_range": [
- 0,
- 6
], - "num_reservations": 8
}, - {
- "lead_time_day_range": [
- 7,
- 14
], - "num_reservations": 3
}, - {
- "lead_time_day_range": [
- 15,
- 30
], - "num_reservations": 2
}, - {
- "lead_time_day_range": [
- 31,
- 60
], - "num_reservations": 2
}, - {
- "lead_time_day_range": [
- 61,
- 90
], - "num_reservations": 0
}, - {
- "lead_time_day_range": [
- 91,
- null
], - "num_reservations": 4
}
]
}, - {
- "date": "2024-03-01",
- "reservation_counts": [
- {
- "lead_time_day_range": [
- 0,
- 6
], - "num_reservations": 3
}, - {
- "lead_time_day_range": [
- 7,
- 14
], - "num_reservations": 3
}, - {
- "lead_time_day_range": [
- 15,
- 30
], - "num_reservations": 6
}, - {
- "lead_time_day_range": [
- 31,
- 60
], - "num_reservations": 1
}, - {
- "lead_time_day_range": [
- 61,
- 90
], - "num_reservations": 2
}, - {
- "lead_time_day_range": [
- 91,
- null
], - "num_reservations": 7
}
]
}, - {
- "date": "2024-04-01",
- "reservation_counts": [
- {
- "lead_time_day_range": [
- 0,
- 6
], - "num_reservations": 6
}, - {
- "lead_time_day_range": [
- 7,
- 14
], - "num_reservations": 2
}, - {
- "lead_time_day_range": [
- 15,
- 30
], - "num_reservations": 1
}, - {
- "lead_time_day_range": [
- 31,
- 60
], - "num_reservations": 8
}, - {
- "lead_time_day_range": [
- 61,
- 90
], - "num_reservations": 0
}, - {
- "lead_time_day_range": [
- 91,
- null
], - "num_reservations": 4
}
]
}
], - "monthly_pct_change": -4.55,
- "yearly_pct_change": 23.53
}, - "status": {
- "type": "success",
- "response_id": "API-S-037",
- "message": "Successfully retrieved Submarket booking lead time metrics."
}
}
This endpoint provides 12 to 20 months of historical monthly average length of stay data for a Submarket.
Schema for performing a request to fetch Average Length Of Stay metrics for a Submarket.
Successful Submarket Average Length of Stay Metrics Response
required | object (MarketAvgLengthOfStayMetricsResponseSchema) |
required | object (Status) The Status object on the response envelope |
The request was invalid.
Failed to find data matching your request.
An internal server error occurred.
{- "num_months": 12
}
{- "payload": {
- "metrics": [
- {
- "date": "2023-06",
- "days_avg": 3.98
}, - {
- "date": "2023-07",
- "days_avg": 3.49
}, - {
- "date": "2023-08",
- "days_avg": 4.14
}, - {
- "date": "2023-09",
- "days_avg": 3.5
}, - {
- "date": "2023-10",
- "days_avg": 3.3
}, - {
- "date": "2023-11",
- "days_avg": 3.51
}, - {
- "date": "2023-12",
- "days_avg": 4.46
}, - {
- "date": "2024-01",
- "days_avg": 3.22
}, - {
- "date": "2024-02",
- "days_avg": 3.18
}, - {
- "date": "2024-03",
- "days_avg": 3.6
}, - {
- "date": "2024-04",
- "days_avg": 3.37
}, - {
- "date": "2024-05",
- "days_avg": 3.64
}
], - "monthly_pct_change": 8,
- "yearly_pct_change": -11.28
}, - "status": {
- "type": "success",
- "response_id": "API-S-029",
- "message": "Successfully retrieved Submarket average length of stay metrics."
}
}
This endpoint provides 12 to 60 months of active listings count data for a Submarket.
Schema for performing a request to fetch Active Listings Count for a Submarket.
Successful Submarket Active Listings Count Response
required | object (MarketActiveListingsCountResponseSchema) |
required | object (Status) The Status object on the response envelope |
The request was invalid.
Failed to find data matching your request.
An internal server error occurred.
{- "num_months": 12,
- "filters": [
- {
- "field": "bedrooms",
- "type": "select",
- "value": 3
}
]
}
{- "payload": {
- "metrics": [
- {
- "date": "2023-06",
- "listing_count": 99
}, - {
- "date": "2023-07",
- "listing_count": 105
}, - {
- "date": "2023-08",
- "listing_count": 105
}, - {
- "date": "2023-09",
- "listing_count": 102
}, - {
- "date": "2023-10",
- "listing_count": 91
}, - {
- "date": "2023-11",
- "listing_count": 90
}, - {
- "date": "2023-12",
- "listing_count": 85
}, - {
- "date": "2024-01",
- "listing_count": 86
}, - {
- "date": "2024-02",
- "listing_count": 82
}, - {
- "date": "2024-03",
- "listing_count": 79
}, - {
- "date": "2024-04",
- "listing_count": 82
}, - {
- "date": "2024-05",
- "listing_count": 90
}
], - "monthly_pct_change": 9.76,
- "yearly_pct_change": -4.26
}, - "status": {
- "type": "success",
- "response_id": "API-S-019",
- "message": "Successfully retrieved Submarket active listings count."
}
}
This endpoint provides 1 to 12 months of future daily pricing data for a Submarket.
Schema for performing a request to fetch future metrics with currency for a Submarket.
Successful Submarket Future Rates Response
required | object (MarketFuturePricingResponseSchema) |
required | object (Status) The Status object on the response envelope |
The request was invalid.
Failed to find data matching your request.
An internal server error occurred.
{- "num_months": 3,
- "filters": [
- {
- "field": "accommodates",
- "type": "select",
- "value": 4
}
], - "currency": "usd"
}
{- "payload": {
- "metrics": [
- {
- "date": "2024-06-04",
- "available_count": 3,
- "booked_count": 3,
- "mean_available_rate": 166.33333333333334,
- "mean_booked_rate": 147.66666666666666,
- "median_available_rate": 175,
- "median_booked_rate": 109,
- "occupancy": 50
}, - {
- "date": "2024-06-05",
- "available_count": 3,
- "booked_count": 3,
- "mean_available_rate": 169.33333333333334,
- "mean_booked_rate": 147.66666666666666,
- "median_available_rate": 184,
- "median_booked_rate": 109,
- "occupancy": 50
}, - {
- "date": "2024-06-06",
- "available_count": 2,
- "booked_count": 4,
- "mean_available_rate": 168,
- "mean_booked_rate": 174.75,
- "median_available_rate": 99,
- "median_booked_rate": 111,
- "occupancy": 66.67
}, - {
- "date": "2024-06-07",
- "available_count": 3,
- "booked_count": 3,
- "mean_available_rate": 160,
- "mean_booked_rate": 207.33333333333334,
- "median_available_rate": 140,
- "median_booked_rate": 256,
- "occupancy": 50
}, - {
- "date": "2024-06-08",
- "available_count": 3,
- "booked_count": 3,
- "mean_available_rate": 161.66666666666666,
- "mean_booked_rate": 205,
- "median_available_rate": 142,
- "median_booked_rate": 249,
- "occupancy": 50
}, - {
- "date": "2024-06-09",
- "available_count": 3,
- "booked_count": 2,
- "mean_available_rate": 135.66666666666666,
- "mean_booked_rate": 239.5,
- "median_available_rate": 99,
- "median_booked_rate": 223,
- "occupancy": 40
}, - {
- "date": "2024-06-10",
- "available_count": 4,
- "booked_count": 2,
- "mean_available_rate": 118,
- "mean_booked_rate": 225.5,
- "median_available_rate": 80,
- "median_booked_rate": 195,
- "occupancy": 33.33
}, - {
- "date": "2024-06-11",
- "available_count": 3,
- "booked_count": 3,
- "mean_available_rate": 131,
- "mean_booked_rate": 187,
- "median_available_rate": 99,
- "median_booked_rate": 195,
- "occupancy": 50
}, - {
- "date": "2024-06-12",
- "available_count": 1,
- "booked_count": 6,
- "mean_available_rate": 99,
- "mean_booked_rate": 175.16666666666666,
- "median_available_rate": 99,
- "median_booked_rate": 137,
- "occupancy": 85.71
}, - {
- "date": "2024-06-13",
- "available_count": 1,
- "booked_count": 6,
- "mean_available_rate": 99,
- "mean_booked_rate": 182.66666666666666,
- "median_available_rate": 99,
- "median_booked_rate": 137,
- "occupancy": 85.71
}, - {
- "date": "2024-06-14",
- "available_count": 0,
- "booked_count": 7,
- "mean_available_rate": 0,
- "mean_booked_rate": 184.57142857142858,
- "median_available_rate": 0,
- "median_booked_rate": 155,
- "occupancy": 100
}, - {
- "date": "2024-06-15",
- "available_count": 1,
- "booked_count": 6,
- "mean_available_rate": 143,
- "mean_booked_rate": 189.33333333333334,
- "median_available_rate": 143,
- "median_booked_rate": 143,
- "occupancy": 85.71
}, - {
- "date": "2024-06-16",
- "available_count": 2,
- "booked_count": 5,
- "mean_available_rate": 174,
- "mean_booked_rate": 166.8,
- "median_available_rate": 111,
- "median_booked_rate": 128,
- "occupancy": 71.43
}, - {
- "date": "2024-06-17",
- "available_count": 1,
- "booked_count": 5,
- "mean_available_rate": 225,
- "mean_booked_rate": 158.6,
- "median_available_rate": 225,
- "median_booked_rate": 108,
- "occupancy": 83.33
}, - {
- "date": "2024-06-18",
- "available_count": 1,
- "booked_count": 5,
- "mean_available_rate": 225,
- "mean_booked_rate": 163.2,
- "median_available_rate": 225,
- "median_booked_rate": 121,
- "occupancy": 83.33
}, - {
- "date": "2024-06-19",
- "available_count": 0,
- "booked_count": 6,
- "mean_available_rate": 0,
- "mean_booked_rate": 180.16666666666666,
- "median_available_rate": 0,
- "median_booked_rate": 108,
- "occupancy": 100
}, - {
- "date": "2024-06-20",
- "available_count": 1,
- "booked_count": 5,
- "mean_available_rate": 221,
- "mean_booked_rate": 169,
- "median_available_rate": 221,
- "median_booked_rate": 130,
- "occupancy": 83.33
}, - {
- "date": "2024-06-21",
- "available_count": 1,
- "booked_count": 5,
- "mean_available_rate": 189,
- "mean_booked_rate": 180.4,
- "median_available_rate": 189,
- "median_booked_rate": 156,
- "occupancy": 83.33
}, - {
- "date": "2024-06-22",
- "available_count": 3,
- "booked_count": 3,
- "mean_available_rate": 212.33333333333334,
- "mean_booked_rate": 121,
- "median_available_rate": 223,
- "median_booked_rate": 108,
- "occupancy": 50
}, - {
- "date": "2024-06-23",
- "available_count": 3,
- "booked_count": 3,
- "mean_available_rate": 209.66666666666666,
- "mean_booked_rate": 119.66666666666667,
- "median_available_rate": 222,
- "median_booked_rate": 109,
- "occupancy": 50
}, - {
- "date": "2024-06-24",
- "available_count": 2,
- "booked_count": 4,
- "mean_available_rate": 223,
- "mean_booked_rate": 140.75,
- "median_available_rate": 221,
- "median_booked_rate": 100,
- "occupancy": 66.67
}, - {
- "date": "2024-06-25",
- "available_count": 2,
- "booked_count": 4,
- "mean_available_rate": 222.5,
- "mean_booked_rate": 141.5,
- "median_available_rate": 220,
- "median_booked_rate": 95,
- "occupancy": 66.67
}, - {
- "date": "2024-06-26",
- "available_count": 1,
- "booked_count": 6,
- "mean_available_rate": 225,
- "mean_booked_rate": 160.5,
- "median_available_rate": 225,
- "median_booked_rate": 108,
- "occupancy": 85.71
}, - {
- "date": "2024-06-27",
- "available_count": 1,
- "booked_count": 5,
- "mean_available_rate": 237,
- "mean_booked_rate": 148.4,
- "median_available_rate": 237,
- "median_booked_rate": 128,
- "occupancy": 83.33
}, - {
- "date": "2024-06-28",
- "available_count": 1,
- "booked_count": 5,
- "mean_available_rate": 237,
- "mean_booked_rate": 157.8,
- "median_available_rate": 237,
- "median_booked_rate": 143,
- "occupancy": 83.33
}, - {
- "date": "2024-06-29",
- "available_count": 1,
- "booked_count": 4,
- "mean_available_rate": 237,
- "mean_booked_rate": 163,
- "median_available_rate": 237,
- "median_booked_rate": 138,
- "occupancy": 80
}, - {
- "date": "2024-06-30",
- "available_count": 3,
- "booked_count": 2,
- "mean_available_rate": 155,
- "mean_booked_rate": 181.5,
- "median_available_rate": 132,
- "median_booked_rate": 125,
- "occupancy": 40
}, - {
- "date": "2024-07-01",
- "available_count": 1,
- "booked_count": 2,
- "mean_available_rate": 110,
- "mean_booked_rate": 173,
- "median_available_rate": 110,
- "median_booked_rate": 123,
- "occupancy": 66.67
}, - {
- "date": "2024-07-02",
- "available_count": 1,
- "booked_count": 2,
- "mean_available_rate": 89,
- "mean_booked_rate": 177.5,
- "median_available_rate": 89,
- "median_booked_rate": 123,
- "occupancy": 66.67
}, - {
- "date": "2024-07-03",
- "available_count": 1,
- "booked_count": 2,
- "mean_available_rate": 108,
- "mean_booked_rate": 221.5,
- "median_available_rate": 108,
- "median_booked_rate": 204,
- "occupancy": 66.67
}, - {
- "date": "2024-07-04",
- "available_count": 1,
- "booked_count": 2,
- "mean_available_rate": 131,
- "mean_booked_rate": 183.5,
- "median_available_rate": 131,
- "median_booked_rate": 128,
- "occupancy": 66.67
}, - {
- "date": "2024-07-05",
- "available_count": 1,
- "booked_count": 2,
- "mean_available_rate": 137,
- "mean_booked_rate": 191,
- "median_available_rate": 137,
- "median_booked_rate": 143,
- "occupancy": 66.67
}, - {
- "date": "2024-07-06",
- "available_count": 1,
- "booked_count": 3,
- "mean_available_rate": 140,
- "mean_booked_rate": 157,
- "median_available_rate": 140,
- "median_booked_rate": 143,
- "occupancy": 75
}, - {
- "date": "2024-07-07",
- "available_count": 1,
- "booked_count": 3,
- "mean_available_rate": 119,
- "mean_booked_rate": 159,
- "median_available_rate": 119,
- "median_booked_rate": 150,
- "occupancy": 75
}, - {
- "date": "2024-07-08",
- "available_count": 3,
- "booked_count": 1,
- "mean_available_rate": 171.66666666666666,
- "mean_booked_rate": 134,
- "median_available_rate": 179,
- "median_booked_rate": 134,
- "occupancy": 25
}, - {
- "date": "2024-07-09",
- "available_count": 4,
- "booked_count": 0,
- "mean_available_rate": 158.25,
- "mean_booked_rate": 0,
- "median_available_rate": 121,
- "median_booked_rate": 0,
- "occupancy": 0
}, - {
- "date": "2024-07-10",
- "available_count": 4,
- "booked_count": 1,
- "mean_available_rate": 149.5,
- "mean_booked_rate": 123,
- "median_available_rate": 102,
- "median_booked_rate": 123,
- "occupancy": 20
}, - {
- "date": "2024-07-11",
- "available_count": 4,
- "booked_count": 1,
- "mean_available_rate": 148.25,
- "mean_booked_rate": 123,
- "median_available_rate": 121,
- "median_booked_rate": 123,
- "occupancy": 20
}, - {
- "date": "2024-07-12",
- "available_count": 4,
- "booked_count": 1,
- "mean_available_rate": 154.5,
- "mean_booked_rate": 138,
- "median_available_rate": 130,
- "median_booked_rate": 138,
- "occupancy": 20
}, - {
- "date": "2024-07-13",
- "available_count": 4,
- "booked_count": 1,
- "mean_available_rate": 148.75,
- "mean_booked_rate": 138,
- "median_available_rate": 133,
- "median_booked_rate": 138,
- "occupancy": 20
}, - {
- "date": "2024-07-14",
- "available_count": 4,
- "booked_count": 1,
- "mean_available_rate": 165,
- "mean_booked_rate": 137,
- "median_available_rate": 109,
- "median_booked_rate": 137,
- "occupancy": 20
}, - {
- "date": "2024-07-15",
- "available_count": 4,
- "booked_count": 1,
- "mean_available_rate": 151.25,
- "mean_booked_rate": 137,
- "median_available_rate": 101,
- "median_booked_rate": 137,
- "occupancy": 20
}, - {
- "date": "2024-07-16",
- "available_count": 4,
- "booked_count": 0,
- "mean_available_rate": 148.25,
- "mean_booked_rate": 0,
- "median_available_rate": 93,
- "median_booked_rate": 0,
- "occupancy": 0
}, - {
- "date": "2024-07-17",
- "available_count": 3,
- "booked_count": 1,
- "mean_available_rate": 132.66666666666666,
- "mean_booked_rate": 267,
- "median_available_rate": 91,
- "median_booked_rate": 267,
- "occupancy": 25
}, - {
- "date": "2024-07-18",
- "available_count": 1,
- "booked_count": 5,
- "mean_available_rate": 109,
- "mean_booked_rate": 206.2,
- "median_available_rate": 109,
- "median_booked_rate": 260,
- "occupancy": 83.33
}, - {
- "date": "2024-07-19",
- "available_count": 0,
- "booked_count": 6,
- "mean_available_rate": 0,
- "mean_booked_rate": 195,
- "median_available_rate": 0,
- "median_booked_rate": 152,
- "occupancy": 100
}, - {
- "date": "2024-07-20",
- "available_count": 0,
- "booked_count": 6,
- "mean_available_rate": 0,
- "mean_booked_rate": 193.5,
- "median_available_rate": 0,
- "median_booked_rate": 156,
- "occupancy": 100
}, - {
- "date": "2024-07-21",
- "available_count": 1,
- "booked_count": 5,
- "mean_available_rate": 101,
- "mean_booked_rate": 204.2,
- "median_available_rate": 101,
- "median_booked_rate": 260,
- "occupancy": 83.33
}, - {
- "date": "2024-07-22",
- "available_count": 3,
- "booked_count": 3,
- "mean_available_rate": 190.33333333333334,
- "mean_booked_rate": 167.66666666666666,
- "median_available_rate": 223,
- "median_booked_rate": 141,
- "occupancy": 50
}, - {
- "date": "2024-07-23",
- "available_count": 3,
- "booked_count": 2,
- "mean_available_rate": 160.66666666666666,
- "mean_booked_rate": 161,
- "median_available_rate": 175,
- "median_booked_rate": 80,
- "occupancy": 40
}, - {
- "date": "2024-07-24",
- "available_count": 3,
- "booked_count": 3,
- "mean_available_rate": 169,
- "mean_booked_rate": 192.33333333333334,
- "median_available_rate": 162,
- "median_booked_rate": 242,
- "occupancy": 50
}, - {
- "date": "2024-07-25",
- "available_count": 3,
- "booked_count": 3,
- "mean_available_rate": 142.66666666666666,
- "mean_booked_rate": 192,
- "median_available_rate": 159,
- "median_booked_rate": 242,
- "occupancy": 50
}, - {
- "date": "2024-07-26",
- "available_count": 4,
- "booked_count": 2,
- "mean_available_rate": 127.75,
- "mean_booked_rate": 247.5,
- "median_available_rate": 105,
- "median_booked_rate": 242,
- "occupancy": 33.33
}, - {
- "date": "2024-07-27",
- "available_count": 3,
- "booked_count": 3,
- "mean_available_rate": 134,
- "mean_booked_rate": 225.33333333333334,
- "median_available_rate": 135,
- "median_booked_rate": 242,
- "occupancy": 50
}, - {
- "date": "2024-07-28",
- "available_count": 3,
- "booked_count": 3,
- "mean_available_rate": 119,
- "mean_booked_rate": 221,
- "median_available_rate": 92,
- "median_booked_rate": 242,
- "occupancy": 50
}, - {
- "date": "2024-07-29",
- "available_count": 3,
- "booked_count": 2,
- "mean_available_rate": 188.33333333333334,
- "mean_booked_rate": 179,
- "median_available_rate": 223,
- "median_booked_rate": 116,
- "occupancy": 40
}, - {
- "date": "2024-07-30",
- "available_count": 3,
- "booked_count": 2,
- "mean_available_rate": 154.33333333333334,
- "mean_booked_rate": 196.5,
- "median_available_rate": 175,
- "median_booked_rate": 115,
- "occupancy": 40
}, - {
- "date": "2024-07-31",
- "available_count": 3,
- "booked_count": 2,
- "mean_available_rate": 138,
- "mean_booked_rate": 224,
- "median_available_rate": 99,
- "median_booked_rate": 170,
- "occupancy": 40
}, - {
- "date": "2024-08-01",
- "available_count": 3,
- "booked_count": 1,
- "mean_available_rate": 134.66666666666666,
- "mean_booked_rate": 147,
- "median_available_rate": 104,
- "median_booked_rate": 147,
- "occupancy": 25
}, - {
- "date": "2024-08-02",
- "available_count": 3,
- "booked_count": 2,
- "mean_available_rate": 136.33333333333334,
- "mean_booked_rate": 215.5,
- "median_available_rate": 106,
- "median_booked_rate": 153,
- "occupancy": 40
}, - {
- "date": "2024-08-03",
- "available_count": 3,
- "booked_count": 2,
- "mean_available_rate": 141.66666666666666,
- "mean_booked_rate": 223.5,
- "median_available_rate": 104,
- "median_booked_rate": 169,
- "occupancy": 40
}, - {
- "date": "2024-08-04",
- "available_count": 3,
- "booked_count": 2,
- "mean_available_rate": 139.66666666666666,
- "mean_booked_rate": 219.5,
- "median_available_rate": 104,
- "median_booked_rate": 161,
- "occupancy": 40
}, - {
- "date": "2024-08-05",
- "available_count": 3,
- "booked_count": 2,
- "mean_available_rate": 131.66666666666666,
- "mean_booked_rate": 225,
- "median_available_rate": 103,
- "median_booked_rate": 152,
- "occupancy": 40
}, - {
- "date": "2024-08-06",
- "available_count": 3,
- "booked_count": 2,
- "mean_available_rate": 183,
- "mean_booked_rate": 154.5,
- "median_available_rate": 223,
- "median_booked_rate": 111,
- "occupancy": 40
}, - {
- "date": "2024-08-07",
- "available_count": 3,
- "booked_count": 3,
- "mean_available_rate": 174.33333333333334,
- "mean_booked_rate": 148,
- "median_available_rate": 223,
- "median_booked_rate": 130,
- "occupancy": 50
}, - {
- "date": "2024-08-08",
- "available_count": 2,
- "booked_count": 4,
- "mean_available_rate": 177.5,
- "mean_booked_rate": 183,
- "median_available_rate": 132,
- "median_booked_rate": 154,
- "occupancy": 66.67
}, - {
- "date": "2024-08-09",
- "available_count": 2,
- "booked_count": 4,
- "mean_available_rate": 169.5,
- "mean_booked_rate": 186.25,
- "median_available_rate": 116,
- "median_booked_rate": 154,
- "occupancy": 66.67
}, - {
- "date": "2024-08-10",
- "available_count": 3,
- "booked_count": 3,
- "mean_available_rate": 187,
- "mean_booked_rate": 159.66666666666666,
- "median_available_rate": 223,
- "median_booked_rate": 167,
- "occupancy": 50
}, - {
- "date": "2024-08-11",
- "available_count": 5,
- "booked_count": 1,
- "mean_available_rate": 158.6,
- "mean_booked_rate": 198,
- "median_available_rate": 136,
- "median_booked_rate": 198,
- "occupancy": 16.67
}, - {
- "date": "2024-08-12",
- "available_count": 6,
- "booked_count": 0,
- "mean_available_rate": 153.5,
- "mean_booked_rate": 0,
- "median_available_rate": 125,
- "median_booked_rate": 0,
- "occupancy": 0
}, - {
- "date": "2024-08-13",
- "available_count": 5,
- "booked_count": 1,
- "mean_available_rate": 166.6,
- "mean_booked_rate": 77,
- "median_available_rate": 171,
- "median_booked_rate": 77,
- "occupancy": 16.67
}, - {
- "date": "2024-08-14",
- "available_count": 4,
- "booked_count": 2,
- "mean_available_rate": 184.5,
- "mean_booked_rate": 128,
- "median_available_rate": 177,
- "median_booked_rate": 86,
- "occupancy": 33.33
}, - {
- "date": "2024-08-15",
- "available_count": 3,
- "booked_count": 3,
- "mean_available_rate": 170,
- "mean_booked_rate": 182.66666666666666,
- "median_available_rate": 146,
- "median_booked_rate": 180,
- "occupancy": 50
}, - {
- "date": "2024-08-16",
- "available_count": 5,
- "booked_count": 1,
- "mean_available_rate": 157,
- "mean_booked_rate": 281,
- "median_available_rate": 149,
- "median_booked_rate": 281,
- "occupancy": 16.67
}, - {
- "date": "2024-08-17",
- "available_count": 5,
- "booked_count": 1,
- "mean_available_rate": 153.8,
- "mean_booked_rate": 281,
- "median_available_rate": 151,
- "median_booked_rate": 281,
- "occupancy": 16.67
}, - {
- "date": "2024-08-18",
- "available_count": 6,
- "booked_count": 0,
- "mean_available_rate": 165,
- "mean_booked_rate": 0,
- "median_available_rate": 138,
- "median_booked_rate": 0,
- "occupancy": 0
}, - {
- "date": "2024-08-19",
- "available_count": 6,
- "booked_count": 0,
- "mean_available_rate": 156.5,
- "mean_booked_rate": 0,
- "median_available_rate": 125,
- "median_booked_rate": 0,
- "occupancy": 0
}, - {
- "date": "2024-08-20",
- "available_count": 6,
- "booked_count": 0,
- "mean_available_rate": 152.83333333333334,
- "mean_booked_rate": 0,
- "median_available_rate": 124,
- "median_booked_rate": 0,
- "occupancy": 0
}, - {
- "date": "2024-08-21",
- "available_count": 5,
- "booked_count": 1,
- "mean_available_rate": 148,
- "mean_booked_rate": 244,
- "median_available_rate": 115,
- "median_booked_rate": 244,
- "occupancy": 16.67
}, - {
- "date": "2024-08-22",
- "available_count": 6,
- "booked_count": 1,
- "mean_available_rate": 167.83333333333334,
- "mean_booked_rate": 244,
- "median_available_rate": 128,
- "median_booked_rate": 244,
- "occupancy": 14.29
}, - {
- "date": "2024-08-23",
- "available_count": 4,
- "booked_count": 2,
- "mean_available_rate": 146.25,
- "mean_booked_rate": 263.5,
- "median_available_rate": 119,
- "median_booked_rate": 244,
- "occupancy": 33.33
}, - {
- "date": "2024-08-24",
- "available_count": 4,
- "booked_count": 2,
- "mean_available_rate": 154.75,
- "mean_booked_rate": 251,
- "median_available_rate": 137,
- "median_booked_rate": 244,
- "occupancy": 33.33
}, - {
- "date": "2024-08-25",
- "available_count": 4,
- "booked_count": 2,
- "mean_available_rate": 155.25,
- "mean_booked_rate": 251.5,
- "median_available_rate": 129,
- "median_booked_rate": 244,
- "occupancy": 33.33
}, - {
- "date": "2024-08-26",
- "available_count": 5,
- "booked_count": 1,
- "mean_available_rate": 158.8,
- "mean_booked_rate": 244,
- "median_available_rate": 125,
- "median_booked_rate": 244,
- "occupancy": 16.67
}, - {
- "date": "2024-08-27",
- "available_count": 5,
- "booked_count": 1,
- "mean_available_rate": 147.2,
- "mean_booked_rate": 244,
- "median_available_rate": 119,
- "median_booked_rate": 244,
- "occupancy": 16.67
}, - {
- "date": "2024-08-28",
- "available_count": 6,
- "booked_count": 0,
- "mean_available_rate": 164.83333333333334,
- "mean_booked_rate": 0,
- "median_available_rate": 122,
- "median_booked_rate": 0,
- "occupancy": 0
}, - {
- "date": "2024-08-29",
- "available_count": 6,
- "booked_count": 0,
- "mean_available_rate": 166.83333333333334,
- "mean_booked_rate": 0,
- "median_available_rate": 125,
- "median_booked_rate": 0,
- "occupancy": 0
}, - {
- "date": "2024-08-30",
- "available_count": 3,
- "booked_count": 3,
- "mean_available_rate": 181.66666666666666,
- "mean_booked_rate": 194.33333333333334,
- "median_available_rate": 223,
- "median_booked_rate": 190,
- "occupancy": 50
}, - {
- "date": "2024-08-31",
- "available_count": 4,
- "booked_count": 3,
- "mean_available_rate": 160,
- "mean_booked_rate": 180.66666666666666,
- "median_available_rate": 99,
- "median_booked_rate": 153,
- "occupancy": 42.86
}
]
}, - "status": {
- "type": "success",
- "response_id": "API-S-065",
- "message": "Successfully retrieved Submarket Future Daily Pricing."
}
}
This section provides data for individual Short-Term Rental listings from Airbnb & Vrbo. It is ideal for searching for listings within certain parameters and also fetching metrics for individual listings.
Our endpoints can help you explore and evaluate listings. You can search for:
We provide between 12 and 60 months of monthly historical data for individual and multiple listings including the following:
market_id
for a known Market, you can use our Market Search endpoint.If you need to find AirDNA Markets or Submarkets, this endpoint allows you to find them via a simple search_term
.
Each result will provide:
id
that can be used in other endpoints for obtaining data.Schema for performing a request to search for a Market or Submarket
Successful Market Search Response
required | object (MarketSearchResponseSchema) |
required | object (Status) The Status object on the response envelope |
The request was invalid.
An internal server error occurred.
{- "search_term": "Denver",
- "pagination": {
- "page_size": 25,
- "offset": 0
}
}
{- "payload": {
- "page_info": {
- "page_size": 25,
- "offset": 0
}, - "results": [
- {
- "id": "airdna-163",
- "name": "Denver",
- "type": "market",
- "listing_count": 15231,
- "location_name": "Denver, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [ ],
- "zipcodes": [ ],
- "neighborhoods": [ ]
}
}, - {
- "id": "airdna-1490",
- "name": "Downtown Denver",
- "type": "submarket",
- "listing_count": 364,
- "location_name": "Downtown Denver, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [ ],
- "zipcodes": [
- "80294",
- "80264",
- "80293",
- "80290"
], - "neighborhoods": [
- "North Capitol Hill",
- "Golden Triangle",
- "CBD"
]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "56517",
- "name": "New Denver",
- "type": "market",
- "listing_count": 15,
- "location_name": "New Denver, British Columbia, Canada, CA",
- "location": {
- "state": "British Columbia",
- "country": "Canada",
- "country_code": "ca"
}, - "legacy_location": {
- "city_names": [ ],
- "zipcodes": [ ],
- "neighborhoods": [ ]
}
}, - {
- "id": "airdna-1771",
- "name": "Aurora",
- "type": "submarket",
- "listing_count": 1090,
- "location_name": "Aurora, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [
- "Aurora"
], - "zipcodes": [
- "80014",
- "80012",
- "80013",
- "80018",
- "80015",
- "80011",
- "80017",
- "80010",
- "80045",
- "80016"
], - "neighborhoods": [ ]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-1013",
- "name": "Highland",
- "type": "submarket",
- "listing_count": 969,
- "location_name": "Highland, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [ ],
- "zipcodes": [
- "80212",
- "80211"
], - "neighborhoods": [
- "Highland",
- "Berkeley",
- "Jefferson Park"
]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-1525",
- "name": "Arvada",
- "type": "submarket",
- "listing_count": 917,
- "location_name": "Arvada, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [
- "Arvada"
], - "zipcodes": [
- "80003",
- "80004",
- "80002",
- "80005"
], - "neighborhoods": [ ]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-5641",
- "name": "Five Points",
- "type": "submarket",
- "listing_count": 795,
- "location_name": "Five Points, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [ ],
- "zipcodes": [
- "80205"
], - "neighborhoods": [
- "Skyland",
- "Five Points",
- "City Park",
- "Whittier"
]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-2325",
- "name": "Denver Heights",
- "type": "submarket",
- "listing_count": 786,
- "location_name": "Denver Heights, Texas, United States, US",
- "location": {
- "state": "Texas",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [ ],
- "zipcodes": [
- "78210"
], - "neighborhoods": [ ]
}, - "parent_market": {
- "id": "airdna-416",
- "name": "San Antonio"
}
}, - {
- "id": "airdna-1612",
- "name": "West Colfax",
- "type": "submarket",
- "listing_count": 766,
- "location_name": "West Colfax, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [ ],
- "zipcodes": [
- "80204"
], - "neighborhoods": [
- "Valverde",
- "Sun Valley",
- "Lincoln Park",
- "Barnum West",
- "Villa Park",
- "Barnum",
- "West Colfax",
- "Baker"
]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-2331",
- "name": "Chaffee Park",
- "type": "submarket",
- "listing_count": 742,
- "location_name": "Chaffee Park, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [ ],
- "zipcodes": [
- "80221"
], - "neighborhoods": [
- "Chaffee Park"
]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-9143",
- "name": "Golden",
- "type": "submarket",
- "listing_count": 560,
- "location_name": "Golden, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [
- "Golden"
], - "zipcodes": [
- "80419",
- "80403",
- "80228",
- "80401"
], - "neighborhoods": [ ]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-2705",
- "name": "Edgewater",
- "type": "submarket",
- "listing_count": 503,
- "location_name": "Edgewater, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [ ],
- "zipcodes": [
- "80214",
- "80226"
], - "neighborhoods": [ ]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-3038",
- "name": "Littleton",
- "type": "submarket",
- "listing_count": 448,
- "location_name": "Littleton, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [
- "Littleton"
], - "zipcodes": [
- "80120",
- "80121",
- "80123",
- "80122",
- "80128"
], - "neighborhoods": [
- "Marston"
]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-1335",
- "name": "DIA Airport",
- "type": "submarket",
- "listing_count": 425,
- "location_name": "DIA Airport, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [
- "Bennett",
- "Watkins"
], - "zipcodes": [
- "80102",
- "80137",
- "80019",
- "80249"
], - "neighborhoods": [
- "Gateway/Green Valley Ranch",
- "DIA"
]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-6909",
- "name": "Thornton",
- "type": "submarket",
- "listing_count": 408,
- "location_name": "Thornton, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [
- "Thornton"
], - "zipcodes": [
- "80260",
- "80234",
- "80229",
- "80241",
- "80233"
], - "neighborhoods": [ ]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-6596",
- "name": "LoDo",
- "type": "submarket",
- "listing_count": 396,
- "location_name": "LoDo, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [ ],
- "zipcodes": [
- "80202"
], - "neighborhoods": [
- "Auraria",
- "LoDo"
]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-8789",
- "name": "Centennial",
- "type": "submarket",
- "listing_count": 362,
- "location_name": "Centennial, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [
- "Englewood"
], - "zipcodes": [
- "80112",
- "80111"
], - "neighborhoods": [ ]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-4255",
- "name": "Wheat Ridge",
- "type": "submarket",
- "listing_count": 345,
- "location_name": "Wheat Ridge, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [
- "Wheat Ridge"
], - "zipcodes": [
- "80033"
], - "neighborhoods": [ ]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-5962",
- "name": "Westminster",
- "type": "submarket",
- "listing_count": 327,
- "location_name": "Westminster, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [
- "Westminster"
], - "zipcodes": [
- "80030",
- "80031"
], - "neighborhoods": [ ]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-1049",
- "name": "Denver Harbor",
- "type": "submarket",
- "listing_count": 316,
- "location_name": "Denver Harbor, Texas, United States, US",
- "location": {
- "state": "Texas",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [ ],
- "zipcodes": [
- "77020"
], - "neighborhoods": [ ]
}, - "parent_market": {
- "id": "airdna-2",
- "name": "Houston"
}
}, - {
- "id": "airdna-4200",
- "name": "Broomfield",
- "type": "submarket",
- "listing_count": 289,
- "location_name": "Broomfield, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [
- "Broomfield"
], - "zipcodes": [
- "80020",
- "80007",
- "80023",
- "80021"
], - "neighborhoods": [ ]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-2083",
- "name": "Commerce City",
- "type": "submarket",
- "listing_count": 256,
- "location_name": "Commerce City, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [
- "Commerce City"
], - "zipcodes": [
- "80022"
], - "neighborhoods": [
- "Elyria Swansea"
]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-1613",
- "name": "Brighton",
- "type": "submarket",
- "listing_count": 247,
- "location_name": "Brighton, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [
- "Keenesburg",
- "Brighton",
- "Fort Lupton",
- "Hudson",
- "Roggen"
], - "zipcodes": [
- "80602",
- "80603",
- "80642",
- "80643",
- "80601",
- "80652",
- "80621"
], - "neighborhoods": [ ]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-6593",
- "name": "Englewood",
- "type": "submarket",
- "listing_count": 238,
- "location_name": "Englewood, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [ ],
- "zipcodes": [
- "80113",
- "80110"
], - "neighborhoods": [ ]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}, - {
- "id": "airdna-4167",
- "name": "Hale",
- "type": "submarket",
- "listing_count": 235,
- "location_name": "Hale, Colorado, United States, US",
- "location": {
- "state": "Colorado",
- "country": "United States",
- "country_code": "us"
}, - "legacy_location": {
- "city_names": [ ],
- "zipcodes": [
- "80220"
], - "neighborhoods": [
- "Montclair",
- "Hale",
- "East Colfax",
- "South Park Hill"
]
}, - "parent_market": {
- "id": "airdna-163",
- "name": "Denver"
}
}
]
}, - "status": {
- "type": "success",
- "response_id": "API-S-011",
- "message": "Successfully fetched 2 Markets & 23 Submarkets for the requested parameters."
}
}
If you're looking to explore listings within a country, you can do so by general listing characteristics or metrics.
Use Listing Filters to specify details for listings you want to search for.
Here are some examples of the many things you can do:
Schema for performing a request to fetch Listings relative to a Country.
Successfully retrieved Listings within a Country.
required | object (CountryListingsResponseSchema) |
required | object (Status) The Status object on the response envelope |
The request was invalid.
Failed to find data matching your request.
An internal server error occurred.
{- "pagination": {
- "page_size": 3,
- "offset": 0
}, - "sort_order": "occupancy"
}
{- "payload": {
- "page_info": {
- "total_count": 2273933,
- "page_size": 3,
- "offset": 0
}, - "sort_order": "occupancy",
- "listings": [
- {
- "property_id": "abnb_XXXXXXXX",
- "airbnb_host_id": "XYXYXYXY",
- "airbnb_property_id": "XXXXXXXX",
- "vrbo_property_id": null,
- "vrbo_property_url": null,
- "market_id": 57496,
- "market_name": "Scottsdale",
- "country_name": "United States",
- "city_name": "Scottsdale",
- "state_name": "Arizona",
- "zipcode": "85260",
- "msa_name": "Phoenix-Mesa-Scottsdale, AZ Metro Area",
- "location": {
- "lat": 35.34958,
- "lng": -145.93458
}, - "exact_location": null,
- "title": "Beautiful Estate",
- "bedrooms": 7,
- "bathrooms": 4.5,
- "accommodates": 16,
- "listing_type": "entire_place",
- "property_type": "villa",
- "instant_book": false,
- "superhost": true,
- "cancellation_policy": "super_strict",
- "host_size": "6-20",
- "amenities": {
- "has_aircon": true,
- "has_breakfast": false,
- "has_cable_tv": false,
- "has_doorman": false,
- "has_dryer": true,
- "has_elevator": false,
- "has_family_friendly": true,
- "has_guidebook": false,
- "has_gym": true,
- "has_handicap_access": false,
- "has_heating": true,
- "has_hottub": true,
- "has_indoor_fireplace": false,
- "has_intercom": false,
- "has_internet": false,
- "has_kitchen": true,
- "has_parking": true,
- "has_pets_allowed": true,
- "has_pool": true,
- "has_smoking": false,
- "has_suitable_for_events": true,
- "has_tv": true,
- "has_washer": true,
- "has_wireless_internet": true
}, - "property_manager_name": null,
- "professionally_managed": false,
- "rating": 5,
- "ratings": {
- "overall_rating": 5,
- "airbnb_accuracy_rating": null,
- "airbnb_checkin_rating": null,
- "airbnb_cleanliness_rating": null,
- "airbnb_communication_rating": null,
- "airbnb_location_rating": null,
- "airbnb_value_rating": null
}, - "reviews": 1,
- "revenue_ltm": 1780023,
- "revenue_potential_ltm": 1790390,
- "occupancy_rate_ltm": 100,
- "average_daily_rate_ltm": 4890.17,
- "days_available_ltm": 364,
- "days_blocked_ltm": 2,
- "days_reserved_ltm": 364,
- "num_reservations_ltm": 113,
- "currency": "usd",
- "minimum_stay": 3,
- "response_rate": 100,
- "response_time": null,
- "created_date": "2020-10-30",
- "last_calendar_update": "2024-04-29",
- "last_scraped_date": "2024-04-29",
- "license": null,
- "cleaning_fee": 425,
}, - {
- "property_id": "abnb_YYYYYYYY",
- "airbnb_host_id": "11111111",
- "airbnb_property_id": "YYYYYYYY",
- "vrbo_property_id": null,
- "vrbo_property_url": null,
- "market_id": 61027,
- "market_name": "Kihei",
- "country_name": "United States",
- "city_name": "Kihei",
- "state_name": "Hawaii",
- "zipcode": "96753",
- "msa_name": "Kahului-Wailuku-Lahaina, HI Metro Area",
- "location": {
- "lat": 21.83945,
- "lng": -152.34987
}, - "exact_location": null,
- "title": "Beautiful Villa",
- "bedrooms": 10,
- "bathrooms": 10,
- "accommodates": 16,
- "listing_type": "entire_place",
- "property_type": "villa",
- "instant_book": true,
- "superhost": true,
- "cancellation_policy": "super_strict",
- "host_size": "21+",
- "amenities": {
- "has_aircon": true,
- "has_breakfast": false,
- "has_cable_tv": true,
- "has_doorman": false,
- "has_dryer": true,
- "has_elevator": false,
- "has_family_friendly": true,
- "has_guidebook": false,
- "has_gym": true,
- "has_handicap_access": false,
- "has_heating": true,
- "has_hottub": false,
- "has_indoor_fireplace": false,
- "has_intercom": false,
- "has_internet": false,
- "has_kitchen": true,
- "has_parking": true,
- "has_pets_allowed": false,
- "has_pool": true,
- "has_smoking": false,
- "has_suitable_for_events": false,
- "has_tv": true,
- "has_washer": true,
- "has_wireless_internet": true
}, - "property_manager_name": null,
- "professionally_managed": false,
- "rating": 5,
- "ratings": {
- "overall_rating": 5,
- "airbnb_accuracy_rating": 5,
- "airbnb_checkin_rating": 5,
- "airbnb_cleanliness_rating": 4.5,
- "airbnb_communication_rating": 5,
- "airbnb_location_rating": 5,
- "airbnb_value_rating": 5
}, - "reviews": 3,
- "revenue_ltm": 1493675,
- "revenue_potential_ltm": 1904956,
- "occupancy_rate_ltm": 100,
- "average_daily_rate_ltm": 5240.96,
- "days_available_ltm": 285,
- "days_blocked_ltm": 81,
- "days_reserved_ltm": 285,
- "num_reservations_ltm": 86,
- "currency": "usd",
- "minimum_stay": 3,
- "response_rate": 100,
- "response_time": 212,
- "created_date": "2017-06-08",
- "last_calendar_update": "2024-04-29",
- "last_scraped_date": "2024-04-20",
- "license": "39983495850",
- "cleaning_fee": 1832,
}, - {
- "property_id": "abnb_12121212",
- "airbnb_host_id": "99999999",
- "airbnb_property_id": "12121212",
- "vrbo_property_id": "21212121",
- "market_id": 57457,
- "market_name": "Phoenix",
- "country_name": "United States",
- "city_name": "Phoenix",
- "state_name": "Arizona",
- "zipcode": "85008",
- "msa_name": "Phoenix-Mesa-Scottsdale, AZ Metro Area",
- "location": {
- "lat": 35.23849,
- "lng": -110.23094
}, - "exact_location": null,
- "title": "Exclusive Condo Complex",
- "bedrooms": 12,
- "bathrooms": 9,
- "accommodates": 16,
- "listing_type": "entire_place",
- "property_type": "apartment",
- "instant_book": false,
- "superhost": true,
- "cancellation_policy": "strict",
- "host_size": "6-20",
- "amenities": {
- "has_aircon": true,
- "has_breakfast": false,
- "has_cable_tv": false,
- "has_doorman": false,
- "has_dryer": true,
- "has_elevator": false,
- "has_family_friendly": true,
- "has_guidebook": false,
- "has_gym": false,
- "has_handicap_access": false,
- "has_heating": true,
- "has_hottub": false,
- "has_indoor_fireplace": false,
- "has_intercom": false,
- "has_internet": false,
- "has_kitchen": true,
- "has_parking": true,
- "has_pets_allowed": true,
- "has_pool": true,
- "has_smoking": false,
- "has_suitable_for_events": true,
- "has_tv": true,
- "has_washer": true,
- "has_wireless_internet": true
}, - "property_manager_name": null,
- "professionally_managed": false,
- "rating": 5,
- "ratings": {
- "overall_rating": 5,
- "airbnb_accuracy_rating": 5,
- "airbnb_checkin_rating": 5,
- "airbnb_cleanliness_rating": 5,
- "airbnb_communication_rating": 5,
- "airbnb_location_rating": 4.5,
- "airbnb_value_rating": 5
}, - "reviews": 4,
- "revenue_ltm": 1056123,
- "revenue_potential_ltm": 1056123,
- "occupancy_rate_ltm": 100,
- "average_daily_rate_ltm": 2885.58,
- "days_available_ltm": 366,
- "days_blocked_ltm": 0,
- "days_reserved_ltm": 366,
- "num_reservations_ltm": 113,
- "currency": "usd",
- "minimum_stay": 3,
- "response_rate": 100,
- "response_time": null,
- "created_date": "2021-08-06",
- "last_calendar_update": "2024-04-29",
- "last_scraped_date": "2024-04-25",
- "license": null,
- "cleaning_fee": 1000,
}
]
}, - "status": {
- "type": "success",
- "response_id": "API-S-004",
- "message": "Successfully retrieved Listings for a country."
}
}
If you're looking to explore listings within a Market, you can do so by general listing characteristics or metrics.
Use Listing Filters to specify details for listings you want to search for.
Here are some examples of the many things you can do:
Schema for performing a request to fetch Listings relative to a Market.
Successful Market Listings Response
required | object (CountryListingsResponseSchema) |
required | object (Status) The Status object on the response envelope |
The request was invalid.
Failed to find data matching your request.
An internal server error occurred.
{- "pagination": {
- "page_size": 3,
- "offset": 0
}, - "filters": [
- {
- "field": "bedrooms",
- "type": "select",
- "value": 1
}, - {
- "field": "amenities",
- "type": "jsonb_boolean",
- "value": {
- "has_pets_allowed": true
}
}, - {
- "field": "professionally_managed",
- "type": "select",
- "value": true
}
]
}
{- "payload": {
- "page_info": {
- "total_count": 140,
- "page_size": 3,
- "offset": 0
}, - "listings": [
- {
- "property_id": "abnb_XXXXXXXX",
- "airbnb_host_id": "AAAAAAAA",
- "airbnb_property_id": "XXXXXXXX",
- "vrbo_property_id": null,
- "vrbo_property_url": null,
- "market_id": "airdna-163",
- "market_name": "Denver",
- "country_name": "United States",
- "city_name": "Denver",
- "state_name": "Colorado",
- "zipcode": "80203",
- "msa_name": "Denver-Aurora-Lakewood, CO Metro Area",
- "location": {
- "lat": 39.12387,
- "lng": -104.1242849
}, - "exact_location": false,
- "title": "Denver Apartment",
- "bedrooms": 1,
- "bathrooms": 1,
- "accommodates": 2,
- "listing_type": "entire_place",
- "property_type": "apartment",
- "instant_book": false,
- "superhost": false,
- "cancellation_policy": "strict",
- "host_size": "21+",
- "amenities": {
- "has_aircon": true,
- "has_breakfast": false,
- "has_cable_tv": false,
- "has_doorman": false,
- "has_dryer": true,
- "has_elevator": false,
- "has_family_friendly": false,
- "has_guidebook": false,
- "has_gym": false,
- "has_handicap_access": false,
- "has_heating": true,
- "has_hottub": true,
- "has_indoor_fireplace": false,
- "has_intercom": false,
- "has_internet": false,
- "has_kitchen": true,
- "has_parking": true,
- "has_pets_allowed": true,
- "has_pool": false,
- "has_smoking": false,
- "has_suitable_for_events": false,
- "has_tv": true,
- "has_washer": true,
- "has_wireless_internet": true
}, - "property_manager_name": "Jim & Pam",
- "professionally_managed": true,
- "rating": 5,
- "ratings": {
- "overall_rating": 5,
- "airbnb_accuracy_rating": 5,
- "airbnb_checkin_rating": 5,
- "airbnb_cleanliness_rating": 5,
- "airbnb_communication_rating": 5,
- "airbnb_location_rating": 5,
- "airbnb_value_rating": 5
}, - "reviews": 14,
- "revenue_ltm": 77011,
- "revenue_potential_ltm": 78347,
- "occupancy_rate_ltm": 49.45,
- "average_daily_rate_ltm": 1711.36,
- "days_available_ltm": 91,
- "days_blocked_ltm": 39,
- "days_reserved_ltm": 45,
- "num_reservations_ltm": 17,
- "currency": "usd",
- "minimum_stay": 6,
- "response_rate": null,
- "response_time": null,
- "created_date": "2023-11-13",
- "last_calendar_update": "2024-04-24",
- "last_scraped_date": "2024-04-25",
- "license": "230495820834",
- "cleaning_fee": 98,
}, - {
- "property_id": "abnb_11111111",
- "airbnb_host_id": "22222222",
- "airbnb_property_id": "11111111",
- "vrbo_property_id": "11111111",
- "market_id": "airdna-163",
- "market_name": "Denver",
- "country_name": "United States",
- "city_name": "Denver",
- "state_name": "Colorado",
- "zipcode": "80212",
- "msa_name": "Denver-Aurora-Lakewood, CO Metro Area",
- "location": {
- "lat": 39.23408,
- "lng": -105.981242
}, - "exact_location": true,
- "title": "Apartment with Balcony",
- "bedrooms": 1,
- "bathrooms": 1,
- "accommodates": 4,
- "listing_type": "entire_place",
- "property_type": "condominium",
- "instant_book": true,
- "superhost": true,
- "cancellation_policy": "moderate",
- "host_size": "6-20",
- "amenities": {
- "has_aircon": true,
- "has_breakfast": false,
- "has_cable_tv": true,
- "has_doorman": false,
- "has_dryer": true,
- "has_elevator": true,
- "has_family_friendly": true,
- "has_guidebook": false,
- "has_gym": false,
- "has_handicap_access": false,
- "has_heating": true,
- "has_hottub": false,
- "has_indoor_fireplace": false,
- "has_intercom": false,
- "has_internet": false,
- "has_kitchen": true,
- "has_parking": true,
- "has_pets_allowed": true,
- "has_pool": false,
- "has_smoking": false,
- "has_suitable_for_events": false,
- "has_tv": true,
- "has_washer": true,
- "has_wireless_internet": true
}, - "property_manager_name": "Denver's Best Property Manager",
- "professionally_managed": true,
- "rating": 4.9,
- "ratings": {
- "overall_rating": 4.9,
- "airbnb_accuracy_rating": 5,
- "airbnb_checkin_rating": 5,
- "airbnb_cleanliness_rating": 5,
- "airbnb_communication_rating": 5,
- "airbnb_location_rating": 5,
- "airbnb_value_rating": 4.5
}, - "reviews": 77,
- "revenue_ltm": 54585,
- "revenue_potential_ltm": 56261,
- "occupancy_rate_ltm": 72.39,
- "average_daily_rate_ltm": 212.39,
- "days_available_ltm": 355,
- "days_blocked_ltm": 11,
- "days_reserved_ltm": 257,
- "num_reservations_ltm": 93,
- "currency": "usd",
- "minimum_stay": 2,
- "response_rate": 100,
- "response_time": null,
- "created_date": "2021-03-09",
- "last_calendar_update": "2024-04-29",
- "last_scraped_date": "2024-04-26",
- "license": "230842528024",
- "cleaning_fee": 75,
}, - {
- "property_id": "abnb_2222222",
- "airbnb_host_id": "33333333",
- "airbnb_property_id": "2222222",
- "vrbo_property_id": "2222222",
- "market_id": "airdna-163",
- "market_name": "Denver",
- "country_name": "United States",
- "city_name": "Denver",
- "state_name": "Colorado",
- "zipcode": "80212",
- "msa_name": "Denver-Aurora-Lakewood, CO Metro Area",
- "location": {
- "lat": 39.12982,
- "lng": -105.98124
}, - "exact_location": true,
- "title": "Flat with Balcony & Patio",
- "bedrooms": 1,
- "bathrooms": 1,
- "accommodates": 4,
- "listing_type": "entire_place",
- "property_type": "condominium",
- "instant_book": true,
- "superhost": true,
- "cancellation_policy": "moderate",
- "host_size": "6-20",
- "amenities": {
- "has_aircon": true,
- "has_breakfast": false,
- "has_cable_tv": true,
- "has_doorman": false,
- "has_dryer": true,
- "has_elevator": true,
- "has_family_friendly": true,
- "has_guidebook": false,
- "has_gym": false,
- "has_handicap_access": false,
- "has_heating": true,
- "has_hottub": false,
- "has_indoor_fireplace": false,
- "has_intercom": false,
- "has_internet": false,
- "has_kitchen": true,
- "has_parking": true,
- "has_pets_allowed": true,
- "has_pool": false,
- "has_smoking": false,
- "has_suitable_for_events": false,
- "has_tv": true,
- "has_washer": true,
- "has_wireless_internet": true
}, - "property_manager_name": "Denver's Best Property Manager",
- "professionally_managed": true,
- "rating": 4.8,
- "ratings": {
- "overall_rating": 4.8,
- "airbnb_accuracy_rating": 5,
- "airbnb_checkin_rating": 5,
- "airbnb_cleanliness_rating": 5,
- "airbnb_communication_rating": 5,
- "airbnb_location_rating": 5,
- "airbnb_value_rating": 4.5
}, - "reviews": 52,
- "revenue_ltm": 53528,
- "revenue_potential_ltm": 54728,
- "occupancy_rate_ltm": 69.38,
- "average_daily_rate_ltm": 216.71,
- "days_available_ltm": 356,
- "days_blocked_ltm": 10,
- "days_reserved_ltm": 247,
- "num_reservations_ltm": 99,
- "currency": "usd",
- "minimum_stay": 2,
- "response_rate": 100,
- "response_time": null,
- "created_date": "2021-03-09",
- "last_calendar_update": "2024-04-29",
- "last_scraped_date": "2024-04-21",
- "license": "239048534958",
- "cleaning_fee": 75,
}
], - "sort_order": "revenue"
}, - "status": {
- "type": "success",
- "response_id": "API-S-044",
- "message": "Successfully retrieved Listings for the requested Market."
}
}
If you're looking to explore listings within a Submarket, you can do so by general listing characteristics or metrics.
Use Listing Filters to specify details for listings you want to search for.
Here are some examples of the many things you can do:
Schema for performing a request to fetch Listings relative to a Submarket.
Successful Submarket Listings Response
required | object (CountryListingsResponseSchema) |
required | object (Status) The Status object on the response envelope |
The request was invalid.
Failed to find data matching your request.
An internal server error occurred.
{- "pagination": {
- "page_size": 3,
- "offset": 0
}, - "filters": [
- {
- "field": "bedrooms",
- "type": "gte",
- "value": 1
}, - {
- "field": "amenities",
- "type": "jsonb_boolean",
- "value": {
- "has_pets_allowed": true
}
}, - {
- "field": "professionally_managed",
- "type": "select",
- "value": true
}
]
}
{- "payload": {
- "page_info": {
- "total_count": 2,
- "page_size": 2,
- "offset": 0
}, - "sort_order": "revenue",
- "listings": [
- {
- "property_id": "abnb_000000000",
- "airbnb_host_id": "5050505050",
- "airbnb_property_id": "000000000",
- "vrbo_property_id": "000000000",
- "market_id": "airdna-163",
- "market_name": "Denver",
- "country_name": "United States",
- "city_name": "Denver",
- "state_name": "Colorado",
- "zipcode": "80221",
- "msa_name": "Denver-Aurora-Lakewood, CO Metro Area",
- "location": {
- "lat": 39.023458,
- "lng": -105.91834
}, - "exact_location": null,
- "title": "Dog-friendly townhome",
- "bedrooms": 3,
- "bathrooms": 3,
- "accommodates": 6,
- "listing_type": "entire_place",
- "property_type": "townhouse",
- "instant_book": true,
- "superhost": false,
- "cancellation_policy": "super_strict",
- "host_size": "21+",
- "amenities": {
- "has_aircon": true,
- "has_breakfast": false,
- "has_cable_tv": false,
- "has_doorman": false,
- "has_dryer": true,
- "has_elevator": false,
- "has_family_friendly": true,
- "has_guidebook": false,
- "has_gym": true,
- "has_handicap_access": false,
- "has_heating": true,
- "has_hottub": false,
- "has_indoor_fireplace": true,
- "has_intercom": false,
- "has_internet": false,
- "has_kitchen": true,
- "has_parking": false,
- "has_pets_allowed": true,
- "has_pool": false,
- "has_smoking": false,
- "has_suitable_for_events": false,
- "has_tv": true,
- "has_washer": true,
- "has_wireless_internet": true
}, - "property_manager_name": "Denver Property Manager",
- "professionally_managed": true,
- "rating": 5,
- "ratings": {
- "overall_rating": 5,
- "airbnb_accuracy_rating": 5,
- "airbnb_checkin_rating": 5,
- "airbnb_cleanliness_rating": 5,
- "airbnb_communication_rating": 5,
- "airbnb_location_rating": 5,
- "airbnb_value_rating": 4.5
}, - "reviews": 3,
- "revenue_ltm": 24189,
- "revenue_potential_ltm": 24189,
- "occupancy_rate_ltm": 57.81,
- "average_daily_rate_ltm": 326.88,
- "days_available_ltm": 128,
- "days_blocked_ltm": 0,
- "days_reserved_ltm": 74,
- "num_reservations_ltm": 25,
- "currency": "usd",
- "minimum_stay": 2,
- "response_rate": 100,
- "response_time": null,
- "created_date": "2023-11-08",
- "last_calendar_update": "2024-04-28",
- "last_scraped_date": "2024-04-28",
- "license": null,
- "cleaning_fee": 212,
}, - {
- "property_id": "abnb_99999999999",
- "airbnb_host_id": "7070707070",
- "airbnb_property_id": "99999999999",
- "vrbo_property_id": "99999999999",
- "market_id": "airdna-163",
- "market_name": "Denver",
- "country_name": "United States",
- "city_name": "Denver",
- "state_name": "Colorado",
- "zipcode": "80221",
- "msa_name": "Denver-Aurora-Lakewood, CO Metro Area",
- "location": {
- "lat": 39.01984,
- "lng": -105.9234
}, - "exact_location": null,
- "title": "Bungalow in Berkeley",
- "bedrooms": 2,
- "bathrooms": 1,
- "accommodates": 6,
- "listing_type": "entire_place",
- "property_type": "bungalow",
- "instant_book": false,
- "superhost": false,
- "cancellation_policy": "strict",
- "host_size": "21+",
- "amenities": {
- "has_aircon": true,
- "has_breakfast": false,
- "has_cable_tv": false,
- "has_doorman": false,
- "has_dryer": true,
- "has_elevator": false,
- "has_family_friendly": true,
- "has_guidebook": false,
- "has_gym": false,
- "has_handicap_access": false,
- "has_heating": true,
- "has_hottub": false,
- "has_indoor_fireplace": false,
- "has_intercom": false,
- "has_internet": false,
- "has_kitchen": true,
- "has_parking": true,
- "has_pets_allowed": true,
- "has_pool": false,
- "has_smoking": false,
- "has_suitable_for_events": false,
- "has_tv": true,
- "has_washer": true,
- "has_wireless_internet": true
}, - "property_manager_name": "Best Vacation Rentals",
- "professionally_managed": true,
- "rating": 4.9,
- "ratings": {
- "overall_rating": 4.9,
- "airbnb_accuracy_rating": 5,
- "airbnb_checkin_rating": 5,
- "airbnb_cleanliness_rating": 4.5,
- "airbnb_communication_rating": 5,
- "airbnb_location_rating": 5,
- "airbnb_value_rating": 4.5
}, - "reviews": 166,
- "revenue_ltm": 1831,
- "revenue_potential_ltm": 41054,
- "occupancy_rate_ltm": 28.21,
- "average_daily_rate_ltm": 166.45,
- "days_available_ltm": 39,
- "days_blocked_ltm": 327,
- "days_reserved_ltm": 11,
- "num_reservations_ltm": 2,
- "currency": "usd",
- "minimum_stay": 90,
- "response_rate": 100,
- "response_time": null,
- "created_date": "2019-12-13",
- "last_calendar_update": "2024-04-24",
- "last_scraped_date": "2024-04-25",
- "license": "230984253042",
- "cleaning_fee": 200,
}
]
}, - "status": {
- "type": "success",
- "response_id": "API-S-045",
- "message": "Successfully retrieved Listings for the requested Submarket."
}
}
This endpoint will return a list of comparable listings within a radius of a given address or location.
Use Listing Filters to specify details for listings you want to search for.
This request will return details about the listings such as:
Supports Currency Conversion for non-USD currencies.
Schema for performing a request to fetch comps for a location within a given area.
Schema representing the base request for retrieving comps within a radius of an address or lat, lng point.
Successfully retrieved Listings within a given Area.
required | object (ListingCompsInAreaResponseSchema) Schema representing the response for retrieving comps within a radius of an address or lat, lng point. |
required | object (Status) The Status object on the response envelope |
The request was invalid.
Failed to find data matching your request.
An internal server error occurred.
{- "address": "1321 15th St. Denver, CO 80202",
- "radius": 3000,
- "pagination": {
- "page_size": 3,
- "offset": 0
}, - "currency": "usd",
- "sort_order": "proximity",
- "sort_direction": "ascending",
- "filters": [
- {
- "field": "bedrooms",
- "type": "select",
- "value": 4
}, - {
- "field": "bathrooms",
- "type": "select",
- "value": 2
}
]
}
{- "payload": {
- "page_info": {
- "total_count": 13,
- "page_size": 3,
- "offset": 0
}, - "sort_order": "proximity",
- "sort_direction": "ascending",
- "listings": [
- {
- "property_id": "abnb_XXXXXXXX",
- "airbnb_host_id": "1111111",
- "airbnb_property_id": "XXXXXXXX",
- "vrbo_property_id": null,
- "vrbo_property_url": null,
- "market_id": "airdna-163",
- "market_name": "Denver",
- "country_name": "United States",
- "city_name": "Denver",
- "state_name": "Colorado",
- "zipcode": "80205",
- "msa_name": "Denver-Aurora-Lakewood, CO Metro Area",
- "location": {
- "lat": 37.23482,
- "lng": -102.99225
}, - "exact_location": false,
- "distance": 937.49415287,
- "title": "Beautiful 4 Bedroom Loft",
- "bedrooms": 4,
- "bathrooms": 2,
- "accommodates": 14,
- "listing_type": "entire_place",
- "property_type": "condominium",
- "instant_book": false,
- "superhost": false,
- "cancellation_policy": "strict",
- "host_size": "1",
- "amenities": {
- "has_aircon": true,
- "has_breakfast": false,
- "has_cable_tv": true,
- "has_doorman": false,
- "has_dryer": true,
- "has_elevator": false,
- "has_family_friendly": true,
- "has_guidebook": false,
- "has_gym": false,
- "has_handicap_access": false,
- "has_heating": true,
- "has_hottub": false,
- "has_indoor_fireplace": false,
- "has_intercom": false,
- "has_internet": true,
- "has_kitchen": true,
- "has_parking": true,
- "has_pets_allowed": false,
- "has_pool": false,
- "has_smoking": false,
- "has_suitable_for_events": false,
- "has_tv": true,
- "has_washer": true,
- "has_wireless_internet": true
}, - "property_manager_name": null,
- "professionally_managed": false,
- "rating": 5,
- "ratings": {
- "overall_rating": 5,
- "airbnb_accuracy_rating": 5,
- "airbnb_checkin_rating": 5,
- "airbnb_cleanliness_rating": 5,
- "airbnb_communication_rating": 5,
- "airbnb_location_rating": 5,
- "airbnb_value_rating": 5
}, - "reviews": 108,
- "revenue_ltm": 135019,
- "revenue_potential_ltm": 145964,
- "occupancy_rate_ltm": 36.06,
- "average_daily_rate_ltm": 1134.6134,
- "days_available_ltm": 330,
- "days_blocked_ltm": 36,
- "days_reserved_ltm": 119,
- "num_reservations_ltm": 42,
- "currency": "usd",
- "minimum_stay": 2,
- "response_rate": null,
- "response_time": null,
- "created_date": "2020-09-23",
- "last_calendar_update": "2024-08-05",
- "last_scraped_date": "2024-07-27",
- "license": null,
- "cleaning_fee": 350
}, - {
- "property_id": "abnb_YYYYYYYY",
- "airbnb_host_id": "2222222",
- "airbnb_property_id": "YYYYYYYY",
- "vrbo_property_id": null,
- "vrbo_property_url": null,
- "market_id": "airdna-163",
- "market_name": "Denver",
- "country_name": "United States",
- "city_name": "Denver",
- "state_name": "Colorado",
- "zipcode": "80205",
- "msa_name": "Denver-Aurora-Lakewood, CO Metro Area",
- "location": {
- "lat": 33.75528,
- "lng": -107.98228
}, - "exact_location": false,
- "distance": 1594.8727492,
- "title": "Beautiful Home in RiNo",
- "bedrooms": 4,
- "bathrooms": 2,
- "accommodates": 12,
- "listing_type": "entire_place",
- "property_type": "house",
- "instant_book": false,
- "superhost": true,
- "cancellation_policy": null,
- "host_size": "2-5",
- "amenities": {
- "has_aircon": true,
- "has_breakfast": false,
- "has_cable_tv": false,
- "has_doorman": false,
- "has_dryer": true,
- "has_elevator": false,
- "has_family_friendly": true,
- "has_guidebook": false,
- "has_gym": false,
- "has_handicap_access": false,
- "has_heating": true,
- "has_hottub": false,
- "has_indoor_fireplace": false,
- "has_intercom": false,
- "has_internet": true,
- "has_kitchen": true,
- "has_parking": false,
- "has_pets_allowed": false,
- "has_pool": false,
- "has_smoking": false,
- "has_suitable_for_events": true,
- "has_tv": true,
- "has_washer": true,
- "has_wireless_internet": true
}, - "property_manager_name": null,
- "professionally_managed": false,
- "rating": 5,
- "ratings": {
- "overall_rating": 5,
- "airbnb_accuracy_rating": 5,
- "airbnb_checkin_rating": 5,
- "airbnb_cleanliness_rating": 5,
- "airbnb_communication_rating": 5,
- "airbnb_location_rating": 5,
- "airbnb_value_rating": 5
}, - "reviews": 90,
- "revenue_ltm": 68058,
- "revenue_potential_ltm": 100345,
- "occupancy_rate_ltm": 60.89,
- "average_daily_rate_ltm": 624.3853,
- "days_available_ltm": 179,
- "days_blocked_ltm": 153,
- "days_reserved_ltm": 109,
- "num_reservations_ltm": 30,
- "currency": "usd",
- "minimum_stay": 4,
- "response_rate": 100,
- "response_time": null,
- "created_date": "2020-08-23",
- "last_calendar_update": "2024-08-05",
- "last_scraped_date": "2024-07-26",
- "license": "2020-SDI-01010101",
- "cleaning_fee": 150
}, - {
- "property_id": "abnb_ZZZZZZZ",
- "airbnb_host_id": "3333333",
- "airbnb_property_id": "ZZZZZZZ",
- "vrbo_property_id": null,
- "vrbo_property_url": null,
- "market_id": "airdna-163",
- "market_name": "Denver",
- "country_name": "United States",
- "city_name": "Denver",
- "state_name": "Colorado",
- "zipcode": "80211",
- "msa_name": "Denver-Aurora-Lakewood, CO Metro Area",
- "location": {
- "lat": 39.76254,
- "lng": -105.00457
}, - "exact_location": false,
- "distance": 1595.59883818,
- "title": "Private Urban home",
- "bedrooms": 4,
- "bathrooms": 2,
- "accommodates": 8,
- "listing_type": "entire_place",
- "property_type": "house",
- "instant_book": false,
- "superhost": false,
- "cancellation_policy": null,
- "host_size": "1",
- "amenities": {
- "has_aircon": true,
- "has_breakfast": false,
- "has_cable_tv": true,
- "has_doorman": false,
- "has_dryer": true,
- "has_elevator": false,
- "has_family_friendly": true,
- "has_guidebook": false,
- "has_gym": false,
- "has_handicap_access": false,
- "has_heating": true,
- "has_hottub": false,
- "has_indoor_fireplace": false,
- "has_intercom": false,
- "has_internet": true,
- "has_kitchen": true,
- "has_parking": true,
- "has_pets_allowed": false,
- "has_pool": false,
- "has_smoking": false,
- "has_suitable_for_events": false,
- "has_tv": true,
- "has_washer": true,
- "has_wireless_internet": true
}, - "property_manager_name": null,
- "professionally_managed": false,
- "rating": 4.9,
- "ratings": {
- "overall_rating": 4.9,
- "airbnb_accuracy_rating": 5,
- "airbnb_checkin_rating": 5,
- "airbnb_cleanliness_rating": 5,
- "airbnb_communication_rating": 5,
- "airbnb_location_rating": 5,
- "airbnb_value_rating": 5
}, - "reviews": 274,
- "revenue_ltm": 330,
- "revenue_potential_ltm": 76810,
- "occupancy_rate_ltm": 3.57,
- "average_daily_rate_ltm": 330,
- "days_available_ltm": 28,
- "days_blocked_ltm": 267,
- "days_reserved_ltm": 1,
- "num_reservations_ltm": 1,
- "currency": "usd",
- "minimum_stay": 29,
- "response_rate": 100,
- "response_time": 28,
- "created_date": "2017-06-03",
- "last_calendar_update": "2024-07-29",
- "last_scraped_date": "2024-07-29",
- "license": "2017-QKS-02020202",
- "cleaning_fee": 140
}
]
}, - "status": {
- "type": "success",
- "response_id": "API-S-066",
- "message": "Successfully retrieved comps within the given area."
}
}
This endpoint returns details about a specific listing.
This request will return details such as:
Successful Listing Details Response
required | object (Listing) |
required | object (Status) The Status object on the response envelope |
The request was invalid.
Failed to find data matching your request.
An internal server error occurred.
{- "payload": {
- "property_id": "abnb_XXXXXXXX",
- "details": {
- "title": "Secluded log cabin",
- "market_name": "Black Hawk",
- "accommodates": 2,
- "bedrooms": 0,
- "bathrooms": 1,
- "reviews": 32,
- "rating": 5,
- "price_tier": "upscale",
- "property_type": "cabin",
- "listing_type": "entire_place",
- "real_estate_type": "house",
- "instant_book": false,
- "superhost": true,
- "cancellation_policy": "moderate",
- "host_size": "1",
- "minimum_stay": 2,
- "created_date": "2023-11-02",
- "license": null,
- "cleaning_fee": 100
}, - "location": {
- "lat": 39.8234529,
- "lng": -105.485942
}, - "exact_location": null,
- "location_area": {
- "country_name": "United States",
- "city_name": "Black Hawk",
- "state_name": "Colorado",
- "zipcode": 80422,
- "msa_name": "Denver-Aurora-Lakewood, CO Metro Area"
}, - "metrics": {
- "occupancy": 78.34,
- "adr": 223.35,
- "revenue": 27472,
- "revenue_potential": 29735,
- "days_available": 157,
- "days_blocked": 19,
- "days_reserved": 123,
- "num_reservations": 45,
- "response_rate": 100,
- "response_time": null,
- "last_calendar_update": "2024-05-02",
- "last_scraped_date": "2024-05-02"
}, - "ratings": {
- "overall_rating": 5,
- "airbnb_accuracy_rating": 5,
- "airbnb_checkin_rating": 5,
- "airbnb_cleanliness_rating": 5,
- "airbnb_communication_rating": 5,
- "airbnb_location_rating": 5,
- "airbnb_value_rating": 5
}, - "platforms": {
- "airbnb_host_id": "XXXXXXXXX",
- "airbnb_property_id": "XXXXXXXX",
- "vrbo_property_id": null,
- "vrbo_property_url": null
}, - "amenities": {
- "has_aircon": false,
- "has_breakfast": false,
- "has_cable_tv": false,
- "has_doorman": false,
- "has_dryer": true,
- "has_elevator": false,
- "has_family_friendly": false,
- "has_guidebook": false,
- "has_gym": false,
- "has_handicap_access": false,
- "has_heating": true,
- "has_hottub": true,
- "has_indoor_fireplace": false,
- "has_intercom": false,
- "has_internet": true,
- "has_kitchen": true,
- "has_parking": true,
- "has_pets_allowed": false,
- "has_pool": false,
- "has_smoking": false,
- "has_suitable_for_events": false,
- "has_tv": true,
- "has_washer": true,
- "has_wireless_internet": true
}, - "market": {
- "id": 59318,
- "name": "Black Hawk",
- "market_type": "mountains_lakes",
- "market_score": 94.049,
- "country_code": "us"
}, - "professionally_managed": false,
- "property_manager": {
- "property_manager_name": null,
- "property_count": null,
- "review_count": null
}, - "currency": "usd"
}, - "status": {
- "type": "success",
- "response_id": "API-S-008",
- "message": "Successfully retrieved Listing Details."
}
}
This endpoint provides details for up to 25 Listings in a single request.
This request will return details such as:
Supports Currency Conversion for non-USD currencies.
Schema for performing a request to fetch multiple Listings.
Successful Listing Bulk Fetch Response
required | object |
required | object (Status) The Status object on the response envelope |
The request was invalid.
Failed to find data matching your request.
An internal server error occurred.
{- "listing_ids": [
- "abnb_XXXXXXXX",
- "abnb_ZZZZZZZ"
], - "currency": "usd"
}
{- "payload": {
- "failures": [ ],
- "listings": [
- {
- "property_id": "abnb_XXXXXXXX",
- "details": {
- "title": "Secluded log cabin",
- "market_name": "Black Hawk",
- "accommodates": 2,
- "bedrooms": 0,
- "bathrooms": 1,
- "reviews": 32,
- "rating": 5,
- "price_tier": "upscale",
- "property_type": "cabin",
- "listing_type": "entire_place",
- "real_estate_type": "house",
- "instant_book": false,
- "superhost": true,
- "cancellation_policy": "moderate",
- "host_size": "1",
- "minimum_stay": 2,
- "created_date": "2023-11-02",
- "license": null,
- "cleaning_fee": 100
}, - "location": {
- "lat": 39.92834,
- "lng": -105.42398
}, - "exact_location": null,
- "location_area": {
- "country_name": "United States",
- "city_name": "Black Hawk",
- "state_name": "Colorado",
- "zipcode": 80422,
- "msa_name": "Denver-Aurora-Lakewood, CO Metro Area"
}, - "metrics": {
- "occupancy": 78.34,
- "adr": 223.35,
- "revenue": 27472,
- "revenue_potential": 29735,
- "days_available": 157,
- "days_blocked": 19,
- "days_reserved": 123,
- "num_reservations": 45,
- "response_rate": 100,
- "response_time": null,
- "last_calendar_update": "2024-05-02",
- "last_scraped_date": "2024-05-02"
}, - "ratings": {
- "overall_rating": 5,
- "airbnb_accuracy_rating": 5,
- "airbnb_checkin_rating": 5,
- "airbnb_cleanliness_rating": 5,
- "airbnb_communication_rating": 5,
- "airbnb_location_rating": 5,
- "airbnb_value_rating": 5
}, - "platforms": {
- "airbnb_host_id": "XXXXXXXXX",
- "airbnb_property_id": "XXXXXXX",
- "vrbo_property_id": null,
- "vrbo_property_url": null
}, - "amenities": {
- "has_aircon": false,
- "has_breakfast": false,
- "has_cable_tv": false,
- "has_doorman": false,
- "has_dryer": true,
- "has_elevator": false,
- "has_family_friendly": false,
- "has_guidebook": false,
- "has_gym": false,
- "has_handicap_access": false,
- "has_heating": true,
- "has_hottub": true,
- "has_indoor_fireplace": false,
- "has_intercom": false,
- "has_internet": true,
- "has_kitchen": true,
- "has_parking": true,
- "has_pets_allowed": false,
- "has_pool": false,
- "has_smoking": false,
- "has_suitable_for_events": false,
- "has_tv": true,
- "has_washer": true,
- "has_wireless_internet": true
}, - "market": {
- "id": 59318,
- "name": "Black Hawk",
- "market_type": "mountains_lakes",
- "market_score": 94.049,
- "country_code": "us"
}, - "professionally_managed": false,
- "property_manager": {
- "property_manager_name": null,
- "property_count": null,
- "review_count": null
}, - "currency": "usd"
}, - {
- "property_id": "abnb_ZZZZZZZ",
- "details": {
- "title": "House with Beautiful Views",
- "market_name": "Black Hawk",
- "accommodates": 4,
- "bedrooms": 2,
- "bathrooms": 2,
- "reviews": 793,
- "rating": 5,
- "price_tier": "luxury",
- "property_type": "cabin",
- "listing_type": "entire_place",
- "real_estate_type": "house",
- "instant_book": false,
- "superhost": true,
- "cancellation_policy": "strict",
- "host_size": "2-5",
- "minimum_stay": 1,
- "created_date": "2013-07-06",
- "license": null,
- "cleaning_fee": 150
}, - "location": {
- "lat": 39.9388,
- "lng": -105.43485
}, - "exact_location": true,
- "location_area": {
- "country_name": "United States",
- "city_name": "Black Hawk",
- "state_name": "Colorado",
- "zipcode": 80422,
- "msa_name": "Denver-Aurora-Lakewood, CO Metro Area"
}, - "metrics": {
- "occupancy": 91.78,
- "adr": 407.72,
- "revenue": 113754,
- "revenue_potential": 130439,
- "days_available": 304,
- "days_blocked": 62,
- "days_reserved": 279,
- "num_reservations": 128,
- "response_rate": 100,
- "response_time": 409,
- "last_calendar_update": "2024-05-06",
- "last_scraped_date": "2024-05-06"
}, - "ratings": {
- "overall_rating": 5,
- "airbnb_accuracy_rating": 5,
- "airbnb_checkin_rating": 5,
- "airbnb_cleanliness_rating": 5,
- "airbnb_communication_rating": 5,
- "airbnb_location_rating": 5,
- "airbnb_value_rating": 5
}, - "platforms": {
- "airbnb_host_id": "ZZZZZZZ",
- "airbnb_property_id": "ZZZZZZZ",
- "vrbo_property_id": "ZZZZZZZ",
}, - "amenities": {
- "has_aircon": false,
- "has_breakfast": false,
- "has_cable_tv": false,
- "has_doorman": false,
- "has_dryer": true,
- "has_elevator": false,
- "has_family_friendly": true,
- "has_guidebook": false,
- "has_gym": false,
- "has_handicap_access": false,
- "has_heating": true,
- "has_hottub": false,
- "has_indoor_fireplace": true,
- "has_intercom": false,
- "has_internet": true,
- "has_kitchen": true,
- "has_parking": true,
- "has_pets_allowed": true,
- "has_pool": false,
- "has_smoking": false,
- "has_suitable_for_events": false,
- "has_tv": false,
- "has_washer": true,
- "has_wireless_internet": true
}, - "market": {
- "id": 59318,
- "name": "Black Hawk",
- "market_type": "mountains_lakes",
- "market_score": 94.049,
- "country_code": "us"
}, - "professionally_managed": false,
- "property_manager": {
- "property_manager_name": null,
- "property_count": null,
- "review_count": null
}, - "currency": "usd"
}
]
}, - "status": {
- "type": "success",
- "response_id": "API-S-012",
- "message": "Successfully retrieved 2/2 Listings."
}
}
This endpoint provides 12-60 months of historical monthly listing metrics for a specific Listing.
This request will return metrics of:
Supports Currency Conversion for non-USD currencies.
Schema for performing a request to fetch Listing Metrics for a Listing.
Successful Listing Metrics Response
required | object |
required | object (Status) The Status object on the response envelope |
The request was invalid.
Failed to find data matching your request.
An internal server error occurred.
{- "num_months": 12,
- "currency": "usd"
}
{- "payload": {
- "metrics": [
- {
- "date": "2023-05",
- "occupancy": 100,
- "revenue": 9519,
- "adr": 380.76
}, - {
- "date": "2023-06",
- "occupancy": 95.83,
- "revenue": 8133,
- "adr": 353.61
}, - {
- "date": "2023-07",
- "occupancy": 100,
- "revenue": 8776,
- "adr": 365.67
}, - {
- "date": "2023-08",
- "occupancy": 96.55,
- "revenue": 9278,
- "adr": 331.36
}, - {
- "date": "2023-09",
- "occupancy": 89.47,
- "revenue": 6653,
- "adr": 391.35
}, - {
- "date": "2023-10",
- "occupancy": 100,
- "revenue": 10806,
- "adr": 385.93
}, - {
- "date": "2023-11",
- "occupancy": 86.96,
- "revenue": 8584,
- "adr": 429.2
}, - {
- "date": "2023-12",
- "occupancy": 100,
- "revenue": 12215,
- "adr": 394.03
}, - {
- "date": "2024-01",
- "occupancy": 70.83,
- "revenue": 7264,
- "adr": 427.29
}, - {
- "date": "2024-02",
- "occupancy": 88.46,
- "revenue": 11741,
- "adr": 510.48
}, - {
- "date": "2024-03",
- "occupancy": 84.62,
- "revenue": 10890,
- "adr": 495
}, - {
- "date": "2024-04",
- "occupancy": 84,
- "revenue": 9895,
- "adr": 471.19
}
]
}, - "status": {
- "type": "success",
- "response_id": "API-S-015",
- "message": "Successfully retrieved Metrics for the requested Listing."
}
}
This endpoint allows you to search for a listing and returns a list of comparable listings.
This request will return details for the comparable listings such as:
Supports Currency Conversion for non-USD currencies.
Schema for performing a request to fetch Listing Comps for a Listing.
Successful Listing Comps Response
required | object (ListingCompsResponseSchema) |
required | object (Status) The Status object on the response envelope |
The request was invalid.
Failed to find data matching your request.
An internal server error occurred.
{- "pagination": {
- "page_size": 3,
- "offset": 0
}, - "currency": "usd"
}
{- "payload": {
- "page_info": {
- "total_count": 93,
- "page_size": 3,
- "offset": 0
}, - "currency": "usd",
- "comps": [
- {
- "property_id": "abnb_12345678",
- "details": {
- "title": "A-Frame: Skiing, Hiking, Hot Tub",
- "market_name": "Black Hawk",
- "accommodates": 3,
- "bedrooms": 1,
- "bathrooms": 1,
- "reviews": 141,
- "rating": 5,
- "price_tier": "upscale",
- "property_type": "cabin",
- "listing_type": "entire_place",
- "real_estate_type": "house",
- "instant_book": true,
- "superhost": true,
- "cancellation_policy": "strict",
- "host_size": "2-5",
- "minimum_stay": 2,
- "created_date": "2021-11-29",
- "license": null,
- "cleaning_fee": 125
}, - "location": {
- "lat": 39.934578,
- "lng": -105.423948
}, - "exact_location": false,
- "location_area": {
- "country_name": "United States",
- "city_name": "Black Hawk",
- "state_name": "Colorado",
- "zipcode": 80422,
- "msa_name": "Denver-Aurora-Lakewood, CO Metro Area"
}, - "metrics": {
- "occupancy": 58.76,
- "adr": 238.42,
- "revenue": 49591,
- "revenue_potential": 51623,
- "days_available": 354,
- "days_blocked": 12,
- "days_reserved": 208,
- "num_reservations": 76,
- "response_rate": 100,
- "response_time": null,
- "last_calendar_update": "2024-05-06",
- "last_scraped_date": "2024-05-06"
}, - "ratings": {
- "overall_rating": 5,
- "airbnb_accuracy_rating": 5,
- "airbnb_checkin_rating": 5,
- "airbnb_cleanliness_rating": 5,
- "airbnb_communication_rating": 5,
- "airbnb_location_rating": 5,
- "airbnb_value_rating": 5
}, - "platforms": {
- "airbnb_host_id": "12345678",
- "airbnb_property_id": "12345678",
- "vrbo_property_id": null,
- "vrbo_property_url": null
}, - "amenities": {
- "has_aircon": false,
- "has_breakfast": false,
- "has_cable_tv": false,
- "has_doorman": false,
- "has_dryer": true,
- "has_elevator": false,
- "has_family_friendly": false,
- "has_guidebook": false,
- "has_gym": false,
- "has_handicap_access": false,
- "has_heating": true,
- "has_hottub": false,
- "has_indoor_fireplace": true,
- "has_intercom": false,
- "has_internet": true,
- "has_kitchen": true,
- "has_parking": true,
- "has_pets_allowed": false,
- "has_pool": false,
- "has_smoking": false,
- "has_suitable_for_events": false,
- "has_tv": false,
- "has_washer": false,
- "has_wireless_internet": true
}, - "market": {
- "id": 59318,
- "name": "Black Hawk",
- "market_type": "mountains_lakes",
- "market_score": 94.049,
- "country_code": "us"
}, - "professionally_managed": false,
- "property_manager": {
- "property_manager_name": null,
- "property_count": null,
- "review_count": null
}, - "currency": "usd",
- "comp_score": 100
}, - {
- "property_id": "abnb_11111111",
- "details": {
- "title": "Couples Mountain Retreat",
- "market_name": "Golden",
- "accommodates": 2,
- "bedrooms": 1,
- "bathrooms": 1,
- "reviews": 20,
- "rating": 5,
- "price_tier": "luxury",
- "property_type": "tiny_house",
- "listing_type": "entire_place",
- "real_estate_type": "unique",
- "instant_book": false,
- "superhost": true,
- "cancellation_policy": "flexible",
- "host_size": "1",
- "minimum_stay": 2,
- "created_date": "2023-02-20",
- "license": null,
- "cleaning_fee": 0
}, - "location": {
- "lat": 39.929384,
- "lng": -105.328394
}, - "exact_location": false,
- "location_area": {
- "country_name": "United States",
- "city_name": "Golden",
- "state_name": "Colorado",
- "zipcode": 80403,
- "msa_name": "Boulder, CO Metro Area"
}, - "metrics": {
- "occupancy": 97.3,
- "adr": 213.98,
- "revenue": 53923,
- "revenue_potential": 69869,
- "days_available": 259,
- "days_blocked": 107,
- "days_reserved": 252,
- "num_reservations": 68,
- "response_rate": 100,
- "response_time": null,
- "last_calendar_update": "2024-05-06",
- "last_scraped_date": "2024-05-06"
}, - "ratings": {
- "overall_rating": 5,
- "airbnb_accuracy_rating": 5,
- "airbnb_checkin_rating": 5,
- "airbnb_cleanliness_rating": 5,
- "airbnb_communication_rating": 5,
- "airbnb_location_rating": 5,
- "airbnb_value_rating": 5
}, - "platforms": {
- "airbnb_host_id": "11111111",
- "airbnb_property_id": "11111111",
- "vrbo_property_id": null,
- "vrbo_property_url": null
}, - "amenities": {
- "has_aircon": true,
- "has_breakfast": true,
- "has_cable_tv": false,
- "has_doorman": false,
- "has_dryer": true,
- "has_elevator": false,
- "has_family_friendly": false,
- "has_guidebook": false,
- "has_gym": false,
- "has_handicap_access": false,
- "has_heating": true,
- "has_hottub": false,
- "has_indoor_fireplace": false,
- "has_intercom": false,
- "has_internet": true,
- "has_kitchen": true,
- "has_parking": true,
- "has_pets_allowed": false,
- "has_pool": false,
- "has_smoking": false,
- "has_suitable_for_events": false,
- "has_tv": false,
- "has_washer": true,
- "has_wireless_internet": true
}, - "market": {
- "id": 59434,
- "name": "Golden",
- "market_type": "mid_size_city",
- "market_score": 69.357,
- "country_code": "us"
}, - "professionally_managed": false,
- "property_manager": {
- "property_manager_name": null,
- "property_count": null,
- "review_count": null
}, - "currency": "usd",
- "comp_score": 99
}, - {
- "property_id": "abnb_22222222",
- "details": {
- "title": "Couple's Retreat",
- "market_name": "Golden",
- "accommodates": 2,
- "bedrooms": 1,
- "bathrooms": 1.5,
- "reviews": 134,
- "rating": 4.8,
- "price_tier": "luxury",
- "property_type": "cabin",
- "listing_type": "entire_place",
- "real_estate_type": "house",
- "instant_book": false,
- "superhost": true,
- "cancellation_policy": "strict",
- "host_size": "2-5",
- "minimum_stay": 2,
- "created_date": "2020-12-18",
- "license": null,
- "cleaning_fee": 125
}, - "location": {
- "lat": 39.923984,
- "lng": -105.43489
}, - "exact_location": false,
- "location_area": {
- "country_name": "United States",
- "city_name": "Golden",
- "state_name": "Colorado",
- "zipcode": 80403,
- "msa_name": "Denver-Aurora-Lakewood, CO Metro Area"
}, - "metrics": {
- "occupancy": 81.54,
- "adr": 223.63,
- "revenue": 66194,
- "revenue_potential": 66711,
- "days_available": 363,
- "days_blocked": 3,
- "days_reserved": 296,
- "num_reservations": 99,
- "response_rate": 100,
- "response_time": null,
- "last_calendar_update": "2024-05-06",
- "last_scraped_date": "2024-05-06"
}, - "ratings": {
- "overall_rating": 4.8,
- "airbnb_accuracy_rating": 5,
- "airbnb_checkin_rating": 5,
- "airbnb_cleanliness_rating": 5,
- "airbnb_communication_rating": 5,
- "airbnb_location_rating": 5,
- "airbnb_value_rating": 4.5
}, - "platforms": {
- "airbnb_host_id": "22222222",
- "airbnb_property_id": "22222222",
- "vrbo_property_id": null,
- "vrbo_property_url": null
}, - "amenities": {
- "has_aircon": false,
- "has_breakfast": false,
- "has_cable_tv": false,
- "has_doorman": false,
- "has_dryer": true,
- "has_elevator": false,
- "has_family_friendly": false,
- "has_guidebook": false,
- "has_gym": false,
- "has_handicap_access": false,
- "has_heating": true,
- "has_hottub": false,
- "has_indoor_fireplace": true,
- "has_intercom": false,
- "has_internet": true,
- "has_kitchen": true,
- "has_parking": true,
- "has_pets_allowed": true,
- "has_pool": false,
- "has_smoking": false,
- "has_suitable_for_events": false,
- "has_tv": false,
- "has_washer": true,
- "has_wireless_internet": true
}, - "market": {
- "id": 59434,
- "name": "Golden",
- "market_type": "mountains_lakes",
- "market_score": 69.357,
- "country_code": "us"
}, - "professionally_managed": false,
- "property_manager": {
- "property_manager_name": null,
- "property_count": null,
- "review_count": null
}, - "currency": "usd",
- "comp_score": 98
}
]
}, - "status": {
- "type": "success",
- "response_id": "API-S-013",
- "message": "Successfully retrieved Listing Comps for abnb_XXXXXXXX"
}
}
This endpoint provides daily future pricing for a listing for up to 12 months.
Schema for performing a request to fetch Future Daily Pricing for a Listing.
Successful Listing Future Daily Pricing Response
required | object |
required | object (Status) The Status object on the response envelope |
The request was invalid.
Failed to find data matching your request.
An internal server error occurred.
{- "num_months": 6,
- "currency": "usd"
}
{- "payload": {
- "pricing": [
- {
- "date": "2024-05-10",
- "status": 1,
- "rate": 247
}, - {
- "date": "2024-05-11",
- "status": 1,
- "rate": 246
}, - {
- "date": "2024-05-12",
- "status": 1,
- "rate": 236
}, - {
- "date": "2024-05-13",
- "status": 0,
- "rate": 192
}, - {
- "date": "2024-05-14",
- "status": 0,
- "rate": 204
}, - {
- "date": "2024-05-15",
- "status": 0,
- "rate": 201
}, - {
- "date": "2024-05-16",
- "status": 1,
- "rate": 232
}, - {
- "date": "2024-05-17",
- "status": 1,
- "rate": 247
}, - {
- "date": "2024-05-18",
- "status": 1,
- "rate": 245
}, - {
- "date": "2024-05-19",
- "status": 1,
- "rate": 221
}, - {
- "date": "2024-05-20",
- "status": 1,
- "rate": 219
}, - {
- "date": "2024-05-21",
- "status": 1,
- "rate": 219
}, - {
- "date": "2024-05-22",
- "status": 1,
- "rate": 219
}, - {
- "date": "2024-05-23",
- "status": 1,
- "rate": 223
}, - {
- "date": "2024-05-24",
- "status": 1,
- "rate": 250
}, - {
- "date": "2024-05-25",
- "status": 1,
- "rate": 244
}, - {
- "date": "2024-05-26",
- "status": 1,
- "rate": 226
}, - {
- "date": "2024-05-27",
- "status": 1,
- "rate": 233
}, - {
- "date": "2024-05-28",
- "status": 1,
- "rate": 234
}, - {
- "date": "2024-05-29",
- "status": 1,
- "rate": 237
}, - {
- "date": "2024-05-30",
- "status": 1,
- "rate": 238
}, - {
- "date": "2024-05-31",
- "status": 1,
- "rate": 253
}, - {
- "date": "2024-06-01",
- "status": 1,
- "rate": 247
}, - {
- "date": "2024-06-02",
- "status": 1,
- "rate": 228
}, - {
- "date": "2024-06-03",
- "status": 1,
- "rate": 224
}, - {
- "date": "2024-06-04",
- "status": 1,
- "rate": 236
}, - {
- "date": "2024-06-05",
- "status": 1,
- "rate": 222
}, - {
- "date": "2024-06-06",
- "status": 1,
- "rate": 244
}, - {
- "date": "2024-06-07",
- "status": 1,
- "rate": 253
}, - {
- "date": "2024-06-08",
- "status": 0,
- "rate": 220
}, - {
- "date": "2024-06-09",
- "status": 1,
- "rate": 230
}, - {
- "date": "2024-06-10",
- "status": 1,
- "rate": 222
}, - {
- "date": "2024-06-11",
- "status": 1,
- "rate": 199
}, - {
- "date": "2024-06-12",
- "status": 1,
- "rate": 199
}, - {
- "date": "2024-06-13",
- "status": 1,
- "rate": 243
}, - {
- "date": "2024-06-14",
- "status": 1,
- "rate": 242
}, - {
- "date": "2024-06-15",
- "status": 1,
- "rate": 247
}, - {
- "date": "2024-06-16",
- "status": 1,
- "rate": 238
}, - {
- "date": "2024-06-17",
- "status": 1,
- "rate": 249
}, - {
- "date": "2024-06-18",
- "status": 1,
- "rate": 256
}, - {
- "date": "2024-06-19",
- "status": 1,
- "rate": 239
}, - {
- "date": "2024-06-20",
- "status": 1,
- "rate": 271
}, - {
- "date": "2024-06-21",
- "status": 1,
- "rate": 264
}, - {
- "date": "2024-06-22",
- "status": 1,
- "rate": 269
}, - {
- "date": "2024-06-23",
- "status": 1,
- "rate": 269
}, - {
- "date": "2024-06-24",
- "status": 1,
- "rate": 249
}, - {
- "date": "2024-06-25",
- "status": 1,
- "rate": 239
}, - {
- "date": "2024-06-26",
- "status": 1,
- "rate": 239
}, - {
- "date": "2024-06-27",
- "status": 1,
- "rate": 240
}, - {
- "date": "2024-06-28",
- "status": 2,
- "rate": 0
}, - {
- "date": "2024-06-29",
- "status": 1,
- "rate": 266
}, - {
- "date": "2024-06-30",
- "status": 1,
- "rate": 271
}, - {
- "date": "2024-07-01",
- "status": 1,
- "rate": 222
}, - {
- "date": "2024-07-02",
- "status": 1,
- "rate": 226
}, - {
- "date": "2024-07-03",
- "status": 1,
- "rate": 226
}, - {
- "date": "2024-07-04",
- "status": 1,
- "rate": 236
}, - {
- "date": "2024-07-05",
- "status": 1,
- "rate": 240
}, - {
- "date": "2024-07-06",
- "status": 0,
- "rate": 214
}, - {
- "date": "2024-07-07",
- "status": 0,
- "rate": 198
}, - {
- "date": "2024-07-08",
- "status": 1,
- "rate": 256
}, - {
- "date": "2024-07-09",
- "status": 1,
- "rate": 256
}, - {
- "date": "2024-07-10",
- "status": 1,
- "rate": 256
}, - {
- "date": "2024-07-11",
- "status": 1,
- "rate": 261
}, - {
- "date": "2024-07-12",
- "status": 0,
- "rate": 216
}, - {
- "date": "2024-07-13",
- "status": 0,
- "rate": 216
}, - {
- "date": "2024-07-14",
- "status": 0,
- "rate": 190
}, - {
- "date": "2024-07-15",
- "status": 1,
- "rate": 226
}, - {
- "date": "2024-07-16",
- "status": 1,
- "rate": 226
}, - {
- "date": "2024-07-17",
- "status": 1,
- "rate": 226
}, - {
- "date": "2024-07-18",
- "status": 1,
- "rate": 228
}, - {
- "date": "2024-07-19",
- "status": 1,
- "rate": 230
}, - {
- "date": "2024-07-20",
- "status": 1,
- "rate": 242
}, - {
- "date": "2024-07-21",
- "status": 1,
- "rate": 226
}, - {
- "date": "2024-07-22",
- "status": 1,
- "rate": 226
}, - {
- "date": "2024-07-23",
- "status": 1,
- "rate": 226
}, - {
- "date": "2024-07-24",
- "status": 1,
- "rate": 223
}, - {
- "date": "2024-07-25",
- "status": 1,
- "rate": 231
}, - {
- "date": "2024-07-26",
- "status": 1,
- "rate": 233
}, - {
- "date": "2024-07-27",
- "status": 1,
- "rate": 247
}, - {
- "date": "2024-07-28",
- "status": 1,
- "rate": 230
}, - {
- "date": "2024-07-29",
- "status": 0,
- "rate": 206
}, - {
- "date": "2024-07-30",
- "status": 0,
- "rate": 206
}, - {
- "date": "2024-07-31",
- "status": 0,
- "rate": 199
}, - {
- "date": "2024-08-01",
- "status": 0,
- "rate": 209
}, - {
- "date": "2024-08-02",
- "status": 1,
- "rate": 265
}, - {
- "date": "2024-08-03",
- "status": 1,
- "rate": 271
}, - {
- "date": "2024-08-04",
- "status": 1,
- "rate": 222
}, - {
- "date": "2024-08-05",
- "status": 1,
- "rate": 224
}, - {
- "date": "2024-08-06",
- "status": 1,
- "rate": 223
}, - {
- "date": "2024-08-07",
- "status": 1,
- "rate": 214
}, - {
- "date": "2024-08-08",
- "status": 0,
- "rate": 200
}, - {
- "date": "2024-08-09",
- "status": 0,
- "rate": 215
}, - {
- "date": "2024-08-10",
- "status": 0,
- "rate": 215
}, - {
- "date": "2024-08-11",
- "status": 1,
- "rate": 224
}, - {
- "date": "2024-08-12",
- "status": 1,
- "rate": 224
}, - {
- "date": "2024-08-13",
- "status": 1,
- "rate": 224
}, - {
- "date": "2024-08-14",
- "status": 1,
- "rate": 226
}, - {
- "date": "2024-08-15",
- "status": 1,
- "rate": 238
}, - {
- "date": "2024-08-16",
- "status": 1,
- "rate": 241
}, - {
- "date": "2024-08-17",
- "status": 1,
- "rate": 244
}, - {
- "date": "2024-08-18",
- "status": 1,
- "rate": 224
}, - {
- "date": "2024-08-19",
- "status": 0,
- "rate": 197
}, - {
- "date": "2024-08-20",
- "status": 0,
- "rate": 195
}, - {
- "date": "2024-08-21",
- "status": 1,
- "rate": 271
}, - {
- "date": "2024-08-22",
- "status": 1,
- "rate": 261
}, - {
- "date": "2024-08-23",
- "status": 1,
- "rate": 247
}, - {
- "date": "2024-08-24",
- "status": 1,
- "rate": 252
}, - {
- "date": "2024-08-25",
- "status": 1,
- "rate": 255
}, - {
- "date": "2024-08-26",
- "status": 1,
- "rate": 224
}, - {
- "date": "2024-08-27",
- "status": 1,
- "rate": 231
}, - {
- "date": "2024-08-28",
- "status": 1,
- "rate": 232
}, - {
- "date": "2024-08-29",
- "status": 1,
- "rate": 239
}, - {
- "date": "2024-08-30",
- "status": 1,
- "rate": 224
}, - {
- "date": "2024-08-31",
- "status": 1,
- "rate": 224
}, - {
- "date": "2024-09-01",
- "status": 0,
- "rate": 202
}, - {
- "date": "2024-09-02",
- "status": 0,
- "rate": 198
}, - {
- "date": "2024-09-03",
- "status": 0,
- "rate": 212
}, - {
- "date": "2024-09-04",
- "status": 0,
- "rate": 206
}, - {
- "date": "2024-09-05",
- "status": 0,
- "rate": 213
}, - {
- "date": "2024-09-06",
- "status": 1,
- "rate": 242
}, - {
- "date": "2024-09-07",
- "status": 1,
- "rate": 242
}, - {
- "date": "2024-09-08",
- "status": 1,
- "rate": 219
}, - {
- "date": "2024-09-09",
- "status": 1,
- "rate": 219
}, - {
- "date": "2024-09-10",
- "status": 1,
- "rate": 219
}, - {
- "date": "2024-09-11",
- "status": 0,
- "rate": 197
}, - {
- "date": "2024-09-12",
- "status": 0,
- "rate": 213
}, - {
- "date": "2024-09-13",
- "status": 0,
- "rate": 218
}, - {
- "date": "2024-09-14",
- "status": 0,
- "rate": 217
}, - {
- "date": "2024-09-15",
- "status": 0,
- "rate": 200
}, - {
- "date": "2024-09-16",
- "status": 1,
- "rate": 232
}, - {
- "date": "2024-09-17",
- "status": 1,
- "rate": 251
}, - {
- "date": "2024-09-18",
- "status": 1,
- "rate": 232
}, - {
- "date": "2024-09-19",
- "status": 1,
- "rate": 232
}, - {
- "date": "2024-09-20",
- "status": 0,
- "rate": 213
}, - {
- "date": "2024-09-21",
- "status": 0,
- "rate": 212
}, - {
- "date": "2024-09-22",
- "status": 0,
- "rate": 196
}, - {
- "date": "2024-09-23",
- "status": 0,
- "rate": 201
}, - {
- "date": "2024-09-24",
- "status": 0,
- "rate": 196
}, - {
- "date": "2024-09-25",
- "status": 0,
- "rate": 195
}, - {
- "date": "2024-09-26",
- "status": 0,
- "rate": 209
}, - {
- "date": "2024-09-27",
- "status": 0,
- "rate": 214
}, - {
- "date": "2024-09-28",
- "status": 0,
- "rate": 208
}, - {
- "date": "2024-09-29",
- "status": 0,
- "rate": 205
}, - {
- "date": "2024-09-30",
- "status": 0,
- "rate": 196
}, - {
- "date": "2024-10-01",
- "status": 0,
- "rate": 196
}, - {
- "date": "2024-10-02",
- "status": 0,
- "rate": 204
}, - {
- "date": "2024-10-03",
- "status": 0,
- "rate": 200
}, - {
- "date": "2024-10-04",
- "status": 0,
- "rate": 213
}, - {
- "date": "2024-10-05",
- "status": 0,
- "rate": 208
}, - {
- "date": "2024-10-06",
- "status": 0,
- "rate": 208
}, - {
- "date": "2024-10-07",
- "status": 0,
- "rate": 194
}, - {
- "date": "2024-10-08",
- "status": 0,
- "rate": 198
}, - {
- "date": "2024-10-09",
- "status": 0,
- "rate": 204
}, - {
- "date": "2024-10-10",
- "status": 0,
- "rate": 200
}, - {
- "date": "2024-10-11",
- "status": 0,
- "rate": 213
}, - {
- "date": "2024-10-12",
- "status": 0,
- "rate": 209
}, - {
- "date": "2024-10-13",
- "status": 0,
- "rate": 208
}, - {
- "date": "2024-10-14",
- "status": 0,
- "rate": 194
}, - {
- "date": "2024-10-15",
- "status": 0,
- "rate": 194
}, - {
- "date": "2024-10-16",
- "status": 0,
- "rate": 194
}, - {
- "date": "2024-10-17",
- "status": 0,
- "rate": 213
}, - {
- "date": "2024-10-18",
- "status": 0,
- "rate": 213
}, - {
- "date": "2024-10-19",
- "status": 0,
- "rate": 213
}, - {
- "date": "2024-10-20",
- "status": 0,
- "rate": 208
}, - {
- "date": "2024-10-21",
- "status": 0,
- "rate": 194
}, - {
- "date": "2024-10-22",
- "status": 0,
- "rate": 194
}, - {
- "date": "2024-10-23",
- "status": 0,
- "rate": 194
}, - {
- "date": "2024-10-24",
- "status": 0,
- "rate": 213
}, - {
- "date": "2024-10-25",
- "status": 0,
- "rate": 213
}, - {
- "date": "2024-10-26",
- "status": 0,
- "rate": 213
}, - {
- "date": "2024-10-27",
- "status": 0,
- "rate": 208
}, - {
- "date": "2024-10-28",
- "status": 0,
- "rate": 194
}, - {
- "date": "2024-10-29",
- "status": 0,
- "rate": 189
}, - {
- "date": "2024-10-30",
- "status": 0,
- "rate": 189
}, - {
- "date": "2024-10-31",
- "status": 2,
- "rate": 0
}
]
}, - "status": {
- "type": "success",
- "response_id": "API-S-014",
- "message": "Successfully retrieved future daily pricing for the requested Listing."
}
}
Rentalizer uses AirDNA's proprietary algorithms and data to provide Performance Estimations for addresses or locations.
Across our Rentalizer endpoints, our performance estimates include Monthly and Yearly data. such as:
You can request a detailed Rentalizer performance estimate for a property (by address
) or location (by lat
+ lng
).
This detailed Rentalizer performance estimate will provide:
Schema for performing a Rentalizer Request for an address or latitude/longitude.
Successful Rentalizer Estimate Response
required | object (RentalizerEstimateResponseSchema) |
required | object (Status) The Status object on the response envelope |
The request was invalid.
An internal server error occurred.
{- "address": "1321 15th St. Denver, CO 80202",
- "bedrooms": 3,
- "bathrooms": 3.5,
- "accommodates": 6,
- "currency": "usd"
}
{- "payload": {
- "details": {
- "address": "1321 15th St. Denver, CO 80202",
- "address_lookup": "1321 15 ST, DENVER, CO 80202",
- "zipcode": "80202",
- "accommodates": 6,
- "bedrooms": 3,
- "bathrooms": 3.5
}, - "location": {
- "lat": 39.748847,
- "lng": -104.998919
}, - "stats": {
- "currency": "usd",
- "currency_symbol": "$",
- "property_value": null,
- "future": {
- "summary": {
- "adr": 480,
- "occupancy": 0.73,
- "revenue": 128139,
- "revenue_upper": 133622,
- "revenue_lower": 122655
}, - "metrics": [
- {
- "date": "2024-05",
- "occupancy": 0.91,
- "adr": 439.33,
- "revenue": 12330,
- "revenue_lower": 11917,
- "revenue_upper": 12742
}, - {
- "date": "2024-06",
- "occupancy": 0.88,
- "adr": 511.6,
- "revenue": 13549,
- "revenue_lower": 13022,
- "revenue_upper": 14075
}, - {
- "date": "2024-07",
- "occupancy": 0.77,
- "adr": 555.23,
- "revenue": 13266,
- "revenue_lower": 12801,
- "revenue_upper": 13730
}, - {
- "date": "2024-08",
- "occupancy": 0.76,
- "adr": 491.36,
- "revenue": 11519,
- "revenue_lower": 11087,
- "revenue_upper": 11950
}, - {
- "date": "2024-09",
- "occupancy": 0.88,
- "adr": 422.21,
- "revenue": 11185,
- "revenue_lower": 10587,
- "revenue_upper": 11782
}, - {
- "date": "2024-10",
- "occupancy": 0.69,
- "adr": 474.58,
- "revenue": 10213,
- "revenue_lower": 9859,
- "revenue_upper": 10566
}, - {
- "date": "2024-11",
- "occupancy": 0.66,
- "adr": 406.34,
- "revenue": 8044,
- "revenue_lower": 7704,
- "revenue_upper": 8383
}, - {
- "date": "2024-12",
- "occupancy": 0.5,
- "adr": 438.9,
- "revenue": 6826,
- "revenue_lower": 6418,
- "revenue_upper": 7233
}, - {
- "date": "2025-01",
- "occupancy": 0.55,
- "adr": 418.22,
- "revenue": 7129,
- "revenue_lower": 6664,
- "revenue_upper": 7593
}, - {
- "date": "2025-02",
- "occupancy": 0.84,
- "adr": 495.97,
- "revenue": 12125,
- "revenue_lower": 11705,
- "revenue_upper": 12544
}, - {
- "date": "2025-03",
- "occupancy": 0.68,
- "adr": 516.75,
- "revenue": 10956,
- "revenue_lower": 10602,
- "revenue_upper": 11309
}, - {
- "date": "2025-04",
- "occupancy": 0.63,
- "adr": 578.37,
- "revenue": 10997,
- "revenue_lower": 10283,
- "revenue_upper": 11710
}
]
}, - "historical": {
- "summary": {
- "revenue_valuation": {
- "monthly_pct_change": 1,
- "yearly_pct_change": -0.02
}
}, - "metrics": [
- {
- "date": "2022-05",
- "revenue_valuation": 159979
}, - {
- "date": "2022-06",
- "revenue_valuation": 154172
}, - {
- "date": "2022-07",
- "revenue_valuation": 144688
}, - {
- "date": "2022-08",
- "revenue_valuation": 139009
}, - {
- "date": "2022-09",
- "revenue_valuation": 127229
}, - {
- "date": "2022-10",
- "revenue_valuation": 124082
}, - {
- "date": "2022-11",
- "revenue_valuation": 110046
}, - {
- "date": "2022-12",
- "revenue_valuation": 112334
}, - {
- "date": "2023-01",
- "revenue_valuation": 119594
}, - {
- "date": "2023-02",
- "revenue_valuation": 122231
}, - {
- "date": "2023-03",
- "revenue_valuation": 128162
}, - {
- "date": "2023-04",
- "revenue_valuation": 128171
}, - {
- "date": "2023-05",
- "revenue_valuation": 129736
}, - {
- "date": "2023-06",
- "revenue_valuation": 132589
}, - {
- "date": "2023-07",
- "revenue_valuation": 132826
}, - {
- "date": "2023-08",
- "revenue_valuation": 128631
}, - {
- "date": "2023-09",
- "revenue_valuation": 130538
}, - {
- "date": "2023-10",
- "revenue_valuation": 127151
}, - {
- "date": "2023-11",
- "revenue_valuation": 124156
}, - {
- "date": "2023-12",
- "revenue_valuation": 122410
}, - {
- "date": "2024-01",
- "revenue_valuation": 120171
}, - {
- "date": "2024-02",
- "revenue_valuation": 125240
}, - {
- "date": "2024-03",
- "revenue_valuation": 126875
}, - {
- "date": "2024-04",
- "revenue_valuation": 128139
}
]
}
}, - "comps": [
- {
- "property_id": "vrbo_22222222",
- "details": {
- "title": "Always a Great Idea To Unwind!",
- "accommodates": 12,
- "bedrooms": 3,
- "bathrooms": 3,
- "reviews": 0,
- "rating": null,
- "property_type": "House",
- "listing_type": "entire_place"
}, - "location": {
- "lat": 39.742419,
- "lng": -104.99178
}, - "distance_meters": 940,
- "platforms": {
- "airbnb_property_id": null,
- "airbnb_property_url": null,
- "vrbo_property_id": "22222222",
}, - "stats": {
- "summary": {
- "occupancy": 0.39,
- "days_available": 170,
- "days_reserved": 67,
- "adr": 634,
- "revenue": 42539,
- "revenue_potential": 43092
}, - "metrics": [
- {
- "date": "2023-09",
- "occupancy": 0,
- "adr": null,
- "revenue": 0,
- "revenue_potential": 0
}, - {
- "date": "2023-10",
- "occupancy": 0.52,
- "adr": 501,
- "revenue": 8028,
- "revenue_potential": 8028
}, - {
- "date": "2023-11",
- "occupancy": 0.23,
- "adr": 511,
- "revenue": 3583,
- "revenue_potential": 3583
}, - {
- "date": "2023-12",
- "occupancy": 0.13,
- "adr": 570,
- "revenue": 2282,
- "revenue_potential": 2282
}, - {
- "date": "2024-01",
- "occupancy": 0,
- "adr": null,
- "revenue": 0,
- "revenue_potential": 0
}, - {
- "date": "2024-02",
- "occupancy": 0.56,
- "adr": 649,
- "revenue": 9098,
- "revenue_potential": 9098
}, - {
- "date": "2024-03",
- "occupancy": 1,
- "adr": 543,
- "revenue": 14118,
- "revenue_potential": 14671
}, - {
- "date": "2024-04",
- "occupancy": 1,
- "adr": 543,
- "revenue": 5430,
- "revenue_potential": 5430
}
]
}
}, - {
- "property_id": "abnb_2930843483955",
- "details": {
- "title": "Downtown House",
- "accommodates": 7,
- "bedrooms": 3,
- "bathrooms": 3,
- "reviews": 109,
- "rating": 5,
- "property_type": "Home",
- "listing_type": "entire_place"
}, - "location": {
- "lat": 39.73864,
- "lng": -105.00045
}, - "distance_meters": 1140,
- "platforms": {
- "airbnb_property_id": "2930843483955",
- "vrbo_property_id": null,
- "vrbo_property_url": null
}, - "stats": {
- "summary": {
- "occupancy": 0.71,
- "days_available": 363,
- "days_reserved": 257,
- "adr": 278,
- "revenue": 71676,
- "revenue_potential": 72064
}, - "metrics": [
- {
- "date": "2023-05",
- "occupancy": 0.71,
- "adr": 265,
- "revenue": 5833,
- "revenue_potential": 5833
}, - {
- "date": "2023-06",
- "occupancy": 0.7,
- "adr": 275,
- "revenue": 5795,
- "revenue_potential": 5795
}, - {
- "date": "2023-07",
- "occupancy": 0.74,
- "adr": 301,
- "revenue": 6935,
- "revenue_potential": 6935
}, - {
- "date": "2023-08",
- "occupancy": 0.61,
- "adr": 298,
- "revenue": 5678,
- "revenue_potential": 5678
}, - {
- "date": "2023-09",
- "occupancy": 0.7,
- "adr": 275,
- "revenue": 5795,
- "revenue_potential": 5795
}, - {
- "date": "2023-10",
- "occupancy": 0.71,
- "adr": 283,
- "revenue": 6240,
- "revenue_potential": 6240
}, - {
- "date": "2023-11",
- "occupancy": 0.8,
- "adr": 248,
- "revenue": 5973,
- "revenue_potential": 5973
}, - {
- "date": "2023-12",
- "occupancy": 0.64,
- "adr": 247,
- "revenue": 4462,
- "revenue_potential": 4850
}, - {
- "date": "2024-01",
- "occupancy": 0.65,
- "adr": 247,
- "revenue": 4959,
- "revenue_potential": 4959
}, - {
- "date": "2024-02",
- "occupancy": 0.93,
- "adr": 289,
- "revenue": 7828,
- "revenue_potential": 7828
}, - {
- "date": "2024-03",
- "occupancy": 0.52,
- "adr": 300,
- "revenue": 4815,
- "revenue_potential": 4815
}, - {
- "date": "2024-04",
- "occupancy": 0.77,
- "adr": 320,
- "revenue": 7363,
- "revenue_potential": 7363
}
]
}
}, - {
- "property_id": "abnb_20398434759384",
- "details": {
- "title": "~LoDo Art Loft~",
- "accommodates": 8,
- "bedrooms": 3,
- "bathrooms": 2.5,
- "reviews": 94,
- "rating": 5,
- "property_type": "Home",
- "listing_type": "entire_place"
}, - "location": {
- "lat": 39.7532175161224,
- "lng": -104.990283119049
}, - "distance_meters": 885,
- "platforms": {
- "airbnb_property_id": "20398434759384",
- "vrbo_property_id": null,
- "vrbo_property_url": null
}, - "stats": {
- "summary": {
- "occupancy": 0.66,
- "days_available": 360,
- "days_reserved": 238,
- "adr": 491,
- "revenue": 116954,
- "revenue_potential": 117970
}, - "metrics": [
- {
- "date": "2023-05",
- "occupancy": 1,
- "adr": 483,
- "revenue": 14995,
- "revenue_potential": 14995
}, - {
- "date": "2023-06",
- "occupancy": 0.77,
- "adr": 606,
- "revenue": 13951,
- "revenue_potential": 13951
}, - {
- "date": "2023-07",
- "occupancy": 0.77,
- "adr": 567,
- "revenue": 13046,
- "revenue_potential": 13582
}, - {
- "date": "2023-08",
- "occupancy": 0.68,
- "adr": 519,
- "revenue": 10901,
- "revenue_potential": 10901
}, - {
- "date": "2023-09",
- "occupancy": 0.79,
- "adr": 541,
- "revenue": 12450,
- "revenue_potential": 12650
}, - {
- "date": "2023-10",
- "occupancy": 0.48,
- "adr": 525,
- "revenue": 7880,
- "revenue_potential": 7880
}, - {
- "date": "2023-11",
- "occupancy": 0.57,
- "adr": 450,
- "revenue": 7660,
- "revenue_potential": 7660
}, - {
- "date": "2023-12",
- "occupancy": 0.63,
- "adr": 391,
- "revenue": 7446,
- "revenue_potential": 7468
}, - {
- "date": "2024-01",
- "occupancy": 0.4,
- "adr": 368,
- "revenue": 4423,
- "revenue_potential": 4530
}, - {
- "date": "2024-02",
- "occupancy": 0.86,
- "adr": 341,
- "revenue": 8207,
- "revenue_potential": 8356
}, - {
- "date": "2024-03",
- "occupancy": 0.52,
- "adr": 405,
- "revenue": 6482,
- "revenue_potential": 6482
}, - {
- "date": "2024-04",
- "occupancy": 0.53,
- "adr": 594,
- "revenue": 9513,
- "revenue_potential": 9513
}
]
}
}, - {
- "property_id": "abnb_3498534490530",
- "details": {
- "title": "Downtown 3Bed-2.5Bath",
- "accommodates": 8,
- "bedrooms": 3,
- "bathrooms": 2.5,
- "reviews": 60,
- "rating": 4.8,
- "property_type": "Home",
- "listing_type": "entire_place"
}, - "location": {
- "lat": 39.7522628558566,
- "lng": -104.989010969229
}, - "distance_meters": 930,
- "platforms": {
- "airbnb_property_id": "3498534490530",
- "vrbo_property_id": null,
- "vrbo_property_url": null
}, - "stats": {
- "summary": {
- "occupancy": 0.88,
- "days_available": 201,
- "days_reserved": 176,
- "adr": 347,
- "revenue": 61115,
- "revenue_potential": 62577
}, - "metrics": [
- {
- "date": "2023-09",
- "occupancy": 1,
- "adr": 228,
- "revenue": 5700,
- "revenue_potential": 5700
}, - {
- "date": "2023-10",
- "occupancy": 0.94,
- "adr": 292,
- "revenue": 8477,
- "revenue_potential": 8477
}, - {
- "date": "2023-11",
- "occupancy": 0.8,
- "adr": 253,
- "revenue": 6088,
- "revenue_potential": 6088
}, - {
- "date": "2023-12",
- "occupancy": 0.8,
- "adr": 312,
- "revenue": 7501,
- "revenue_potential": 7698
}, - {
- "date": "2024-01",
- "occupancy": 0.79,
- "adr": 332,
- "revenue": 7323,
- "revenue_potential": 7945
}, - {
- "date": "2024-02",
- "occupancy": 0.89,
- "adr": 301,
- "revenue": 7224,
- "revenue_potential": 7647
}, - {
- "date": "2024-03",
- "occupancy": 0.93,
- "adr": 367,
- "revenue": 10290,
- "revenue_potential": 10509
}, - {
- "date": "2024-04",
- "occupancy": 0.93,
- "adr": 327,
- "revenue": 8512,
- "revenue_potential": 8512
}
]
}
}, - {
- "property_id": "abnb_11111111",
- "details": {
- "title": "Huge Luxury Loft",
- "accommodates": 12,
- "bedrooms": 3,
- "bathrooms": 2.5,
- "reviews": 148,
- "rating": 4.8,
- "property_type": "Condo",
- "listing_type": "entire_place"
}, - "location": {
- "lat": 39.74131,
- "lng": -104.99274
}, - "distance_meters": 990,
- "platforms": {
- "airbnb_property_id": "21139957",
- "vrbo_property_id": "1182249",
}, - "stats": {
- "summary": {
- "occupancy": 0.77,
- "days_available": 355,
- "days_reserved": 272,
- "adr": 597,
- "revenue": 162549,
- "revenue_potential": 165889
}, - "metrics": [
- {
- "date": "2023-05",
- "occupancy": 0.84,
- "adr": 501,
- "revenue": 13049,
- "revenue_potential": 13049
}, - {
- "date": "2023-06",
- "occupancy": 1,
- "adr": 558,
- "revenue": 16747,
- "revenue_potential": 16747
}, - {
- "date": "2023-07",
- "occupancy": 0.81,
- "adr": 697,
- "revenue": 17431,
- "revenue_potential": 17431
}, - {
- "date": "2023-08",
- "occupancy": 0.71,
- "adr": 599,
- "revenue": 13189,
- "revenue_potential": 13189
}, - {
- "date": "2023-09",
- "occupancy": 1,
- "adr": 558,
- "revenue": 16745,
- "revenue_potential": 16745
}, - {
- "date": "2023-10",
- "occupancy": 0.74,
- "adr": 604,
- "revenue": 13912,
- "revenue_potential": 13912
}, - {
- "date": "2023-11",
- "occupancy": 1,
- "adr": 460,
- "revenue": 9663,
- "revenue_potential": 12348
}, - {
- "date": "2023-12",
- "occupancy": 0.37,
- "adr": 567,
- "revenue": 6247,
- "revenue_potential": 6674
}, - {
- "date": "2024-01",
- "occupancy": 0.4,
- "adr": 512,
- "revenue": 6148,
- "revenue_potential": 6375
}, - {
- "date": "2024-02",
- "occupancy": 1,
- "adr": 718,
- "revenue": 20832,
- "revenue_potential": 20832
}, - {
- "date": "2024-03",
- "occupancy": 0.65,
- "adr": 776,
- "revenue": 15537,
- "revenue_potential": 15537
}, - {
- "date": "2024-04",
- "occupancy": 0.5,
- "adr": 869,
- "revenue": 13049,
- "revenue_potential": 13049
}
]
}
}, - {
- "property_id": "abnb_12345678",
- "details": {
- "title": "Stunning Downtown Loft!",
- "accommodates": 12,
- "bedrooms": 3,
- "bathrooms": 2.5,
- "reviews": 150,
- "rating": 4.8,
- "property_type": "Condo",
- "listing_type": "entire_place"
}, - "location": {
- "lat": 39.73956,
- "lng": -104.99492
}, - "distance_meters": 1086,
- "platforms": {
- "airbnb_property_id": "12345678",
- "vrbo_property_id": "12345678",
}, - "stats": {
- "summary": {
- "occupancy": 0.85,
- "days_available": 360,
- "days_reserved": 307,
- "adr": 613,
- "revenue": 188361,
- "revenue_potential": 190527
}, - "metrics": [
- {
- "date": "2023-05",
- "occupancy": 1,
- "adr": 497,
- "revenue": 14437,
- "revenue_potential": 15075
}, - {
- "date": "2023-06",
- "occupancy": 1,
- "adr": 591,
- "revenue": 17147,
- "revenue_potential": 17501
}, - {
- "date": "2023-07",
- "occupancy": 0.74,
- "adr": 646,
- "revenue": 14865,
- "revenue_potential": 14865
}, - {
- "date": "2023-08",
- "occupancy": 1,
- "adr": 538,
- "revenue": 15629,
- "revenue_potential": 16324
}, - {
- "date": "2023-09",
- "occupancy": 1,
- "adr": 503,
- "revenue": 14615,
- "revenue_potential": 15093
}, - {
- "date": "2023-10",
- "occupancy": 0.87,
- "adr": 640,
- "revenue": 17303,
- "revenue_potential": 17303
}, - {
- "date": "2023-11",
- "occupancy": 0.87,
- "adr": 506,
- "revenue": 13173,
- "revenue_potential": 13173
}, - {
- "date": "2023-12",
- "occupancy": 0.74,
- "adr": 538,
- "revenue": 12389,
- "revenue_potential": 12389
}, - {
- "date": "2024-01",
- "occupancy": 0.61,
- "adr": 639,
- "revenue": 12159,
- "revenue_potential": 12159
}, - {
- "date": "2024-02",
- "occupancy": 1,
- "adr": 683,
- "revenue": 19827,
- "revenue_potential": 19827
}, - {
- "date": "2024-03",
- "occupancy": 0.61,
- "adr": 719,
- "revenue": 13671,
- "revenue_potential": 13671
}, - {
- "date": "2024-04",
- "occupancy": 0.93,
- "adr": 826,
- "revenue": 23146,
- "revenue_potential": 23146
}
]
}
}
]
}, - "status": {
- "type": "success",
- "response_id": "API-S-009",
- "message": "Successfully retrieved Rentalizer data for the requested address."
}
}
If you are looking for summarized Rentalizer performance estimates, you can request summaries for up to 25 addresses or locations in a single request.
Each requested address or location will receive the following data points:
Schema for performing bulk Rentalizer Summary Requests for multiple addresses or latitude/longitudes.
Successful Rentalizer Bulk Summary Response
required | object (RentalizerBulkSummaryResponseSchema) |
required | object (Status) The Status object on the response envelope |
The request was invalid.
An internal server error occurred.
{- "queries": [
- {
- "address": "1321 15th St. Denver, CO 80202",
- "bedrooms": 3,
- "bathrooms": 3.5,
- "accommodates": 6,
- "currency": "usd"
}, - {
- "lat": 39.75790689823618,
- "lng": -104.98494070021643,
- "bedrooms": 2,
- "bathrooms": 2,
- "accommodates": 4,
- "currency": "usd"
}
]
}
{- "payload": {
- "results": [
- {
- "details": {
- "address": "1321 15th St. Denver, CO 80202",
- "address_lookup": "1321 15 ST, DENVER, CO 80202",
- "zipcode": "80202",
- "accommodates": 6,
- "bedrooms": 3,
- "bathrooms": 3.5
}, - "location": {
- "lat": 39.748847,
- "lng": -104.998919
}, - "stats": {
- "currency": "usd",
- "currency_symbol": "$",
- "property_value": null,
- "future": {
- "summary": {
- "adr": 480,
- "occupancy": 0.73,
- "revenue": 128139
}
}
}
}, - {
- "details": {
- "address": null,
- "address_lookup": null,
- "zipcode": null,
- "accommodates": 4,
- "bedrooms": 2,
- "bathrooms": 2
}, - "location": {
- "lat": 39.75790689823618,
- "lng": -104.98494070021643
}, - "stats": {
- "currency": "usd",
- "currency_symbol": "$",
- "property_value": null,
- "future": {
- "summary": {
- "adr": 295,
- "occupancy": 0.64,
- "revenue": 68793
}
}
}
}
], - "failed": [ ]
}, - "status": {
- "type": "success",
- "response_id": "API-S-010",
- "message": "Successfully retrieved Rentalizer data for the requested address."
}
}
Rentalizer uses AirDNA's proprietary algorithms and data to provide Performance Estimates for addresses or locations.
If you are looking for a summarized Rentalizer performance estimate, you can request a summary for an address or location.
The requested address or location will receive the following data points:
Schema for performing individual Rentalizer Summary Requests for a single address or latitude/longitude.
address required | string String representing an address. Can include state, country, zipcode/postal code. |
bedrooms | integer or null Number of bedrooms at the requested location. |
bathrooms | number or null Number of bathrooms at the requested location. |
accommodates | integer or null Number of guests that can be accommodated at the requested location. |
currency | string (CurrencyISO) The currency to return the metrics in. |
Successful Individual Rentalizer Summary Response
required | object (RentalizerSummaryResult) |
required | object (Status) The Status object on the response envelope |
The request was invalid.
An internal server error occurred.
{- "address": "1321 15th St. Denver, CO 80202",
- "bedrooms": 3,
- "bathrooms": 3.5,
- "accommodates": 6,
- "currency": "usd"
}
{- "payload": {
- "details": {
- "address": "1321 15th St. Denver, CO 80202",
- "address_lookup": "1321 15 ST, DENVER, CO 80202",
- "zipcode": "80202",
- "accommodates": 6,
- "bedrooms": 3,
- "bathrooms": 3.5
}, - "location": {
- "lat": 39.748847,
- "lng": -104.998919
}, - "stats": {
- "currency": "usd",
- "currency_symbol": "$",
- "property_value": null,
- "future": {
- "summary": {
- "adr": 480,
- "occupancy": 0.73,
- "revenue": 128139
}
}
}
}, - "status": {
- "type": "success",
- "response_id": "API-S-063",
- "message": "Successfully retrieved summarized Rentalizer data for the requested address."
}
}
The AirDNA Smart Rates API provides recommended daily rates for a specific Airbnb listing.
Given a Listing ID, this endpoint provides the recommended Base Rate for each offered pricing strategy.
Pricing Strategy | Description |
---|---|
balanced |
An optimized balance between ADR and Occupancy. |
high_adr |
Maximize a high average daily rate. |
high_occupancy |
Maximize a high occupancy rate. |
Successfully retrieved Smart Rates Pricing Strategies.
required | object (SmartRatesPricingStrategiesResponseSchema) Response Schema representing the base rates for each Pricing Strategy. |
required | object (Status) The Status object on the response envelope |
The request was invalid.
Property has not been scraped in the last 30 days.
Unable to generate Smart Rates.
{- "payload": {
- "balanced": 369,
- "high_adr": 406,
- "high_occupancy": 332
}, - "status": {
- "type": "success",
- "response_id": "API-S-062",
- "message": "Successfully retrieved base rates for the requested Listing."
}
}
Given a Listing ID, this endpoint provides up to 12 months of recommended daily rates based on the requested pricing strategy.
Request Body for fetching Smart Rates for a specific Listing.
Use this Custom pricing strategy to receive Smart Rates influenced by your custom base_rate
with our seasonality and demand-based modifiers.
pricing_strategy required | string The pricing strategy to use when calculating Smart Rates. |
base_rate required | number >= 0 The starting rate before seasonality and other demand-based modifiers are applied.
|
num_months required | integer [ 1 .. 12 ] The number of months to receive Smart Rates for. |
min_rate | number >= 0 The minimum rate that can be recommended.
|
max_rate | number >= 0 The maximum rate that can be recommended.
|
currency | string (CurrencyISO) Default: "usd" Currency used to configure and receive Smart Rates in.
|
orphan_1_day_modifier | number [ -1 .. 1 ] The percentage modifier for a single Orphan day. Represented as a decimal.
|
orphan_2_day_modifier | number [ -1 .. 1 ] The percentage modifier for 2 sequential Orphan days. Represented as a decimal.
|
Successful Smart Rates Response
required | object (SmartRatesResponseSchema) Response Schema for a Smart Rates Request. |
required | object (Status) The Status object on the response envelope |
The request was invalid.
Property has not been scraped in the last 30 days.
Unable to generate Smart Rates.
{- "pricing_strategy": "custom",
- "base_rate": 120,
- "min_rate": 110,
- "max_rate": 150,
- "num_months": 6,
- "currency": "usd",
- "orphan_1_day_modifier": -0.3,
- "orphan_2_day_modifier": -0.2
}
{- "payload": {
- "rates": [
- {
- "date": "2024-05-14",
- "rate": 110,
- "attribution": {
- "demand_score": -0.1061471781707713,
- "holiday_or_event": 0,
- "lead_time": -0.1,
- "orphan": 0,
- "seasonality": -0.00532,
- "day_of_week": -0.05397
}
}, - {
- "date": "2024-05-15",
- "rate": 110,
- "attribution": {
- "demand_score": -0.04835406727959626,
- "holiday_or_event": 0,
- "lead_time": -0.09523809523809525,
- "orphan": 0,
- "seasonality": -0.00608,
- "day_of_week": -0.04921
}
}, - {
- "date": "2024-05-16",
- "rate": 122,
- "attribution": {
- "demand_score": 0.1090561163318937,
- "holiday_or_event": 0,
- "lead_time": -0.09047619047619049,
- "orphan": 0,
- "seasonality": -0.00679,
- "day_of_week": -0.01127
}
}, - {
- "date": "2024-05-17",
- "rate": 141,
- "attribution": {
- "demand_score": 0.1799999992402672,
- "holiday_or_event": 0,
- "lead_time": -0.08571428571428572,
- "orphan": 0,
- "seasonality": -0.00744,
- "day_of_week": 0.07362
}
}, - {
- "date": "2024-05-18",
- "rate": 145,
- "attribution": {
- "demand_score": 0.1799999992402672,
- "holiday_or_event": 0,
- "lead_time": -0.08095238095238096,
- "orphan": 0,
- "seasonality": -0.00802,
- "day_of_week": 0.09785
}
}, - {
- "date": "2024-05-19",
- "rate": 126,
- "attribution": {
- "demand_score": 0.1283594833299583,
- "holiday_or_event": 0,
- "lead_time": -0.0761904761904762,
- "orphan": 0,
- "seasonality": -0.00853,
- "day_of_week": -0.00541
}
}, - {
- "date": "2024-05-20",
- "rate": 110,
- "attribution": {
- "demand_score": -0.04151014625300975,
- "holiday_or_event": 0,
- "lead_time": -0.07142857142857142,
- "orphan": 0,
- "seasonality": -0.00896,
- "day_of_week": -0.05161
}
}, - {
- "date": "2024-05-21",
- "rate": 110,
- "attribution": {
- "demand_score": -0.1117042080641536,
- "holiday_or_event": 0,
- "lead_time": -0.06666666666666667,
- "orphan": 0,
- "seasonality": -0.00931,
- "day_of_week": -0.05397
}
}, - {
- "date": "2024-05-22",
- "rate": 110,
- "attribution": {
- "demand_score": -0.09836733632003622,
- "holiday_or_event": 0,
- "lead_time": -0.06190476190476191,
- "orphan": 0,
- "seasonality": -0.00958,
- "day_of_week": -0.04921
}
}, - {
- "date": "2024-05-23",
- "rate": 110,
- "attribution": {
- "demand_score": -0.03168297759944961,
- "holiday_or_event": 0,
- "lead_time": -0.05714285714285715,
- "orphan": 0,
- "seasonality": -0.00977,
- "day_of_week": -0.01127
}
}, - {
- "date": "2024-05-24",
- "rate": 137,
- "attribution": {
- "demand_score": 0.115022611585841,
- "holiday_or_event": 0,
- "lead_time": -0.05238095238095239,
- "orphan": 0,
- "seasonality": -0.00989,
- "day_of_week": 0.07362
}
}, - {
- "date": "2024-05-25",
- "rate": 148,
- "attribution": {
- "demand_score": 0.1774953265977589,
- "holiday_or_event": 0,
- "lead_time": -0.04761904761904762,
- "orphan": 0,
- "seasonality": -0.00993,
- "day_of_week": 0.09785
}
}, - {
- "date": "2024-05-26",
- "rate": 121,
- "attribution": {
- "demand_score": 0.01693587242996694,
- "holiday_or_event": 0.0395,
- "lead_time": -0.04285714285714286,
- "orphan": 0,
- "seasonality": -0.0099,
- "day_of_week": -0.00541
}
}, - {
- "date": "2024-05-27",
- "rate": 110,
- "attribution": {
- "demand_score": -0.06513845231325453,
- "holiday_or_event": -0.00251,
- "lead_time": -0.0380952380952381,
- "orphan": 0,
- "seasonality": -0.00982,
- "day_of_week": -0.05161
}
}, - {
- "date": "2024-05-28",
- "rate": 110,
- "attribution": {
- "demand_score": -0.0974707620605842,
- "holiday_or_event": -0.01703,
- "lead_time": -0.03333333333333333,
- "orphan": 0,
- "seasonality": -0.00968,
- "day_of_week": -0.05397
}
}, - {
- "date": "2024-05-29",
- "rate": 110,
- "attribution": {
- "demand_score": -0.08669332547814099,
- "holiday_or_event": 0,
- "lead_time": -0.02857142857142858,
- "orphan": 0,
- "seasonality": -0.0095,
- "day_of_week": -0.04921
}
}, - {
- "date": "2024-05-30",
- "rate": 115,
- "attribution": {
- "demand_score": -0.007755884563489262,
- "holiday_or_event": 0,
- "lead_time": -0.02380952380952381,
- "orphan": 0,
- "seasonality": -0.00929,
- "day_of_week": -0.01127
}
}, - {
- "date": "2024-05-31",
- "rate": 141,
- "attribution": {
- "demand_score": 0.1096955189130467,
- "holiday_or_event": 0,
- "lead_time": -0.01904761904761905,
- "orphan": 0,
- "seasonality": -0.00905,
- "day_of_week": 0.07362
}
}, - {
- "date": "2024-06-01",
- "rate": 145,
- "attribution": {
- "demand_score": 0.1168462625502867,
- "holiday_or_event": 0,
- "lead_time": -0.01428571428571429,
- "orphan": 0,
- "seasonality": -0.0088,
- "day_of_week": 0.09785
}
}, - {
- "date": "2024-06-02",
- "rate": 117,
- "attribution": {
- "demand_score": -0.01882460321572825,
- "holiday_or_event": 0,
- "lead_time": -0.009523809523809518,
- "orphan": 0,
- "seasonality": -0.00854,
- "day_of_week": -0.00541
}
}, - {
- "date": "2024-06-03",
- "rate": 110,
- "attribution": {
- "demand_score": -0.08523691512916216,
- "holiday_or_event": 0,
- "lead_time": -0.004761904761904773,
- "orphan": 0,
- "seasonality": -0.00829,
- "day_of_week": -0.05161
}
}, - {
- "date": "2024-06-04",
- "rate": 110,
- "attribution": {
- "demand_score": -0.08523691512916216,
- "holiday_or_event": 0,
- "lead_time": 0,
- "orphan": -0.2,
- "seasonality": -0.00805,
- "day_of_week": -0.05397
}
}, - {
- "date": "2024-06-05",
- "rate": 110,
- "attribution": {
- "demand_score": -0.09630563378140115,
- "holiday_or_event": 0,
- "lead_time": 0.002241918664233576,
- "orphan": -0.2,
- "seasonality": -0.00783,
- "day_of_week": -0.04921
}
}, - {
- "date": "2024-06-06",
- "rate": 114,
- "attribution": {
- "demand_score": -0.05203075917244521,
- "holiday_or_event": 0,
- "lead_time": 0.004483837328467153,
- "orphan": 0,
- "seasonality": -0.00764,
- "day_of_week": -0.01127
}
}, - {
- "date": "2024-06-07",
- "rate": 130,
- "attribution": {
- "demand_score": -0.0004738328185951954,
- "holiday_or_event": 0,
- "lead_time": 0.00672575599270073,
- "orphan": 0,
- "seasonality": -0.00748,
- "day_of_week": 0.07362
}
}, - {
- "date": "2024-06-08",
- "rate": 136,
- "attribution": {
- "demand_score": 0.01868605443908164,
- "holiday_or_event": 0,
- "lead_time": 0.008967674656934306,
- "orphan": 0,
- "seasonality": -0.00735,
- "day_of_week": 0.09785
}
}, - {
- "date": "2024-06-09",
- "rate": 115,
- "attribution": {
- "demand_score": -0.05203075917244521,
- "holiday_or_event": 0,
- "lead_time": 0.01120959332116788,
- "orphan": 0,
- "seasonality": -0.00726,
- "day_of_week": -0.00541
}
}, - {
- "date": "2024-06-10",
- "rate": 111,
- "attribution": {
- "demand_score": -0.04358357914836809,
- "holiday_or_event": 0,
- "lead_time": 0.01345151198540146,
- "orphan": 0,
- "seasonality": -0.00722,
- "day_of_week": -0.05161
}
}, - {
- "date": "2024-06-11",
- "rate": 111,
- "attribution": {
- "demand_score": -0.04358357914836809,
- "holiday_or_event": 0,
- "lead_time": 0.01569343064963503,
- "orphan": 0,
- "seasonality": -0.00721,
- "day_of_week": -0.05397
}
}, - {
- "date": "2024-06-12",
- "rate": 110,
- "attribution": {
- "demand_score": -0.06094722697563772,
- "holiday_or_event": 0,
- "lead_time": 0.01793534931386861,
- "orphan": 0,
- "seasonality": -0.00725,
- "day_of_week": -0.04921
}
}, - {
- "date": "2024-06-13",
- "rate": 114,
- "attribution": {
- "demand_score": -0.06094722697563772,
- "holiday_or_event": 0,
- "lead_time": 0.02017726797810219,
- "orphan": 0,
- "seasonality": -0.00732,
- "day_of_week": -0.01127
}
}, - {
- "date": "2024-06-14",
- "rate": 128,
- "attribution": {
- "demand_score": -0.0352695566419119,
- "holiday_or_event": 0,
- "lead_time": 0.02241918664233577,
- "orphan": 0,
- "seasonality": -0.00742,
- "day_of_week": 0.07362
}
}, - {
- "date": "2024-06-15",
- "rate": 132,
- "attribution": {
- "demand_score": -0.02681867779790085,
- "holiday_or_event": 0,
- "lead_time": 0.02466110530656934,
- "orphan": 0,
- "seasonality": -0.00755,
- "day_of_week": 0.09785
}
}, - {
- "date": "2024-06-16",
- "rate": 116,
- "attribution": {
- "demand_score": -0.05657177195285094,
- "holiday_or_event": 0,
- "lead_time": 0.02690302397080292,
- "orphan": 0,
- "seasonality": -0.00771,
- "day_of_week": -0.00541
}
}, - {
- "date": "2024-06-17",
- "rate": 110,
- "attribution": {
- "demand_score": -0.07591588889569775,
- "holiday_or_event": 0,
- "lead_time": 0.0291449426350365,
- "orphan": 0,
- "seasonality": -0.00789,
- "day_of_week": -0.05161
}
}, - {
- "date": "2024-06-18",
- "rate": 110,
- "attribution": {
- "demand_score": -0.1082481986430274,
- "holiday_or_event": 0,
- "lead_time": 0.03138686129927007,
- "orphan": 0,
- "seasonality": -0.00808,
- "day_of_week": -0.05397
}
}, - {
- "date": "2024-06-19",
- "rate": 110,
- "attribution": {
- "demand_score": -0.1082481986430274,
- "holiday_or_event": 0,
- "lead_time": 0.03362877996350365,
- "orphan": 0,
- "seasonality": -0.00828,
- "day_of_week": -0.04921
}
}, - {
- "date": "2024-06-20",
- "rate": 115,
- "attribution": {
- "demand_score": -0.06707286400753922,
- "holiday_or_event": 0,
- "lead_time": 0.03587069862773722,
- "orphan": 0,
- "seasonality": -0.00848,
- "day_of_week": -0.01127
}
}, - {
- "date": "2024-06-21",
- "rate": 137,
- "attribution": {
- "demand_score": 0.02108104034629125,
- "holiday_or_event": 0,
- "lead_time": 0.0381126172919708,
- "orphan": 0,
- "seasonality": -0.00868,
- "day_of_week": 0.07362
}
}, - {
- "date": "2024-06-22",
- "rate": 140,
- "attribution": {
- "demand_score": 0.0232365276627799,
- "holiday_or_event": 0,
- "lead_time": 0.04035453595620438,
- "orphan": 0,
- "seasonality": -0.00887,
- "day_of_week": 0.09785
}
}, - {
- "date": "2024-06-23",
- "rate": 132,
- "attribution": {
- "demand_score": 0.05280897774435973,
- "holiday_or_event": 0,
- "lead_time": 0.04259645462043796,
- "orphan": 0,
- "seasonality": -0.00905,
- "day_of_week": -0.00541
}
}, - {
- "date": "2024-06-24",
- "rate": 116,
- "attribution": {
- "demand_score": -0.02897955104976764,
- "holiday_or_event": 0,
- "lead_time": 0.04483837328467154,
- "orphan": 0,
- "seasonality": -0.00922,
- "day_of_week": -0.05161
}
}, - {
- "date": "2024-06-25",
- "rate": 115,
- "attribution": {
- "demand_score": -0.0406318032140263,
- "holiday_or_event": 0,
- "lead_time": 0.04708029194890511,
- "orphan": 0,
- "seasonality": -0.00936,
- "day_of_week": -0.05397
}
}, - {
- "date": "2024-06-26",
- "rate": 119,
- "attribution": {
- "demand_score": -0.01630811225112083,
- "holiday_or_event": 0,
- "lead_time": 0.04932221061313868,
- "orphan": 0,
- "seasonality": -0.00948,
- "day_of_week": -0.04921
}
}, - {
- "date": "2024-06-27",
- "rate": 126,
- "attribution": {
- "demand_score": 0.006464292674469294,
- "holiday_or_event": 0,
- "lead_time": 0.05156412927737226,
- "orphan": 0,
- "seasonality": -0.00959,
- "day_of_week": -0.01127
}
}, - {
- "date": "2024-06-28",
- "rate": 131,
- "attribution": {
- "demand_score": -0.04165994311087266,
- "holiday_or_event": 0,
- "lead_time": 0.05380604794160584,
- "orphan": 0,
- "seasonality": -0.00967,
- "day_of_week": 0.07362
}
}, - {
- "date": "2024-06-29",
- "rate": 137,
- "attribution": {
- "demand_score": -0.01629915898866263,
- "holiday_or_event": 0,
- "lead_time": 0.05604796660583942,
- "orphan": 0,
- "seasonality": -0.00973,
- "day_of_week": 0.09785
}
}, - {
- "date": "2024-06-30",
- "rate": 123,
- "attribution": {
- "demand_score": -0.02897955104976764,
- "holiday_or_event": 0,
- "lead_time": 0.05828988527007299,
- "orphan": 0,
- "seasonality": -0.00977,
- "day_of_week": -0.00541
}
}, - {
- "date": "2024-07-01",
- "rate": 123,
- "attribution": {
- "demand_score": 0.009061625133547408,
- "holiday_or_event": 0,
- "lead_time": 0.06053180393430657,
- "orphan": 0,
- "seasonality": -0.00979,
- "day_of_week": -0.05161
}
}, - {
- "date": "2024-07-02",
- "rate": 120,
- "attribution": {
- "demand_score": -0.0145855924939187,
- "holiday_or_event": 0,
- "lead_time": 0.06277372259854014,
- "orphan": 0,
- "seasonality": -0.0098,
- "day_of_week": -0.05397
}
}, - {
- "date": "2024-07-03",
- "rate": 128,
- "attribution": {
- "demand_score": -0.001562487133864895,
- "holiday_or_event": 0.05148,
- "lead_time": 0.06501564126277372,
- "orphan": 0,
- "seasonality": -0.0098,
- "day_of_week": -0.04921
}
}, - {
- "date": "2024-07-04",
- "rate": 133,
- "attribution": {
- "demand_score": 0.02448372358624271,
- "holiday_or_event": 0.02625,
- "lead_time": 0.0672575599270073,
- "orphan": 0,
- "seasonality": -0.00979,
- "day_of_week": -0.01127
}
}, - {
- "date": "2024-07-05",
- "rate": 141,
- "attribution": {
- "demand_score": 0.0597831933779675,
- "holiday_or_event": -0.03151,
- "lead_time": 0.06949947859124087,
- "orphan": 0,
- "seasonality": -0.00977,
- "day_of_week": 0.07362
}
}, - {
- "date": "2024-07-06",
- "rate": 144,
- "attribution": {
- "demand_score": 0.02448372358624271,
- "holiday_or_event": 0,
- "lead_time": 0.07174139725547445,
- "orphan": 0,
- "seasonality": -0.00976,
- "day_of_week": 0.09785
}
}, - {
- "date": "2024-07-07",
- "rate": 129,
- "attribution": {
- "demand_score": -0.001562487133864895,
- "holiday_or_event": 0,
- "lead_time": 0.07398331591970803,
- "orphan": 0,
- "seasonality": -0.00975,
- "day_of_week": -0.00541
}
}, - {
- "date": "2024-07-08",
- "rate": 119,
- "attribution": {
- "demand_score": -0.03954654443402182,
- "holiday_or_event": 0,
- "lead_time": 0.0762252345839416,
- "orphan": 0,
- "seasonality": -0.00975,
- "day_of_week": -0.05161
}
}, - {
- "date": "2024-07-09",
- "rate": 124,
- "attribution": {
- "demand_score": 0.006767626261723238,
- "holiday_or_event": 0,
- "lead_time": 0.07846715324817517,
- "orphan": 0,
- "seasonality": -0.00976,
- "day_of_week": -0.05397
}
}, - {
- "date": "2024-07-10",
- "rate": 126,
- "attribution": {
- "demand_score": 0.0100362982852318,
- "holiday_or_event": 0,
- "lead_time": 0.08070907191240877,
- "orphan": 0,
- "seasonality": -0.00978,
- "day_of_week": -0.04921
}
}, - {
- "date": "2024-07-11",
- "rate": 134,
- "attribution": {
- "demand_score": 0.0428882146746036,
- "holiday_or_event": 0,
- "lead_time": 0.08295099057664235,
- "orphan": 0,
- "seasonality": -0.00982,
- "day_of_week": -0.01127
}
}, - {
- "date": "2024-07-12",
- "rate": 149,
- "attribution": {
- "demand_score": 0.07304365316055983,
- "holiday_or_event": 0,
- "lead_time": 0.08519290924087591,
- "orphan": 0,
- "seasonality": -0.00987,
- "day_of_week": 0.07362
}
}, - {
- "date": "2024-07-13",
- "rate": 138,
- "attribution": {
- "demand_score": -0.0406318032140263,
- "holiday_or_event": 0,
- "lead_time": 0.0874348279051095,
- "orphan": 0,
- "seasonality": -0.00993,
- "day_of_week": 0.09785
}
}, - {
- "date": "2024-07-14",
- "rate": 144,
- "attribution": {
- "demand_score": 0.1089240421091382,
- "holiday_or_event": 0,
- "lead_time": 0.08967674656934307,
- "orphan": 0,
- "seasonality": -0.01001,
- "day_of_week": -0.00541
}
}, - {
- "date": "2024-07-15",
- "rate": 134,
- "attribution": {
- "demand_score": 0.07239904289289849,
- "holiday_or_event": 0,
- "lead_time": 0.09191866523357664,
- "orphan": 0,
- "seasonality": -0.0101,
- "day_of_week": -0.05161
}
}, - {
- "date": "2024-07-16",
- "rate": 132,
- "attribution": {
- "demand_score": 0.05464763998421063,
- "holiday_or_event": 0,
- "lead_time": 0.09416058389781022,
- "orphan": 0,
- "seasonality": -0.0102,
- "day_of_week": -0.05397
}
}, - {
- "date": "2024-07-17",
- "rate": 136,
- "attribution": {
- "demand_score": 0.08171187775971243,
- "holiday_or_event": 0,
- "lead_time": 0.0964025025620438,
- "orphan": 0,
- "seasonality": -0.01031,
- "day_of_week": -0.04921
}
}, - {
- "date": "2024-07-18",
- "rate": 126,
- "attribution": {
- "demand_score": -0.03954654443402182,
- "holiday_or_event": 0,
- "lead_time": 0.09864442122627737,
- "orphan": 0,
- "seasonality": -0.01042,
- "day_of_week": -0.01127
}
}, - {
- "date": "2024-07-19",
- "rate": 140,
- "attribution": {
- "demand_score": -0.01277682786057789,
- "holiday_or_event": 0,
- "lead_time": 0.1008863398905109,
- "orphan": 0,
- "seasonality": -0.01052,
- "day_of_week": 0.07362
}
}, - {
- "date": "2024-07-20",
- "rate": 143,
- "attribution": {
- "demand_score": -0.01277682786057789,
- "holiday_or_event": 0,
- "lead_time": 0.1031282585547445,
- "orphan": 0,
- "seasonality": -0.01063,
- "day_of_week": 0.09785
}
}, - {
- "date": "2024-07-21",
- "rate": 150,
- "attribution": {
- "demand_score": 0.1422086618871785,
- "holiday_or_event": 0,
- "lead_time": 0.1053701772189781,
- "orphan": 0,
- "seasonality": -0.01072,
- "day_of_week": -0.00541
}
}, - {
- "date": "2024-07-22",
- "rate": 134,
- "attribution": {
- "demand_score": 0.05934774303520068,
- "holiday_or_event": 0,
- "lead_time": 0.1076120958832117,
- "orphan": 0,
- "seasonality": -0.0108,
- "day_of_week": -0.05161
}
}, - {
- "date": "2024-07-23",
- "rate": 134,
- "attribution": {
- "demand_score": 0.06013243029203304,
- "holiday_or_event": 0,
- "lead_time": 0.1098540145474453,
- "orphan": 0,
- "seasonality": -0.01086,
- "day_of_week": -0.05397
}
}, - {
- "date": "2024-07-24",
- "rate": 134,
- "attribution": {
- "demand_score": 0.04990897353643269,
- "holiday_or_event": 0,
- "lead_time": 0.1120959332116788,
- "orphan": 0,
- "seasonality": -0.0109,
- "day_of_week": -0.04921
}
}, - {
- "date": "2024-07-25",
- "rate": 137,
- "attribution": {
- "demand_score": 0.03644698093471498,
- "holiday_or_event": 0,
- "lead_time": 0.1143378518759124,
- "orphan": 0,
- "seasonality": -0.01092,
- "day_of_week": -0.01127
}
}, - {
- "date": "2024-07-26",
- "rate": 146,
- "attribution": {
- "demand_score": 0.01973325784925986,
- "holiday_or_event": 0,
- "lead_time": 0.116579770540146,
- "orphan": 0,
- "seasonality": -0.0109,
- "day_of_week": 0.07362
}
}, - {
- "date": "2024-07-27",
- "rate": 150,
- "attribution": {
- "demand_score": 0.03819355332580397,
- "holiday_or_event": 0,
- "lead_time": 0.1188216892043795,
- "orphan": 0,
- "seasonality": -0.01086,
- "day_of_week": 0.09785
}
}, - {
- "date": "2024-07-28",
- "rate": 150,
- "attribution": {
- "demand_score": 0.1698740028981076,
- "holiday_or_event": 0,
- "lead_time": 0.1210636078686131,
- "orphan": 0,
- "seasonality": -0.01079,
- "day_of_week": -0.00541
}
}, - {
- "date": "2024-07-29",
- "rate": 138,
- "attribution": {
- "demand_score": 0.07300026259017546,
- "holiday_or_event": 0,
- "lead_time": 0.1233055265328467,
- "orphan": 0,
- "seasonality": -0.01069,
- "day_of_week": -0.05161
}
}, - {
- "date": "2024-07-30",
- "rate": 114,
- "attribution": {
- "demand_score": 0.07300026259017546,
- "holiday_or_event": 0,
- "lead_time": 0.1255474451970803,
- "orphan": -0.2,
- "seasonality": -0.01057,
- "day_of_week": -0.05397
}
}, - {
- "date": "2024-07-31",
- "rate": 115,
- "attribution": {
- "demand_score": 0.07300026259017546,
- "holiday_or_event": 0,
- "lead_time": 0.1277893638613139,
- "orphan": -0.2,
- "seasonality": -0.01042,
- "day_of_week": -0.04921
}
}, - {
- "date": "2024-08-01",
- "rate": 138,
- "attribution": {
- "demand_score": 0.02299095705100294,
- "holiday_or_event": 0,
- "lead_time": 0.1300312825255474,
- "orphan": 0,
- "seasonality": -0.01024,
- "day_of_week": -0.01127
}
}, - {
- "date": "2024-08-02",
- "rate": 150,
- "attribution": {
- "demand_score": 0.07827876636058549,
- "holiday_or_event": 0,
- "lead_time": 0.132273201189781,
- "orphan": 0,
- "seasonality": -0.01005,
- "day_of_week": 0.07362
}
}, - {
- "date": "2024-08-03",
- "rate": 150,
- "attribution": {
- "demand_score": 0.09357443975543633,
- "holiday_or_event": 0,
- "lead_time": 0.1345151198540146,
- "orphan": 0,
- "seasonality": -0.00985,
- "day_of_week": 0.09785
}
}, - {
- "date": "2024-08-04",
- "rate": 141,
- "attribution": {
- "demand_score": 0.03819355332580397,
- "holiday_or_event": 0,
- "lead_time": 0.1367570385182482,
- "orphan": 0,
- "seasonality": -0.00964,
- "day_of_week": -0.00541
}
}, - {
- "date": "2024-08-05",
- "rate": 136,
- "attribution": {
- "demand_score": 0.03619784570671813,
- "holiday_or_event": 0,
- "lead_time": 0.1389989571824817,
- "orphan": 0,
- "seasonality": -0.00943,
- "day_of_week": -0.05161
}
}, - {
- "date": "2024-08-06",
- "rate": 136,
- "attribution": {
- "demand_score": 0.03819355332580397,
- "holiday_or_event": 0,
- "lead_time": 0.1412408758467153,
- "orphan": 0,
- "seasonality": -0.00922,
- "day_of_week": -0.05397
}
}, - {
- "date": "2024-08-07",
- "rate": 136,
- "attribution": {
- "demand_score": 0.03619784570671813,
- "holiday_or_event": 0,
- "lead_time": 0.1434827945109489,
- "orphan": 0,
- "seasonality": -0.00903,
- "day_of_week": -0.04921
}
}, - {
- "date": "2024-08-08",
- "rate": 147,
- "attribution": {
- "demand_score": 0.08518339635700717,
- "holiday_or_event": 0,
- "lead_time": 0.1457247131751825,
- "orphan": 0,
- "seasonality": -0.00885,
- "day_of_week": -0.01127
}
}, - {
- "date": "2024-08-09",
- "rate": 150,
- "attribution": {
- "demand_score": 0.07154118386407722,
- "holiday_or_event": 0,
- "lead_time": 0.1479666318394161,
- "orphan": 0,
- "seasonality": -0.0087,
- "day_of_week": 0.07362
}
}, - {
- "date": "2024-08-10",
- "rate": 150,
- "attribution": {
- "demand_score": 0.02476788388831735,
- "holiday_or_event": 0,
- "lead_time": 0.1502085505036496,
- "orphan": 0,
- "seasonality": -0.00858,
- "day_of_week": 0.09785
}
}, - {
- "date": "2024-08-11",
- "rate": 142,
- "attribution": {
- "demand_score": 0.02476788388831735,
- "holiday_or_event": 0,
- "lead_time": 0.1524504691678832,
- "orphan": 0,
- "seasonality": -0.00849,
- "day_of_week": -0.00541
}
}, - {
- "date": "2024-08-12",
- "rate": 131,
- "attribution": {
- "demand_score": -0.02001225754201965,
- "holiday_or_event": 0,
- "lead_time": 0.1546923878321168,
- "orphan": 0,
- "seasonality": -0.00843,
- "day_of_week": -0.05161
}
}, - {
- "date": "2024-08-13",
- "rate": 134,
- "attribution": {
- "demand_score": 0.006412995129556125,
- "holiday_or_event": 0,
- "lead_time": 0.1569343064963503,
- "orphan": 0,
- "seasonality": -0.00842,
- "day_of_week": -0.05397
}
}, - {
- "date": "2024-08-14",
- "rate": 134,
- "attribution": {
- "demand_score": -0.003083580049291421,
- "holiday_or_event": 0,
- "lead_time": 0.1591762251605839,
- "orphan": 0,
- "seasonality": -0.00845,
- "day_of_week": -0.04921
}
}, - {
- "date": "2024-08-15",
- "rate": 147,
- "attribution": {
- "demand_score": 0.06463112992162148,
- "holiday_or_event": 0,
- "lead_time": 0.1614181438248175,
- "orphan": 0,
- "seasonality": -0.00852,
- "day_of_week": -0.01127
}
}, - {
- "date": "2024-08-16",
- "rate": 150,
- "attribution": {
- "demand_score": 0.1265653158706272,
- "holiday_or_event": 0,
- "lead_time": 0.1636600624890511,
- "orphan": 0,
- "seasonality": -0.00863,
- "day_of_week": 0.07362
}
}, - {
- "date": "2024-08-17",
- "rate": 150,
- "attribution": {
- "demand_score": 0.1781771374947987,
- "holiday_or_event": 0,
- "lead_time": 0.1659019811532847,
- "orphan": 0,
- "seasonality": -0.00877,
- "day_of_week": 0.09785
}
}, - {
- "date": "2024-08-18",
- "rate": 150,
- "attribution": {
- "demand_score": 0.1045705351974288,
- "holiday_or_event": 0,
- "lead_time": 0.1681438998175183,
- "orphan": 0,
- "seasonality": -0.00895,
- "day_of_week": -0.00541
}
}, - {
- "date": "2024-08-19",
- "rate": 135,
- "attribution": {
- "demand_score": -0.002503559251464812,
- "holiday_or_event": 0,
- "lead_time": 0.1703858184817518,
- "orphan": 0,
- "seasonality": -0.00915,
- "day_of_week": -0.05161
}
}, - {
- "date": "2024-08-20",
- "rate": 134,
- "attribution": {
- "demand_score": -0.009126699114282981,
- "holiday_or_event": 0,
- "lead_time": 0.1726277371459854,
- "orphan": 0,
- "seasonality": -0.00937,
- "day_of_week": -0.05397
}
}, - {
- "date": "2024-08-21",
- "rate": 145,
- "attribution": {
- "demand_score": 0.07182278809793902,
- "holiday_or_event": 0,
- "lead_time": 0.174869655810219,
- "orphan": 0,
- "seasonality": -0.00961,
- "day_of_week": -0.04921
}
}, - {
- "date": "2024-08-22",
- "rate": 149,
- "attribution": {
- "demand_score": 0.07182278809793902,
- "holiday_or_event": 0,
- "lead_time": 0.1771115744744526,
- "orphan": 0,
- "seasonality": -0.00985,
- "day_of_week": -0.01127
}
}, - {
- "date": "2024-08-23",
- "rate": 150,
- "attribution": {
- "demand_score": 0.1497483267459997,
- "holiday_or_event": 0,
- "lead_time": 0.1793534931386861,
- "orphan": 0,
- "seasonality": -0.01008,
- "day_of_week": 0.07362
}
}, - {
- "date": "2024-08-24",
- "rate": 150,
- "attribution": {
- "demand_score": 0.06385939179419693,
- "holiday_or_event": 0,
- "lead_time": 0.1815954118029197,
- "orphan": 0,
- "seasonality": -0.0103,
- "day_of_week": 0.09785
}
}, - {
- "date": "2024-08-25",
- "rate": 150,
- "attribution": {
- "demand_score": 0.0905649345666088,
- "holiday_or_event": 0,
- "lead_time": 0.1838373304671533,
- "orphan": 0,
- "seasonality": -0.01049,
- "day_of_week": -0.00541
}
}, - {
- "date": "2024-08-26",
- "rate": 145,
- "attribution": {
- "demand_score": 0.06385939179419693,
- "holiday_or_event": 0,
- "lead_time": 0.1860792491313869,
- "orphan": 0,
- "seasonality": -0.01065,
- "day_of_week": -0.05161
}
}, - {
- "date": "2024-08-27",
- "rate": 149,
- "attribution": {
- "demand_score": 0.09805150226609438,
- "holiday_or_event": 0,
- "lead_time": 0.1883211677956204,
- "orphan": 0,
- "seasonality": -0.01077,
- "day_of_week": -0.05397
}
}, - {
- "date": "2024-08-28",
- "rate": 145,
- "attribution": {
- "demand_score": 0.06175373188658643,
- "holiday_or_event": 0,
- "lead_time": 0.190563086459854,
- "orphan": 0,
- "seasonality": -0.01083,
- "day_of_week": -0.04921
}
}, - {
- "date": "2024-08-29",
- "rate": 150,
- "attribution": {
- "demand_score": 0.09621828153985662,
- "holiday_or_event": 0,
- "lead_time": 0.1928050051240876,
- "orphan": 0,
- "seasonality": -0.01084,
- "day_of_week": -0.01127
}
}, - {
- "date": "2024-08-30",
- "rate": 133,
- "attribution": {
- "demand_score": 0.03715384902178505,
- "holiday_or_event": 0,
- "lead_time": 0.1950469237883212,
- "orphan": -0.2,
- "seasonality": -0.01079,
- "day_of_week": 0.07362
}
}, - {
- "date": "2024-08-31",
- "rate": 136,
- "attribution": {
- "demand_score": 0.03715384902178505,
- "holiday_or_event": 0,
- "lead_time": 0.1972888424525547,
- "orphan": -0.2,
- "seasonality": -0.01067,
- "day_of_week": 0.09785
}
}, - {
- "date": "2024-09-01",
- "rate": 150,
- "attribution": {
- "demand_score": 0.01231933899509324,
- "holiday_or_event": 0.04053,
- "lead_time": 0.1995307611167883,
- "orphan": 0,
- "seasonality": -0.01049,
- "day_of_week": -0.00541
}
}, - {
- "date": "2024-09-02",
- "rate": 142,
- "attribution": {
- "demand_score": 0.02563098793460584,
- "holiday_or_event": -0.0012,
- "lead_time": 0.2017726797810219,
- "orphan": 0,
- "seasonality": -0.01024,
- "day_of_week": -0.05161
}
}, - {
- "date": "2024-09-03",
- "rate": 138,
- "attribution": {
- "demand_score": 0.03715384902178505,
- "holiday_or_event": -0.045,
- "lead_time": 0.2040145984452555,
- "orphan": 0,
- "seasonality": -0.00992,
- "day_of_week": -0.05397
}
}, - {
- "date": "2024-09-04",
- "rate": 144,
- "attribution": {
- "demand_score": 0.03715384902178505,
- "holiday_or_event": 0,
- "lead_time": 0.2062565171094891,
- "orphan": 0,
- "seasonality": -0.00954,
- "day_of_week": -0.04921
}
}, - {
- "date": "2024-09-05",
- "rate": 149,
- "attribution": {
- "demand_score": 0.03715384902178505,
- "holiday_or_event": 0,
- "lead_time": 0.2084984357737226,
- "orphan": 0,
- "seasonality": -0.0091,
- "day_of_week": -0.01127
}
}, - {
- "date": "2024-09-06",
- "rate": 150,
- "attribution": {
- "demand_score": 0.08663764886478352,
- "holiday_or_event": 0,
- "lead_time": 0.2107403544379562,
- "orphan": 0,
- "seasonality": -0.00862,
- "day_of_week": 0.07362
}
}, - {
- "date": "2024-09-07",
- "rate": 150,
- "attribution": {
- "demand_score": 0.1125577344968303,
- "holiday_or_event": 0,
- "lead_time": 0.2129822731021898,
- "orphan": 0,
- "seasonality": -0.00809,
- "day_of_week": 0.09785
}
}, - {
- "date": "2024-09-08",
- "rate": 150,
- "attribution": {
- "demand_score": 0.08663764886478352,
- "holiday_or_event": 0,
- "lead_time": 0.2152241917664234,
- "orphan": 0,
- "seasonality": -0.00754,
- "day_of_week": -0.00541
}
}, - {
- "date": "2024-09-09",
- "rate": 148,
- "attribution": {
- "demand_score": 0.0607175632327367,
- "holiday_or_event": 0,
- "lead_time": 0.2174661104306569,
- "orphan": 0,
- "seasonality": -0.00697,
- "day_of_week": -0.05161
}
}, - {
- "date": "2024-09-10",
- "rate": 148,
- "attribution": {
- "demand_score": 0.0607175632327367,
- "holiday_or_event": 0,
- "lead_time": 0.2197080290948905,
- "orphan": 0,
- "seasonality": -0.0064,
- "day_of_week": -0.05397
}
}, - {
- "date": "2024-09-11",
- "rate": 146,
- "attribution": {
- "demand_score": 0.03479747760068989,
- "holiday_or_event": 0,
- "lead_time": 0.2219499477591241,
- "orphan": 0,
- "seasonality": -0.00584,
- "day_of_week": -0.04921
}
}, - {
- "date": "2024-09-12",
- "rate": 150,
- "attribution": {
- "demand_score": 0.03479747760068989,
- "holiday_or_event": 0,
- "lead_time": 0.2241918664233577,
- "orphan": 0,
- "seasonality": -0.00531,
- "day_of_week": -0.01127
}
}, - {
- "date": "2024-09-13",
- "rate": 150,
- "attribution": {
- "demand_score": 0.0607175632327367,
- "holiday_or_event": 0,
- "lead_time": 0.2264337850875912,
- "orphan": 0,
- "seasonality": -0.00481,
- "day_of_week": 0.07362
}
}, - {
- "date": "2024-09-14",
- "rate": 150,
- "attribution": {
- "demand_score": 0.08663764886478352,
- "holiday_or_event": 0,
- "lead_time": 0.2286757037518248,
- "orphan": 0,
- "seasonality": -0.00437,
- "day_of_week": 0.09785
}
}, - {
- "date": "2024-09-15",
- "rate": 150,
- "attribution": {
- "demand_score": 0.06712330890492203,
- "holiday_or_event": 0,
- "lead_time": 0.2309176224160584,
- "orphan": 0,
- "seasonality": -0.00399,
- "day_of_week": -0.00541
}
}, - {
- "date": "2024-09-16",
- "rate": 145,
- "attribution": {
- "demand_score": 0.01227503995018995,
- "holiday_or_event": 0,
- "lead_time": 0.233159541080292,
- "orphan": 0,
- "seasonality": -0.00369,
- "day_of_week": -0.05161
}
}, - {
- "date": "2024-09-17",
- "rate": 145,
- "attribution": {
- "demand_score": 0.01227503995018995,
- "holiday_or_event": 0,
- "lead_time": 0.2354014597445256,
- "orphan": 0,
- "seasonality": -0.00347,
- "day_of_week": -0.05397
}
}, - {
- "date": "2024-09-18",
- "rate": 146,
- "attribution": {
- "demand_score": 0.01227503995018995,
- "holiday_or_event": 0,
- "lead_time": 0.2376433784087591,
- "orphan": 0,
- "seasonality": -0.00336,
- "day_of_week": -0.04921
}
}, - {
- "date": "2024-09-19",
- "rate": 150,
- "attribution": {
- "demand_score": 0.005248841801189,
- "holiday_or_event": 0,
- "lead_time": 0.2398852970729927,
- "orphan": 0,
- "seasonality": -0.00334,
- "day_of_week": -0.01127
}
}, - {
- "date": "2024-09-20",
- "rate": 150,
- "attribution": {
- "demand_score": 0.01262562856200829,
- "holiday_or_event": 0,
- "lead_time": 0.2421272157372263,
- "orphan": 0,
- "seasonality": -0.00343,
- "day_of_week": 0.07362
}
}, - {
- "date": "2024-09-21",
- "rate": 150,
- "attribution": {
- "demand_score": 0.01262562856200829,
- "holiday_or_event": 0,
- "lead_time": 0.2443691344014598,
- "orphan": 0,
- "seasonality": -0.00362,
- "day_of_week": 0.09785
}
}, - {
- "date": "2024-09-22",
- "rate": 149,
- "attribution": {
- "demand_score": -0.01654134124359587,
- "holiday_or_event": 0,
- "lead_time": 0.2466110530656934,
- "orphan": 0,
- "seasonality": -0.00392,
- "day_of_week": -0.00541
}
}, - {
- "date": "2024-09-23",
- "rate": 143,
- "attribution": {
- "demand_score": -0.01557709662113608,
- "holiday_or_event": 0,
- "lead_time": 0.248852971729927,
- "orphan": 0,
- "seasonality": -0.00432,
- "day_of_week": -0.05161
}
}, - {
- "date": "2024-09-24",
- "rate": 143,
- "attribution": {
- "demand_score": -0.01557709662113608,
- "holiday_or_event": 0,
- "lead_time": 0.2510948903941606,
- "orphan": 0,
- "seasonality": -0.00481,
- "day_of_week": -0.05397
}
}, - {
- "date": "2024-09-25",
- "rate": 150,
- "attribution": {
- "demand_score": 0.03874692277706265,
- "holiday_or_event": 0,
- "lead_time": 0.2533368090583942,
- "orphan": 0,
- "seasonality": -0.00539,
- "day_of_week": -0.04921
}
}, - {
- "date": "2024-09-26",
- "rate": 150,
- "attribution": {
- "demand_score": 0.1403045152346647,
- "holiday_or_event": 0,
- "lead_time": 0.2555787277226277,
- "orphan": 0,
- "seasonality": -0.00604,
- "day_of_week": -0.01127
}
}, - {
- "date": "2024-09-27",
- "rate": 150,
- "attribution": {
- "demand_score": 0.1800000036173821,
- "holiday_or_event": 0,
- "lead_time": 0.2578206463868613,
- "orphan": 0,
- "seasonality": -0.00675,
- "day_of_week": 0.07362
}
}, - {
- "date": "2024-09-28",
- "rate": 150,
- "attribution": {
- "demand_score": 0.1800000036173821,
- "holiday_or_event": 0,
- "lead_time": 0.2600625650510949,
- "orphan": 0,
- "seasonality": -0.0075,
- "day_of_week": 0.09785
}
}, - {
- "date": "2024-09-29",
- "rate": 150,
- "attribution": {
- "demand_score": 0.1403045152346647,
- "holiday_or_event": 0,
- "lead_time": 0.2623044837153285,
- "orphan": 0,
- "seasonality": -0.00828,
- "day_of_week": -0.00541
}
}, - {
- "date": "2024-09-30",
- "rate": 143,
- "attribution": {
- "demand_score": -0.02994712433786146,
- "holiday_or_event": 0,
- "lead_time": 0.264546402379562,
- "orphan": 0,
- "seasonality": -0.00907,
- "day_of_week": -0.05161
}
}, - {
- "date": "2024-10-01",
- "rate": 143,
- "attribution": {
- "demand_score": -0.02860224918673798,
- "holiday_or_event": 0,
- "lead_time": 0.2667883210437956,
- "orphan": 0,
- "seasonality": -0.00986,
- "day_of_week": -0.05397
}
}, - {
- "date": "2024-10-02",
- "rate": 147,
- "attribution": {
- "demand_score": -0.001831768118437965,
- "holiday_or_event": 0,
- "lead_time": 0.2690302397080292,
- "orphan": 0,
- "seasonality": -0.01061,
- "day_of_week": -0.04921
}
}, - {
- "date": "2024-10-03",
- "rate": 150,
- "attribution": {
- "demand_score": 0.03874692277706265,
- "holiday_or_event": 0,
- "lead_time": 0.2712721583722628,
- "orphan": 0,
- "seasonality": -0.01132,
- "day_of_week": -0.01127
}
}, - {
- "date": "2024-10-04",
- "rate": 150,
- "attribution": {
- "demand_score": 0.06413632089146316,
- "holiday_or_event": 0,
- "lead_time": 0.2735140770364963,
- "orphan": 0,
- "seasonality": -0.01196,
- "day_of_week": 0.07362
}
}, - {
- "date": "2024-10-05",
- "rate": 150,
- "attribution": {
- "demand_score": 0.03874692277706265,
- "holiday_or_event": 0,
- "lead_time": 0.27575599570073,
- "orphan": 0,
- "seasonality": -0.01253,
- "day_of_week": 0.09785
}
}, - {
- "date": "2024-10-06",
- "rate": 150,
- "attribution": {
- "demand_score": 0.07207009779436992,
- "holiday_or_event": 0,
- "lead_time": 0.2779979143649635,
- "orphan": 0,
- "seasonality": -0.013,
- "day_of_week": -0.00541
}
}, - {
- "date": "2024-10-07",
- "rate": 146,
- "attribution": {
- "demand_score": -0.01144993750856535,
- "holiday_or_event": 0,
- "lead_time": 0.2802398330291971,
- "orphan": 0,
- "seasonality": -0.01336,
- "day_of_week": -0.05161
}
}, - {
- "date": "2024-10-08",
- "rate": 146,
- "attribution": {
- "demand_score": -0.01144993750856535,
- "holiday_or_event": 0,
- "lead_time": 0.2824817516934306,
- "orphan": 0,
- "seasonality": -0.0136,
- "day_of_week": -0.05397
}
}, - {
- "date": "2024-10-09",
- "rate": 150,
- "attribution": {
- "demand_score": 0.04047637657490752,
- "holiday_or_event": 0,
- "lead_time": 0.2847236703576642,
- "orphan": 0,
- "seasonality": -0.01372,
- "day_of_week": -0.04921
}
}, - {
- "date": "2024-10-10",
- "rate": 150,
- "attribution": {
- "demand_score": 0.1333806855073861,
- "holiday_or_event": 0,
- "lead_time": 0.2869655890218978,
- "orphan": 0,
- "seasonality": -0.01371,
- "day_of_week": -0.01127
}
}, - {
- "date": "2024-10-11",
- "rate": 150,
- "attribution": {
- "demand_score": 0.1800000031072697,
- "holiday_or_event": 0,
- "lead_time": 0.2892075076861314,
- "orphan": 0,
- "seasonality": -0.01357,
- "day_of_week": 0.07362
}
}, - {
- "date": "2024-10-12",
- "rate": 150,
- "attribution": {
- "demand_score": 0.1340063037493556,
- "holiday_or_event": 0,
- "lead_time": 0.291449426350365,
- "orphan": 0,
- "seasonality": -0.01329,
- "day_of_week": 0.09785
}
}, - {
- "date": "2024-10-13",
- "rate": 150,
- "attribution": {
- "demand_score": 0.05290879564601102,
- "holiday_or_event": 0.02391,
- "lead_time": 0.2936913450145985,
- "orphan": 0,
- "seasonality": -0.01289,
- "day_of_week": -0.00541
}
}, - {
- "date": "2024-10-14",
- "rate": 122,
- "attribution": {
- "demand_score": 0.001767260694140357,
- "holiday_or_event": -0.03489,
- "lead_time": 0.2959332636788321,
- "orphan": -0.2,
- "seasonality": -0.01236,
- "day_of_week": -0.05161
}
}, - {
- "date": "2024-10-15",
- "rate": 119,
- "attribution": {
- "demand_score": -0.01779695066328668,
- "holiday_or_event": -0.0381,
- "lead_time": 0.2981751823430657,
- "orphan": -0.2,
- "seasonality": -0.01173,
- "day_of_week": -0.05397
}
}, - {
- "date": "2024-10-16",
- "rate": 150,
- "attribution": {
- "demand_score": 0.09512630436466939,
- "holiday_or_event": 0,
- "lead_time": 0.3004171010072992,
- "orphan": 0,
- "seasonality": -0.01099,
- "day_of_week": -0.04921
}
}, - {
- "date": "2024-10-17",
- "rate": 150,
- "attribution": {
- "demand_score": 0.04157362107924977,
- "holiday_or_event": 0,
- "lead_time": 0.3026590196715329,
- "orphan": 0,
- "seasonality": -0.01017,
- "day_of_week": -0.01127
}
}, - {
- "date": "2024-10-18",
- "rate": 150,
- "attribution": {
- "demand_score": 0.1799999873949027,
- "holiday_or_event": 0,
- "lead_time": 0.3049009383357664,
- "orphan": 0,
- "seasonality": -0.00928,
- "day_of_week": 0.07362
}
}, - {
- "date": "2024-10-19",
- "rate": 150,
- "attribution": {
- "demand_score": 0.1799999873949027,
- "holiday_or_event": 0,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": -0.00834,
- "day_of_week": 0.09785
}
}, - {
- "date": "2024-10-20",
- "rate": 150,
- "attribution": {
- "demand_score": 0.07098722128680156,
- "holiday_or_event": 0,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": -0.00737,
- "day_of_week": -0.00541
}
}, - {
- "date": "2024-10-21",
- "rate": 150,
- "attribution": {
- "demand_score": 0.06251928543562431,
- "holiday_or_event": 0,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": -0.00638,
- "day_of_week": -0.05161
}
}, - {
- "date": "2024-10-22",
- "rate": 150,
- "attribution": {
- "demand_score": -0.00509737486986913,
- "holiday_or_event": 0,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": -0.0054,
- "day_of_week": -0.05397
}
}, - {
- "date": "2024-10-23",
- "rate": 150,
- "attribution": {
- "demand_score": 0.04467123296919964,
- "holiday_or_event": 0,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": -0.00443,
- "day_of_week": -0.04921
}
}, - {
- "date": "2024-10-24",
- "rate": 150,
- "attribution": {
- "demand_score": 0.03912248772862045,
- "holiday_or_event": 0,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": -0.00351,
- "day_of_week": -0.01127
}
}, - {
- "date": "2024-10-25",
- "rate": 150,
- "attribution": {
- "demand_score": 0.0963155992433045,
- "holiday_or_event": 0,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": -0.00264,
- "day_of_week": 0.07362
}
}, - {
- "date": "2024-10-26",
- "rate": 150,
- "attribution": {
- "demand_score": 0.1004008214943534,
- "holiday_or_event": 0,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": -0.00185,
- "day_of_week": 0.09785
}
}, - {
- "date": "2024-10-27",
- "rate": 150,
- "attribution": {
- "demand_score": 0.04157362107924977,
- "holiday_or_event": 0,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": -0.00113,
- "day_of_week": -0.00541
}
}, - {
- "date": "2024-10-28",
- "rate": 150,
- "attribution": {
- "demand_score": 0.04097861189231803,
- "holiday_or_event": 0,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": -0.0005,
- "day_of_week": -0.05161
}
}, - {
- "date": "2024-10-29",
- "rate": 150,
- "attribution": {
- "demand_score": -0.01763302850595982,
- "holiday_or_event": 0,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": 0.00003,
- "day_of_week": -0.05397
}
}, - {
- "date": "2024-10-30",
- "rate": 150,
- "attribution": {
- "demand_score": -0.01763302850595982,
- "holiday_or_event": 0,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": 0.00046,
- "day_of_week": -0.04921
}
}, - {
- "date": "2024-10-31",
- "rate": 150,
- "attribution": {
- "demand_score": 0.005386616959987402,
- "holiday_or_event": 0,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": 0.0008,
- "day_of_week": -0.01127
}
}, - {
- "date": "2024-11-01",
- "rate": 150,
- "attribution": {
- "demand_score": 0.005399023968883208,
- "holiday_or_event": 0,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": 0.00104,
- "day_of_week": 0.07362
}
}, - {
- "date": "2024-11-02",
- "rate": 150,
- "attribution": {
- "demand_score": 0.006410690364230367,
- "holiday_or_event": 0,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": 0.00118,
- "day_of_week": 0.09785
}
}, - {
- "date": "2024-11-03",
- "rate": 150,
- "attribution": {
- "demand_score": 0.006013942485911693,
- "holiday_or_event": 0,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": 0.00125,
- "day_of_week": -0.00541
}
}, - {
- "date": "2024-11-04",
- "rate": 149,
- "attribution": {
- "demand_score": -0.0342550301713949,
- "holiday_or_event": 0,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": 0.00124,
- "day_of_week": -0.05161
}
}, - {
- "date": "2024-11-05",
- "rate": 148,
- "attribution": {
- "demand_score": -0.0342550301713949,
- "holiday_or_event": 0,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": 0.00117,
- "day_of_week": -0.05397
}
}, - {
- "date": "2024-11-06",
- "rate": 150,
- "attribution": {
- "demand_score": -0.02870227967407404,
- "holiday_or_event": 0,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": 0.00106,
- "day_of_week": -0.04921
}
}, - {
- "date": "2024-11-07",
- "rate": 150,
- "attribution": {
- "demand_score": -0.0445730606086408,
- "holiday_or_event": 0,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": 0.00092,
- "day_of_week": -0.01127
}
}, - {
- "date": "2024-11-08",
- "rate": 150,
- "attribution": {
- "demand_score": -0.01913877959484223,
- "holiday_or_event": 0,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": 0.00077,
- "day_of_week": 0.07362
}
}, - {
- "date": "2024-11-09",
- "rate": 150,
- "attribution": {
- "demand_score": -0.01913877959484223,
- "holiday_or_event": 0,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": 0.00063,
- "day_of_week": 0.09785
}
}, - {
- "date": "2024-11-10",
- "rate": 150,
- "attribution": {
- "demand_score": 0.04064008476714078,
- "holiday_or_event": -0.00508,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": 0.00051,
- "day_of_week": -0.00541
}
}, - {
- "date": "2024-11-11",
- "rate": 150,
- "attribution": {
- "demand_score": 0,
- "holiday_or_event": -0.00313,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": 0.00043,
- "day_of_week": -0.05161
}
}, - {
- "date": "2024-11-12",
- "rate": 150,
- "attribution": {
- "demand_score": 0,
- "holiday_or_event": 0.0034,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": 0.00041,
- "day_of_week": -0.05397
}
}, - {
- "date": "2024-11-13",
- "rate": 150,
- "attribution": {
- "demand_score": 0.0002626709317797766,
- "holiday_or_event": 0,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": 0.00046,
- "day_of_week": -0.04921
}
}, - {
- "date": "2024-11-14",
- "rate": 150,
- "attribution": {
- "demand_score": 0.0002626709317797766,
- "holiday_or_event": 0,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": 0.00058,
- "day_of_week": -0.01127
}
}, - {
- "date": "2024-11-15",
- "rate": 150,
- "attribution": {
- "demand_score": 0.1408358894697033,
- "holiday_or_event": 0,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": 0.0008,
- "day_of_week": 0.07362
}
}, - {
- "date": "2024-11-16",
- "rate": 150,
- "attribution": {
- "demand_score": 0.1408358894697033,
- "holiday_or_event": 0,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": 0.00112,
- "day_of_week": 0.09785
}
}, - {
- "date": "2024-11-17",
- "rate": 150,
- "attribution": {
- "demand_score": 0.0002626709317797766,
- "holiday_or_event": 0,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": 0.00153,
- "day_of_week": -0.00541
}
}, - {
- "date": "2024-11-18",
- "rate": 150,
- "attribution": {
- "demand_score": 0.0002626709317797766,
- "holiday_or_event": 0,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": 0.00205,
- "day_of_week": -0.05161
}
}, - {
- "date": "2024-11-19",
- "rate": 150,
- "attribution": {
- "demand_score": 0.0002626709317797766,
- "holiday_or_event": 0,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": 0.00266,
- "day_of_week": -0.05397
}
}, - {
- "date": "2024-11-20",
- "rate": 150,
- "attribution": {
- "demand_score": 0.0002626709317797766,
- "holiday_or_event": 0,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": 0.00337,
- "day_of_week": -0.04921
}
}, - {
- "date": "2024-11-21",
- "rate": 150,
- "attribution": {
- "demand_score": 0.05709014225562119,
- "holiday_or_event": 0,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": 0.00416,
- "day_of_week": -0.01127
}
}, - {
- "date": "2024-11-22",
- "rate": 150,
- "attribution": {
- "demand_score": 0.05709014225562119,
- "holiday_or_event": 0,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": 0.00502,
- "day_of_week": 0.07362
}
}, - {
- "date": "2024-11-23",
- "rate": 150,
- "attribution": {
- "demand_score": 0.08849479746090197,
- "holiday_or_event": 0,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": 0.00594,
- "day_of_week": 0.09785
}
}, - {
- "date": "2024-11-24",
- "rate": 150,
- "attribution": {
- "demand_score": 0.09204549410351485,
- "holiday_or_event": 0,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": 0.0069,
- "day_of_week": -0.00541
}
}, - {
- "date": "2024-11-25",
- "rate": 150,
- "attribution": {
- "demand_score": 0.09204549410351485,
- "holiday_or_event": 0,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": 0.00788,
- "day_of_week": -0.05161
}
}, - {
- "date": "2024-11-26",
- "rate": 150,
- "attribution": {
- "demand_score": 0.1780767472024972,
- "holiday_or_event": 0,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": 0.00886,
- "day_of_week": -0.05397
}
}, - {
- "date": "2024-11-27",
- "rate": 150,
- "attribution": {
- "demand_score": 0.1780767472024972,
- "holiday_or_event": 0.1096,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": 0.00982,
- "day_of_week": -0.04921
}
}, - {
- "date": "2024-11-28",
- "rate": 150,
- "attribution": {
- "demand_score": 0.1780767472024972,
- "holiday_or_event": 0.11432,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": 0.01074,
- "day_of_week": -0.01127
}
}, - {
- "date": "2024-11-29",
- "rate": 150,
- "attribution": {
- "demand_score": 0.1780767472024972,
- "holiday_or_event": 0.07727,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": 0.0116,
- "day_of_week": 0.07362
}
}, - {
- "date": "2024-11-30",
- "rate": 150,
- "attribution": {
- "demand_score": 0.04442105042372108,
- "holiday_or_event": 0,
- "lead_time": 0.307142857,
- "orphan": 0,
- "seasonality": 0.01238,
- "day_of_week": 0.09785
}
}
]
}, - "status": {
- "type": "success",
- "response_id": "API-S-061",
- "message": "Successfully retrieved smart rates for the requested Listing."
}
}