submarket_data
Fetch Average Daily Rate Metrics for a Submarket.
This endpoint provides 12 to 60 months of historical monthly average daily rate data for a Submarket.
- Supports Currency Conversion for non-USD currencies.
- By default, all currency data is in USD.
- Supports some Listing Filters to calculate historical ADR for certain types of STR Listings within the Submarket.
- Supports requests to calculate custom percentiles for ADR within the Submarket.
post/submarket/{submarketId}/metrics/adr
Path parameters
submarketIdstring required
AirDNA ID for the Submarket. This can often be found as submarket_id.
Example:airdna-2331
Request body
Example request
{
"num_months": 12,
"filters": [
{
"type": "gte",
"field": "accommodates",
"value": 4
}
],
"currency": "usd"
}Response
Successful Submarket Average Daily Rate Metrics Response
Example response
{
"payload": {
"metrics": [
{
"date": "2022-11",
"adr": 378.7,
"adr_percentiles": [
198,
343,
789
]
}
],
"monthly_pct_change": -7.99,
"yearly_pct_change": -7.02
},
"status": {
"type": "success",
"response_id": "API-S-XXX",
"message": "A successful request was made."
}
}