airbnb-search-places

Resolve Airbnb place names into google_place_id values and retrieve stay listings.

25|8|Updated Apr 6, 2026
One-click install
npx skills add https://github.com/adoptai/noui --skill airbnb-search-places
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: airbnb-search-places
Source: https://github.com/adoptai/noui/tree/main/skills/airbnb-search-places
Command: npx skills add https://github.com/adoptai/noui --skill airbnb-search-places

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Finding Airbnb rentals usually requires manual browsing, clicking, and date/guest filtering inside a UI—slow, brittle, and hard to automate reliably.

Core Features & Use Cases

  • Place discovery via autocomplete: Retrieves Airbnb place suggestions and returns the needed google_place_id and display name.
  • Stay search by place + dates + guests: Uses the resolved place_id plus check-in/check-out and guest counts to return listing results.
  • No authentication required: Works for anonymous discovery and search flows, with persisted GraphQL calls baked into the workflow.

Quick Start

Ask: "Search Airbnb listings in Paris next weekend for 2 adults and show the top options."

Frequently Asked Questions about airbnb-search-places

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I find Airbnb listings by destination and dates without manual browsing?

Airbnb autocomplete search resolves destination names into google_place_id values and returns matching stay listings for specific dates and guest counts. It calls two hosted Airbnb web API operations to retrieve parsed JSON results.

Can I search Airbnb rentals for a specific number of guests programmatically?

Yes, searching Airbnb rentals by guest count is supported by passing occupancy parameters alongside place ID and dates to a persisted GraphQL endpoint. The workflow filters listing results precisely by the specified number of guests.

Do I need an Airbnb account or authentication to automate rental searches?

No, an Airbnb account or authentication is not required to automate rental searches. This workflow executes deterministic, no-auth calls to hosted Airbnb web API operations for both place autocomplete and stay listing retrieval.

What is the best way to get a Google Place ID for an Airbnb destination?

The best way to get a Google Place ID for an Airbnb destination is to use a place autocomplete API call. This workflow retrieves Airbnb place suggestions and extracts the needed google_place_id and display name for downstream stay searches.

Does this Airbnb search approach support filtering by locale and currency?

Yes, this Airbnb search approach supports filtering by locale and currency. The workflow accommodates travel planning workflows by allowing you to specify locale and currency parameters when retrieving stay listings via the persisted GraphQL request.

What are the limitations of using no-auth Airbnb web API calls for rental searches?

Limitations of using no-auth Airbnb web API calls include relying on anonymous discovery flows and persisted GraphQL endpoints, which may restrict access to personalized pricing, saved wishlists, or account-specific booking features available only to authenticated users.