listing_data
Fetch Future Pricing for a Listing.
This endpoint provides daily future pricing for a listing for up to 12 months.
- Supports Currency Conversion for non-USD currencies.
- By default, all currency data is in USD.
post/listing/{listingId}/future/pricing
Path parameters
listingIdstring required
AirDNA ID for the Listing. This can often be found as property_id. The ID is prefixed with the channel the Listing belongs to:
- abnb_ for Airbnb
- vrbo_ for Vrbo
- bkng_ for Booking.com
Smart Rates endpoints currently only model Airbnb Listings; requests with vrbo_* or bkng_* IDs are rejected with a "Smart Rates does not yet model Booking.com / Vrbo listings." envelope.
Example:abnb_XXXXXXXX
Request body
Example request
{
"num_months": 3,
"currency": "usd"
}Response
Successful Listing Future Daily Pricing Response
Example response
{
"payload": {
"pricing": [
{
"date": "2023-12-11",
"rate": 2606.22
}
]
},
"status": {
"type": "success",
"response_id": "API-S-XXX",
"message": "A successful request was made."
}
}