listing_data
Explore Listings within a Submarket.
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:
- Sort listings by highest Occupancy, Revenue, Average Daily Rate or Review Count.
- Find listings with an average Rating of 4 or higher.
- Find listings that have a high Investability or Revenue Growth.
post/submarket/{submarketId}/listings
Path parameters
submarketIdstring required
AirDNA ID for the Submarket. This can often be found as submarket_id.
Example:airdna-2331
Request body
Example request
{
"pagination": {
"page_size": 25,
"offset": 0
},
"filters": [
{
"type": "gte",
"field": "accommodates",
"value": 4
}
],
"currency": "usd"
}Response
Successful Submarket Listings Response
Example response
{
"payload": {
"page_info": {
"total_count": 100,
"page_size": 25,
"offset": 25
},
"listings": [
{
"property_id": "abnb_12345678",
"airbnb_host_id": "5678910",
"airbnb_property_id": "12345678",
"airbnb_property_url": "https://www.airbnb.com/rooms/12345678",
"vrbo_property_id": "34567890ha",
"vrbo_property_url": "https://www.vrbo.com/34567890ha",
"booking_property_id": "1234567",
"booking_property_url": "https://www.booking.com/hotel/us/example.html",
"market_id": "airdna-163",
"market_name": "Denver",
"country_name": "United States",
"city_name": "Denver",
"state_name": "Colorado",
"msa_name": "Denver-Aurora-Lakewood, CO Metro Area",
"location": {
"lat": 39.748847,
"lng": -104.99891
},
"exact_location": true,
"title": "Large Home in Denver",
"bedrooms": 9,
"bathrooms": 9.5,
"accommodates": 16,
"rating": 4.5,
"ratings": {
"overall_rating": 4.5,
"airbnb_accuracy_rating": 3,
"airbnb_cleanliness_rating": 4.2,
"airbnb_checkin_rating": 5,
"airbnb_communication_rating": 2.7,
"airbnb_location_rating": 3.9,
"airbnb_value_rating": 4.8
},
"instant_book": true,
"amenities": {
"has_aircon": true,
"has_cable_tv": true,
"has_dryer": true,
"has_family_friendly": true,
"has_heating": true,
"has_hottub": true,
"has_internet": true,
"has_kitchen": true,
"has_parking": true,
"has_pets_allowed": true,
"has_suitable_for_events": true,
"has_tv": true,
"has_washer": true,
"has_wireless_internet": true
},
"property_manager_name": "Super Awesome Property Manager",
"professionally_managed": true,
"reviews": 50,
"revenue_ltm": 693015,
"revenue_potential_ltm": 715250,
"occupancy_rate_ltm": 97.14,
"average_daily_rate_ltm": 1974.4,
"days_available_ltm": 350,
"days_blocked_ltm": 15,
"days_reserved_ltm": 340,
"num_reservations_ltm": 174,
"cleaning_fee": 125,
"created_date": "2023-08-10",
"last_calendar_update": "2024-04-30",
"last_scraped_date": "2024-03-15",
"license": "CITQ 092834",
"minimum_stay": 2,
"response_rate": 98,
"response_time": 12.5,
"currency": "usd",
"images": [
"//sample.jpeg"
]
}
]
},
"status": {
"type": "success",
"response_id": "API-S-XXX",
"message": "A successful request was made."
}
}