submarket_data
Fetch details about a specific Submarket.
Provides basic information about a specific Submarket. Includes key data such as:
- Summary Metrics (Last 12 Months)
- Market Score
- Occupancy
- Revenue
- RevPAR
get/submarket/{submarketId}
Path parameters
submarketIdstring required
AirDNA ID for the Submarket. This can often be found as submarket_id.
Example:airdna-2331
Response
Successful Submarket Details Response
Example response
{
"payload": {
"id": "airdna-2331",
"name": "Chaffee Park",
"parent_market_name": "Denver",
"market_type": "mountains_lakes",
"metrics": {
"market_score": 100,
"revenue": 787243,
"booked": 0.78,
"daily_rate": 502,
"revpar": 462.1
},
"geospatial": {
"geom_pt": {
"lat": 39.748847,
"lng": -104.99891
}
}
},
"status": {
"type": "success",
"response_id": "API-S-XXX",
"message": "A successful request was made."
}
}