market_data
Fetch Future Daily Pricing for a Market.
This endpoint provides 1 to 12 months of future daily pricing data for a Market.
- Supports some Listing Filters to calculate future pricing data for certain types of STR Listings within the Market.
- Supports requests to calculate custom percentiles for future daily pricing within the Market.
post/market/{marketId}/future_pricing
Path parameters
marketIdstring required
AirDNA ID for the Market. This can often be found as market_id.
Example:airdna-163
Request body
Example request
{
"num_months": 6,
"filters": [
{
"type": "gte",
"field": "accommodates",
"value": 4
}
],
"currency": "usd"
}Response
Successful Market Future Rates Response
Example response
{
"payload": {
"metrics": [
{
"date": "2024-05-01",
"available_count": 49810,
"booked_count": 41755,
"mean_available_rate": 183.94,
"mean_booked_rate": 193.44,
"median_booked_rate": 147.37,
"median_available_rate": 138.16,
"occupancy": 45.6,
"future_rate_percentiles": [
200,
454,
898
]
}
]
},
"status": {
"type": "success",
"response_id": "API-S-XXX",
"message": "A successful request was made."
}
}