Discover/Vrbo API
live

Vrbo APIvrbo.com

Search Vrbo vacation rentals by location, dates, and guest count. Retrieve property details including amenities, bedrooms, and descriptions via two endpoints.

Endpoint health
verified 3d ago
search_listings
get_property_details
2/2 passing latest checkself-healing
Endpoints
2
Updated
21d ago

What is the Vrbo API?

The Vrbo API provides access to vacation rental data across two endpoints: search_listings and get_property_details. A search returns up to paginated results per query including per-night pricing, property IDs, thumbnails, and listing URLs. The detail endpoint exposes 9 structured fields per property — name, location, bedroom and bathroom counts, sleep capacity, amenities list, description, and a primary image URL.

Try it
Page number for pagination
Location to search for (e.g., 'Miami', 'New York', 'Los Angeles')
Number of adult guests
Check-in date in YYYY-MM-DD format
Check-out date in YYYY-MM-DD format
api.parse.bot/scraper/c00a1872-7f9d-45ba-bde6-4cf81a483fa6/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/c00a1872-7f9d-45ba-bde6-4cf81a483fa6/search_listings?page=1&query=Miami&adults=2&checkin=2026-07-21&checkout=2026-07-28' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace vrbo-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.vrbo_scraper_api import Vrbo, Listing, ListingDetail

vrbo = Vrbo()

# Search for vacation rentals in Miami
for listing in vrbo.listings.search(query="Miami", adults=2, limit=5):
    print(listing.title, listing.price_per_night, listing.location)

    # Get full details for each listing
    detail = listing.details()
    print(detail.name, detail.bedrooms, detail.bathrooms, detail.sleeps)
All endpoints · 2 totalmissing one? ·

Search for vacation rental listings by location. Returns properties with titles, prices, thumbnails, and listing URLs. Supports optional date filtering and guest count. Results are sorted by Vrbo's recommended algorithm. Each page returns up to ~50 listings.

Input
ParamTypeDescription
pageintegerPage number for pagination
queryrequiredstringLocation to search for (e.g., 'Miami', 'New York', 'Los Angeles')
adultsintegerNumber of adult guests
checkinstringCheck-in date in YYYY-MM-DD format
checkoutstringCheck-out date in YYYY-MM-DD format
Response
{
  "type": "object",
  "fields": {
    "page": "integer - current page number",
    "query": "string - the search location",
    "adults": "integer - number of adult guests",
    "checkin": "string or null - check-in date if provided",
    "results": "array of listing objects with title, property_id, expedia_property_id, location, price_per_night, thumbnail, and url",
    "checkout": "string or null - check-out date if provided",
    "results_count": "integer - number of results returned"
  },
  "sample": {
    "data": {
      "page": 1,
      "query": "Miami",
      "adults": 2,
      "checkin": null,
      "results": [
        {
          "url": "https://www.vrbo.com/4425323",
          "title": "Luxury Brickell Studio ✨ Ocean Views + Rooftop Pool + Gym",
          "location": "Within Downtown Miami",
          "thumbnail": "https://media.vrbo.com/lodging/113000000/112940000/112930200/112930147/b60f7d61.jpg?impolicy=resizecrop&ra=fit&rw=455&rh=455",
          "property_id": "4425323",
          "price_per_night": "$302",
          "expedia_property_id": "112930147"
        }
      ],
      "checkout": null,
      "results_count": 50
    },
    "status": "success"
  }
}

About the Vrbo API

Search Listings

The search_listings endpoint accepts a required query string (e.g. 'Miami' or 'New York') and optional parameters for checkin, checkout, adults, and page. When date parameters are supplied, returned prices reflect availability-based nightly rates. Each result object in the results array includes title, property_id, expedia_property_id, location, price_per_night, thumbnail, and url. The results_count field tells you how many listings came back for the current page, and page tracks your position in the paginated result set.

Property Details

The get_property_details endpoint takes a property_id — the numeric string found in results[*].property_id from a search response — and returns a single property record. Fields include name, description, location, sleeps, bedrooms, bathrooms, amenities (an array of strings), image, url, and property_id. Integer fields such as sleeps, bedrooms, and bathrooms can be null if the source listing does not publish that data.

Data Coverage Notes

Pricing in search results reflects Vrbo's listed nightly rate; the detail endpoint does not return a separate price field. The amenities array surfaces whatever the host has listed on the property page and may vary widely in granularity between listings. Guest reviews, availability calendars, and host contact information are not included in either endpoint's response.

Reliability & maintenanceVerified

The Vrbo API is a managed, monitored endpoint for vrbo.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when vrbo.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official vrbo.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
3d ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a vacation rental comparison tool using price_per_night, bedrooms, and sleeps across multiple properties
  • Populate a travel app's search results page with property thumbnails, titles, and URLs from search_listings
  • Filter rentals by guest count using the adults parameter before surfacing listings to end users
  • Aggregate amenities data across properties in a destination to identify which features are standard vs. rare
  • Cross-reference expedia_property_id with Expedia-side data for multi-platform rental research
  • Build a property detail page using description, image, location, and structured specs from get_property_details
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Vrbo have an official public developer API?+
Vrbo does not offer a publicly documented developer API for listing search or property data. It offers a connectivity program aimed at property management software vendors, but there is no self-serve API for general developers.
What does `get_property_details` return beyond what search results include?+
Search results give you title, price_per_night, thumbnail, location, and url. The detail endpoint adds description, amenities (as an array), sleeps, bedrooms, bathrooms, and a full-resolution image URL — fields the search results do not expose.
Does the API return guest reviews or ratings for properties?+
Not currently. Both endpoints cover listing metadata, specs, and amenities, but review counts, star ratings, and individual guest reviews are not included in any response field. You can fork this API on Parse and revise it to add a reviews endpoint targeting individual property pages.
Can I retrieve availability calendars or multi-night total pricing?+
Not currently. The search_listings endpoint returns a price_per_night value when dates are provided, but there is no endpoint for full availability calendars or stay-level total price breakdowns. You can fork this API on Parse and revise it to add an availability or pricing-detail endpoint.
How does pagination work in `search_listings`?+
Pass an integer to the page parameter to advance through result pages. The response echoes back the current page value alongside results_count so you can track how many results were returned per page. There is no explicit total_results field, so you determine the last page by observing when results_count drops below the expected page size.
Page content last updated . Spec covers 2 endpoints from vrbo.com.
Related APIs in TravelSee all →
booking.com API
Search for accommodations across Booking.com and instantly access detailed property information including pricing, amenities, and guest reviews to compare your options. Find the perfect stay by filtering thousands of listings and retrieving comprehensive details like room descriptions, availability, and booking terms all in one place.
airbnb.com API
Search Airbnb stays by destination and dates, then retrieve listing details, availability calendars, and recent guest reviews for a specific listing.
airbnb.pt API
Search for rental listings in any location, view detailed information about properties including availability and guest reviews. Browse hundreds of accommodations to find the perfect place that fits your travel needs and budget.
airbnb.es API
Search Airbnb listings across multiple cities and retrieve detailed information about properties and hosts, including availability, pricing, and reviews. Access comprehensive rental data to compare accommodations and make informed booking decisions.
airbnb.co.uk API
Search Airbnb UK listings and access detailed information including pricing, availability calendars, and guest reviews. Plan your trips by comparing properties and experiences across locations with real-time data on rates and booking availability.
booking-com.p.rapidapi.com API
Search Booking.com properties and retrieve detailed information like pricing, amenities, reviews, and availability without manually browsing the site. Access structured property data instantly to compare accommodations and make informed booking decisions.
expedia.com API
Search for hotels and flights across Expedia while viewing detailed property information to compare prices and amenities for your travel plans. Get comprehensive travel options all from one integration without manually browsing the website.
realestateview.com.au API
Search and explore rental property listings across Australia with detailed information including photos, property types, agent details, and nearby listings. Find available rentals by location, compare properties, and discover similar listings in your area of interest.