
Vrbo API
Listing Details
/availability_byidVrbo /availability_byid API
Stop scraping. Start building. The /availability_byid endpoint gives you instant, programmatic access to Vrbo data through a clean, well-documented REST API that just works. No more wrestling with headless browsers, maintaining proxy pools, or writing fragile CSS selectors that break with every site redesign. RealtyAPI handles all of that behind a simple API key authentication, so your integration stays stable while we handle the complexity underneath. From early-stage prototype to scaled production system, this endpoint grows with your application — start with 250 free calls to validate your idea, then move to a paid plan when you are ready to ship.
import requests
url = "https://vrbo.realtyapi.io/availability_byid"
headers = {
"x-realtyapi-key": "YOUR_API_KEY"
}
params = {
"propertyId": "70477069"
}
response = requests.get(url, headers=headers, params=params)
data = response.json()
print(data)What You Can Do With
the /availability_byid Endpoint.
Here's what this endpoint provides and how you can use the data it returns.
Endpoint Parameters
3 params| Parameter | Type | Required |
|---|---|---|
propertyId | STRING | Required |
startDate | STRING | Optional |
endDate | STRING | Optional |
Required Parameters
This endpoint requires propertyId to fetch data. Pass these as query parameters in your request.
JSON Response
Receive structured JSON containing /availability_byid data from Vrbo. Parse it directly into your application models.
Real-Time Results
Every request fetches live Vrbo data. No stale caches — you always get the most current information available.
Error Handling
Clear HTTP status codes and error messages help you handle edge cases gracefully. See our documentation for the full error reference.