Recherche Airbnb

VérifiéPrudence

Recherchez des annonces Airbnb avec prix, notes et liens directs. Aucune clé API requise car utilise l'API publique frontend.

Spar Skills Guide Bot
ProductiviteDébutant
17014/08/2026
Claude CodeCursorWindsurfCopilotCodex
#airbnb#search#travel#vacation-rental#lodging

Recommandé pour

Notre avis

Recherche des annonces Airbnb avec prix, notes et liens de réservation directs, sans clé API utilisateur.

Points forts

  • Aucune clé API personnelle requise, utilise la clé publique d'Airbnb
  • Filtres pratiques (prix, chambres, dates)
  • Sortie en tableau ou JSON pour intégration facile
  • Liens directs vers les annonces

Limites

  • Nécessite des dates de check-in et check-out pour des prix précis
  • Peut cesser de fonctionner si Airbnb modifie son API interne
  • Utilisation non officielle de l'API frontend publique
Quand l'utiliser

Lorsque vous avez besoin de rapidement comparer des locations de vacances ou des prix sur Airbnb à partir de la ligne de commande.

Quand l'éviter

Si vous nécessitez une solution officielle et stable, ou des données en temps réel garanties par un contrat API.

Analyse de sécurité

Prudence
Score qualité85/100

The skill uses network access and executes a Python script with auto-installed dependencies, which is legitimate for searching Airbnb listings but falls under 'caution' due to command execution and external API usage. No destructive, exfiltrating, or obfuscated actions are present.

Points d'attention
  • Executes a Python script via `uv run`, which installs the `requests` library and runs code from the skill directory.
  • Makes network requests to Airbnb's public API using a hardcoded API key, which could be subject to rate limits or terms-of-service issues.
  • No declared allowed-tools, but the skill instructs system-level commands (`uv run`) that may require shell access.

Exemples

Search cabins under $500
Find a cabin in Steamboat Springs, CO for March 1-3 with max price $500.
JSON output for Denver
Search Airbnb in Denver, CO for June 1-5 and output as JSON.
Filter by bedrooms
Search Airbnb for 2-bedroom rentals in Austin, TX from July 4-6, min 2 bedrooms, and show only 20 results.

name: airbnb-search description: Search Airbnb listings with prices, ratings, and direct links. No user API key required (uses Airbnb's public frontend API key). Use when searching for Airbnb stays, vacation rentals, or accommodation pricing. license: MIT metadata: author: Olafs-World version: "0.1.3"

Airbnb Search

Search Airbnb listings from the command line. Returns prices, ratings, and direct booking links.

Requirements

  • Python 3.8+
  • requests library (auto-installed via uv run --with)

Quick Start

# Run directly (no install needed)
uv run --with requests scripts/airbnb-search.py "Steamboat Springs, CO" --checkin 2025-03-01 --checkout 2025-03-03

# JSON output
uv run --with requests scripts/airbnb-search.py "Denver, CO" --checkin 2025-06-01 --checkout 2025-06-05 --json

Options

query                Search location (e.g., "Steamboat Springs, CO")
--checkin, -i DATE   Check-in date (YYYY-MM-DD)
--checkout, -o DATE  Check-out date (YYYY-MM-DD)
--min-price N        Minimum price filter
--max-price N        Maximum price filter
--min-bedrooms N     Minimum bedrooms filter
--limit N            Max results (default: 50)
--json               Output as JSON
--format FORMAT      table or json (default: table)

Example Output

📍 Steamboat Springs, CO
📊 Found 300+ total listings

==========================================================================================
Cozy Mountain Cabin 🏆
  2BR/1BA | ⭐4.92 | 127 reviews
  💰 $407 total
  🔗 https://airbnb.com/rooms/12345678

Notes

  • Dates are required for accurate pricing
  • Prices include cleaning fees in the total
  • No user API key needed — uses Airbnb's public frontend API key (hardcoded, same key used by airbnb.com in the browser)
  • May break if Airbnb changes their internal GraphQL API
  • Be respectful of rate limits

Links

Skills similaires