vrbo

GitHub

通过Patchright自动化浏览器搜索VRBO度假租赁房源,支持整租、公寓及小屋。专为绕过Akamai反爬机制设计,返回含价格和预订链接的列表,适用于家庭或团体多卧室住宿查询与对比。

plugins/travel-hacking-toolkit/skills/vrbo/SKILL.md borski/travel-hacking-toolkit

Trigger Scenarios

search VRBO Vrbo rentals vacation rental cabin rental whole house condo for the group

Install

npx skills add borski/travel-hacking-toolkit --skill vrbo -g -y
More Options

Non-standard path

npx skills add https://github.com/borski/travel-hacking-toolkit/tree/main/plugins/travel-hacking-toolkit/skills/vrbo -g -y

Use without installing

npx skills use borski/travel-hacking-toolkit@vrbo

指定 Agent (Claude Code)

npx skills add borski/travel-hacking-toolkit --skill vrbo -a claude-code -g -y

安装 repo 全部 skill

npx skills add borski/travel-hacking-toolkit --all -g -y

预览 repo 内 skill

npx skills add borski/travel-hacking-toolkit --list

SKILL.md

Frontmatter
{
    "name": "vrbo",
    "api_key": "None (requires Patchright)",
    "summary": "VRBO whole-home, condo, and cabin search via Patchright. Complements Airbnb for group stays.",
    "category": "hotels",
    "description": "Search VRBO (Vrbo \/ Expedia Group) vacation rentals including entire homes, condos, and cabins via Patchright browser automation. VRBO sits behind Akamai Bot Manager so plain HTTP and standard Playwright get a 429 bot wall. Use for whole-home or group stays, multi-bedroom rentals, and Airbnb-vs-VRBO comparisons. Trigger phrases include search VRBO, Vrbo rentals, vacation rental, cabin rental, whole house, condo for the group.",
    "docker_image": "ghcr.io\/borski\/vrbo"
}

VRBO Search

Search VRBO vacation rentals via Patchright and return whole-home / condo / cabin listings with pricing and booking links. VRBO is the natural complement to the Airbnb MCP for group and family stays — many mountain-town and resort property managers cross-list on both, but VRBO carries professionally-managed condos and cabins that don't always appear on Airbnb.

Requires Patchright (undetected Playwright fork). VRBO sits behind Akamai Bot Manager — plain HTTP, standard Playwright, @playwright/mcp, and agent-browser all get a 429 Too Many Requests ("Provisioned request rate has been exceeded") bot wall. Patchright passes Akamai's sensor and earns the _abck cookie. This is the same wall — and the same fix — as the chase-travel / amex-travel / southwest skills.

Must run headed (headless=False). Akamai flags headless browsers. On macOS a Chrome window briefly appears. For background / unattended runs, use Docker (Xvfb provides the virtual display).

No login required. VRBO search results are public — unlike chase-travel / amex-travel, there are no credentials. The persistent profile only caches the Akamai cookie so repeat searches re-challenge less.

Prerequisites

pip install patchright && patchright install chromium

Or use Docker (no local install, headed via Xvfb):

docker build -t vrbo skills/vrbo/

When to Use

  • Group / family stays where you want a whole home, condo, or cabin
  • "Compare Airbnb vs VRBO in "
  • Multi-bedroom rentals with separate rooms (the multi-person trip pattern)
  • Resort / mountain towns (Canmore, Banff-area, Whistler, Muskoka) where professional property managers list condos on VRBO that aren't on Airbnb

When NOT to Use

  • Completing a booking. This skill finds rentals and returns links only. Do not attempt to complete a purchase.
  • Hotels. Use compare-hotels / serpapi / liteapi / the portal skills.
  • Single rooms / shared rooms. VRBO is whole-property only; for private rooms in a shared home use the Airbnb MCP (private_room).

Usage

# Local (pops up a Chrome window on macOS)
python3 skills/vrbo/scripts/search_vrbo.py \
  --dest "Canmore, Alberta, Canada" \
  --checkin 2026-06-26 --checkout 2026-07-02 --adults 3 --json

# Whole homes with 3+ bedrooms
python3 skills/vrbo/scripts/search_vrbo.py \
  --dest "Canmore, Alberta" --checkin 2026-06-26 --checkout 2026-07-02 \
  --adults 3 --min-bedrooms 3 --json

# Docker (headless host, headed browser via Xvfb)
docker run --rm vrbo \
  --dest "Canmore, Alberta" --checkin 2026-06-26 --checkout 2026-07-02 \
  --adults 3 --json

Arguments

Flag Default Notes
--dest required Destination keyword, e.g. "Canmore, Alberta, Canada". VRBO resolves it to a regionId server-side.
--checkin / --checkout required ISO YYYY-MM-DD. Must be today or later.
--adults 2 Traveler count.
--children 0
--pets off Pet-friendly only.
--min-bedrooms 0 Client-side filter (VRBO's URL filter is unreliable).
--limit 20 Max listings returned.
--retries 4 Akamai retry attempts (homepage warm-up → SERP).
--json off Emit JSON to stdout (use this for orchestration).

Output

JSON shape (with --json):

{
  "source": "vrbo",
  "extractor": "__PLUS_REDUX_STORE__ | dom:lodging-card | dom:anchors",
  "searchUrl": "https://www.vrbo.com/search?...",
  "count": 12,
  "listings": [
    {
      "id": "1234567",
      "name": "Mountain-View Condo Steps from Main St",
      "bedrooms": 3, "bathrooms": 2, "sleeps": 6,
      "rating": 4.9, "reviewCount": 84,
      "priceText": "The current price is CA $312 CA $312 CA $2,184 total includes taxes & fees",
      "pricePerNight": 312, "priceTotal": 2184, "priceIncludesTaxes": true,
      "lat": 51.08, "lng": -115.35,
      "url": "https://www.vrbo.com/en-ca/cottage-rental/p1234567?..."
    }
  ]
}

extractor tells you which layer produced the data. __PLUS_REDUX_STORE__ is richest (bedrooms, coords, review counts); dom:lodging-card is reliable but thinner (the common case — names, prices, URLs); dom:anchors is a last-ditch id+url scrape — if you see that, the page shape changed and selectors need a refresh (file a P2 task).

Prices: the SERP price string is parsed into pricePerNight and priceTotal. Verified against live data: VRBO's SERP total includes taxes & fees (priceIncludesTaxes: true) — priceTotal is the all-in for the whole stay, pricePerNight is the lead nightly rate. This satisfies the hotel-comparison standard's all-in requirement directly; still open the listing URL to confirm before booking, since a damage deposit or optional add-ons may not be in the SERP figure.

Tests

The pure logic (search-URL building, Akamai block/challenge detection, SERP price parsing, skeleton filtering, listing enrichment) is covered by stdlib unittest tests — no browser, network, or Patchright needed (the patchright import is lazy):

python3 -m unittest discover -s skills/vrbo/tests -v   # or: python3 -m pytest skills/vrbo/tests

17 tests, no third-party deps. The browser-driven path (Akamai bypass, DOM extraction) can't be unit-tested without a live residential connection — verify it manually with a real search (see Usage above). The repo smoke test (scripts/smoke-test.sh) separately validates this skill's frontmatter and structure.

Known fragility

  • Akamai is IP-rate-limited. Datacenter / CI / VPN IPs are frequently blocked even with Patchright. Run on a residential connection for best results. If every retry 429s, the script exits 1 with a clear message — that is an environment block, not a code bug. In practice a home/mobile/hotel-WiFi IP clears the wall, but rapid repeat searches from the same IP can start 429-ing — space searches a few minutes apart, and don't loop it in a tight batch.
  • DOM selectors drift. VRBO/Expedia revise their data-stid design system periodically. The extractor tries the embedded state blob first (most stable), then data-stid cards, then a generic anchor scrape. If extractor is dom:anchors, refresh the Layer-1/2 selectors.

Version History

  • 8c12eda Current 2026-07-25 05:46

Same Skill Collection

plugins/travel-hacking-toolkit/skills/alliances/SKILL.md
plugins/travel-hacking-toolkit/skills/american-airlines/SKILL.md
plugins/travel-hacking-toolkit/skills/amex-travel/SKILL.md
plugins/travel-hacking-toolkit/skills/atlas-obscura/SKILL.md
plugins/travel-hacking-toolkit/skills/award-calendar/SKILL.md
plugins/travel-hacking-toolkit/skills/award-holds/SKILL.md
plugins/travel-hacking-toolkit/skills/award-sweet-spots/SKILL.md
plugins/travel-hacking-toolkit/skills/awardwallet/SKILL.md
plugins/travel-hacking-toolkit/skills/bilt/SKILL.md
plugins/travel-hacking-toolkit/skills/booking-guidance/SKILL.md
plugins/travel-hacking-toolkit/skills/cabin-codes/SKILL.md
plugins/travel-hacking-toolkit/skills/chase-travel/SKILL.md
plugins/travel-hacking-toolkit/skills/compare-flights/SKILL.md
plugins/travel-hacking-toolkit/skills/compare-hotels/SKILL.md
plugins/travel-hacking-toolkit/skills/deutsche-bahn/SKILL.md
plugins/travel-hacking-toolkit/skills/duffel/SKILL.md
plugins/travel-hacking-toolkit/skills/fallback-and-resilience/SKILL.md
plugins/travel-hacking-toolkit/skills/flight-search-strategy/SKILL.md
plugins/travel-hacking-toolkit/skills/getting-started/SKILL.md
plugins/travel-hacking-toolkit/skills/google-flights/SKILL.md
plugins/travel-hacking-toolkit/skills/hotel-chains/SKILL.md
plugins/travel-hacking-toolkit/skills/ignav/SKILL.md
plugins/travel-hacking-toolkit/skills/lessons-learned/SKILL.md
plugins/travel-hacking-toolkit/skills/partner-awards/SKILL.md
plugins/travel-hacking-toolkit/skills/plan-trip/SKILL.md
plugins/travel-hacking-toolkit/skills/points-valuations/SKILL.md
plugins/travel-hacking-toolkit/skills/premium-hotels/SKILL.md
plugins/travel-hacking-toolkit/skills/rapidapi/SKILL.md
plugins/travel-hacking-toolkit/skills/round-the-world/SKILL.md
plugins/travel-hacking-toolkit/skills/scandinavia-transit/SKILL.md
plugins/travel-hacking-toolkit/skills/seatmaps/SKILL.md
plugins/travel-hacking-toolkit/skills/seats-aero/SKILL.md
plugins/travel-hacking-toolkit/skills/serpapi/SKILL.md
plugins/travel-hacking-toolkit/skills/southwest/SKILL.md
plugins/travel-hacking-toolkit/skills/status-match/SKILL.md
plugins/travel-hacking-toolkit/skills/stopovers/SKILL.md
plugins/travel-hacking-toolkit/skills/ticketsatwork/SKILL.md
plugins/travel-hacking-toolkit/skills/transfer-bonuses/SKILL.md
plugins/travel-hacking-toolkit/skills/transfer-partners/SKILL.md
plugins/travel-hacking-toolkit/skills/trip-calculator/SKILL.md
plugins/travel-hacking-toolkit/skills/trip-log/SKILL.md
plugins/travel-hacking-toolkit/skills/trip-planner/SKILL.md
plugins/travel-hacking-toolkit/skills/tripadvisor/SKILL.md
plugins/travel-hacking-toolkit/skills/wheretocredit/SKILL.md
plugins/travel-hacking-toolkit/skills/wikipedia-airports/SKILL.md
plugins/travel-hacking-toolkit/skills/gardening/SKILL.md
plugins/travel-hacking-toolkit/skills/sutochno/SKILL.md

Metadata

Files
0
Version
ffd04a2
Hash
615437e3
Indexed
2026-07-25 05:46

Home - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-21 21:38
浙ICP备14020137号-1 $Map of visitor$