market_data
submarket_data
listing_data
Search for a Market or Submarket by Search Term or Coordinates.
If you need to find AirDNA Markets or Submarkets, this endpoint allows you to find them via a simple search_term or lat and lng.
Each result will provide:
- A unique id that can be used in other endpoints for obtaining data.
- The Name of the market
- Whether it is a Market or Submarket
- Basic Location details
post/market/search
Request body
Example request
{
"search_term": "Denver",
"pagination": {
"page_size": 25,
"offset": 0
}
}Response
Successful Market Search Response
Example response
{
"payload": {
"page_info": {
"page_size": 25,
"offset": 25
},
"results": [
{
"id": 80382,
"name": "Paris",
"listing_count": 1352,
"location_name": "Paris, Texas, US",
"location": {
"state": "Texas",
"country": "United States",
"country_code": "us"
}
}
]
},
"status": {
"type": "success",
"response_id": "API-S-XXX",
"message": "A successful request was made."
}
}