Airbnb CLI
Search Airbnb listings, prices, reviews, and availability from the command line.
Installation
- Make sure Claude is on your device and in your terminal.
Skills load from
~/.claude/skills/when Claude Code starts up — so you need it on your machine first. If you don't have it yet, install it once with the command below, then runclaudein any terminal to verify.One-time setupnpm i -g @anthropic-ai/claude-codeAlready have it? Skip ahead.
- Paste into Claude Code or into your terminal.
This copies the whole skill folder into
~/.claude/skills/airbnb-cli-itamarzand88/— the SKILL.md plus any scripts, reference docs, or templates the skill ships with. Safe default: works for every skill.Faster alternative (instruction-only skills)
Skips the clone and grabs only the SKILL.md file. Don't use this if the skill ships Python scripts, reference markdowns, or asset templates — they won't be downloaded and the skill will fail when it tries to load them.
Quick install (SKILL.md only)Sign up to copy - Restart Claude Code.
Quit and reopen Claude Code (or any other agent that loads from
~/.claude/skills/). New skills are picked up on startup. - Just ask Claude.
Skills auto-activate when your request matches the skill's description — no slash command needed. Trigger phrases live in the skill's own frontmatter; you can read them in the “What this skill does” section above.
Prefer to read the source first? Open on GitHub.
When Claude uses it
Searches Airbnb from the terminal via cli-web-airbnb — find stays by location, dates, and filters; get listing details, guest reviews, and availability calendars; autocomplete location names. Use when the user asks about Airbnb, vacation rentals, listing prices, availability, or finding places to stay. Prefer cli-web-airbnb over fetching the Airbnb website. No auth required.
What this skill does
cli-web-airbnb
Read-only Airbnb search: stays, listing details, reviews, availability, location autocomplete. Bot protection (Akamai/DataDome) is bypassed automatically.
Install: pip install cli-web-airbnb
Commands
search
search stays LOCATION— search stays (e.g."London, UK"). Options:--checkin DATE --checkout DATE,--adults N(default 1),--children N,--infants N,--pets N,--min-price N,--max-price N,--room-type [entire_home|private_room|shared_room|hotel_room](repeatable),--amenity ID(repeatable; 4=WiFi, 8=Kitchen, 40=AC, 33=Pool),--cursor TOKEN(pagination),--locale,--currency
listings
listings get LISTING_ID— full details (description, amenities, host, price). Options:--checkin,--checkout,--adultslistings reviews LISTING_ID— guest reviews. Options:--limit N(default 24),--offset N,--sort [best_quality|recent|rating_desc|rating_asc]listings availability LISTING_ID— calendar. Options:--month N,--year N,--count N(months, default 12),--available-only
autocomplete
autocomplete locations QUERY— location suggestions. Options:-n/--num-results N(default 5)
Examples
# Search with dates and budget — returns listings with id, name, price, rating
cli-web-airbnb search stays "Paris, France" --checkin 2026-07-01 --checkout 2026-07-05 --adults 2 --max-price 200 --json
# Search → inspect top result
ID=$(cli-web-airbnb search stays "London, UK" --json | python3 -c "import json,sys; print(json.load(sys.stdin)['listings'][0]['id'])")
cli-web-airbnb listings get $ID --json
# Recent reviews for a listing
cli-web-airbnb listings reviews 770993223449115417 --sort recent --limit 10 --json
# Next 3 months of availability
cli-web-airbnb listings availability 770993223449115417 --count 3 --available-only --json
# Resolve a partial location before searching
cli-web-airbnb autocomplete locations "New Yor" --json
JSON output
Add --json to any command for structured output. Success responses are flat envelopes, e.g. search: {"success": true, "count", "next_cursor", "total_count", "listings": [{id, id_b64, name, url, rating, price, price_qualifier, latitude, longitude, badges}]}. Errors: {"error": true, "code": "...", "message": "..."}.
Utilities
cli-web-airbnb doctor [--json] diagnoses local setup (install, dependencies). cli-web-airbnb mcp-serve exposes the commands as MCP tools over stdio. Running with no subcommand opens an interactive REPL.
Agent tips
- Pagination is cursor-based: pass the
next_cursorvalue from one search as--cursorin the next. - Listing IDs are long integer strings;
id_b64is the base64 form Airbnb uses internally. - Search and view only — booking is not implemented.
Related skills
Word Document Editor
anthropics
Create, edit, and format Word documents with tables, images, and tracked changes.
Skill Template
anthropics
A template for creating and configuring new Claude skills.
Kanban TUI
Zaloog
Manage tasks, boards, and workflows in your terminal with a CLI kanban tool.
Superpowers
obra
Jesse Vincent's full Claude Code methodology — TDD, brainstorming, git worktrees, all auto-triggering.