Airbnb URL Finder — listing discovery avatar

Airbnb URL Finder — listing discovery

Pricing

from $1.10 / 1,000 listing urls

Go to Apify Store
Airbnb URL Finder — listing discovery

Airbnb URL Finder — listing discovery

Scrape airbnb.com — enumerate every listing URL for a city or neighborhood · return listing id URL & name · the cheapest way to map available stays. Incremental mode tracks new and changed listings across scheduled runs.

Pricing

from $1.10 / 1,000 listing urls

Rating

0.0

(0)

Developer

Black Falcon Data

Black Falcon Data

Maintained by Community

Actor stats

1

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Share

What does Airbnb URL Finder do?

Airbnb URL Scraper discovers Airbnb listing URLs from airbnb.com. It is the cheapest, fastest way to enumerate stays before scraping full records. Pass one or more locations and get every listing URL for each area — the listing id, its canonical room URL, and name. Coverage runs past the first page, so large cities come back complete. Filter by nightly price band or room type, or keep only listings within a lat/long radius. You can also paste a search or room URL straight from your browser. Output is clean, structured JSON.

How to use this actor

  • 👉 Register for a free Apify account — no credit card required.
  • 🎉 Just click Sign up free on Apify → and complete a quick signup.
  • 💰 A free Apify account includes $5 in monthly credits — enough to test this actor.
  • ⏳ Scrape during the free trial, with no commitment or upfront payment required.

Key features

  • 🗺️ Full-city URL discovery — pass one or more locations (a city, a neighborhood, or "City, ST") and get back every Airbnb listing URL for each area — not just the first page the site shows — so large cities come back complete. Each row is the listing id, its canonical room URL, and name. It is the cheapest way to enumerate stays before paying to scrape full records.
  • 🔗 Clean, canonical room URLs — every result is a canonical airbnb.com/rooms/{id} URL plus the listing id, deduplicated across the whole run — ready to feed straight into the full Airbnb Scraper, a queue, or your own pipeline.
  • 📋 Paste search or room URLs — build the search you want on airbnb.com, copy the URL from your browser, and paste it — the location and filters are read from the URL. Paste individual room URLs too to normalize them into clean URL rows.
  • 🧱 Minimal, ready-to-pipe rows — results are tiny, flat JSON rows (id + URL + name) that drop straight into a database, queue, or downstream scraper without reshaping.
  • 🧹 Empty-field stripping — drop null, empty-string, and empty-array fields from each record before push. Smaller payloads for AI agents and dashboards that already handle missing fields gracefully.
  • 🔌 MCP connectors — export your results into Notion via Apify's MCP connectors — a clean run-summary page, no glue code. Opt-in via the App connector field; deterministic field-mapping, no AI. Built on Apify's connector framework, so more destinations open up as their catalog grows.

What data can you extract from Airbnb?

Each result includes Core property fields (listingId, listingUrl, name, priceAmount, and scrapedAt). In standard mode, all fields are always present — unavailable data points are returned as null, never omitted. In compact mode, only core fields are returned.

Enable detail enrichment in the input to fetch each record's detail page — extra fields the search results omit.

Input

The main inputs are a search keyword and a result limit. Additional filters and options are available in the input schema.

Key parameters:

  • searchLocations — One or more places: a city, a neighborhood, or "City, ST" (e.g. "New York, NY"). Each is searched independently. Leave empty if you only use Start URLs.
  • startUrls — Paste Airbnb room URLs (e.g. https://www.airbnb.com/rooms/12345678) or search-result URLs. Room URLs become URL rows directly; search URLs read their location from the URL and the filters below still apply.
  • maxResults — Maximum listing URLs to return (0 = full coverage). Full coverage works even for very large cities. (default: 100)
  • maxQueries — Optional hard ceiling on how much work full-coverage runs do. Leave empty for the default. Lower it to cap cost on very dense areas.
  • priceMin — Only return URLs for listings at or above this nightly price.
  • priceMax — Only return URLs for listings at or below this nightly price.
  • roomTypes — Restrict to one or more room types. Leave empty for all. (default: [])
  • centerLat — Optional radius filter — center latitude (decimal, e.g. 40.7128). Combine with Center Longitude + Radius to keep only listings within the radius.
  • centerLng — Radius filter — center longitude (decimal, e.g. -74.0060).
  • radiusKm — Keep only listings within this many kilometres of the center point.
  • excludeEmptyFields — Drop null / empty-string fields from each URL record. (default: false)
  • telegramToken — Telegram bot token (from @BotFather). Required for Telegram notifications.
  • ...and 19 more parameters

Input examples

All listing URLs in a city — Search one or more locations and set Max Results to 0 for full coverage.

→ Every listing URL for the area — listing id, canonical room URL, and name.

{
"searchLocations": [
"New York, NY"
],
"maxResults": 0
}

Listing URLs within a radius — Add a center lat/long and radius to keep only nearby listings.

→ Listing URLs within the radius, each with listing id and URL.

{
"searchLocations": [
"Austin, TX"
],
"centerLat": "30.2672",
"centerLng": "-97.7431",
"radiusKm": 5,
"maxResults": 2000
}

Entire-home listing URLs — Filter discovery by room type.

→ Listing URLs for entire-home stays in the city.

{
"searchLocations": [
"Miami, FL"
],
"roomTypes": [
"Entire home/apt"
],
"maxResults": 1000
}

Paste a search URL — Build the search you want on airbnb.com, copy the URL, and paste it. The location is read from the URL.

→ Listing URLs from exactly that search, deduplicated.

{
"startUrls": [
"https://www.airbnb.com/s/Seattle--WA/homes"
],
"maxResults": 500
}

Compact output for LLM / MCP pipelines — Turn on Compact to trim each row to its core fields.

→ A slimmer URL row per listing — ideal for feeding downstream LLM or MCP pipelines.

{
"searchLocations": [
"Denver, CO"
],
"compact": true,
"maxResults": 500
}

Output

Each run produces a dataset of structured property records. Results can be downloaded as JSON, CSV, or Excel from the Dataset tab in Apify Console.

Example property record

{
"listingId": "airbnb.com:12345678",
"listingUrl": "https://www.airbnb.com/rooms/12345678",
"name": "Sunny 1BR loft near Central Park",
"priceAmount": 168,
"sourceDomain": "airbnb.com",
"scrapedAt": "2026-06-22T10:00:00.000Z",
"contentHash": "12345678"
}

How to scrape Airbnb

  1. Go to Airbnb URL Finder in Apify Console.
  2. Enter a search keyword.
  3. Set maxResults to control how many results you need.
  4. Enable includeDetails if you need the extra detail-page fields.
  5. Click Start and wait for the run to finish.
  6. Export the dataset as JSON, CSV, or Excel.

Use cases

  • Extract property data from Airbnb for market research and competitive analysis.
  • Track pricing trends across regions and categories over time.
  • Feed structured data into AI agents, MCP tools, and automated pipelines using compact mode.
  • Export clean, structured data to dashboards, spreadsheets, or data warehouses.

How much does it cost to scrape Airbnb?

Airbnb URL Finder uses pay-per-event pricing. You pay a small fee when the run starts and then for each result that is actually produced.

  • Run start: $0.005 per run
  • Per result: $0.004 per property record

Example costs:

  • 10 results: $0.045
  • 25 results: $0.11
  • 100 results: $0.41
  • 200 results: $0.81
  • 500 results: $2

FAQ

How many results can I get from Airbnb?

The number of results depends on the search query and available properties on Airbnb. Use the maxResults parameter to control how many results are returned per run.

Can I integrate Airbnb URL Finder with other apps?

Yes. Airbnb URL Finder works with Apify's integrations to connect with tools like Zapier, Make, Google Sheets, Slack, and more. You can also use webhooks to trigger actions when a run completes.

Can I use Airbnb URL Finder with the Apify API?

Yes. You can start runs, manage inputs, and retrieve results programmatically through the Apify API. Client libraries are available for JavaScript, Python, and other languages.

Can I use Airbnb URL Finder through an MCP Server?

Yes. Apify provides an MCP Server that lets AI assistants and agents call this actor directly. Use compact mode, a single descriptionFormat, and excludeEmptyFields to keep payloads manageable for LLM context windows.

This actor extracts publicly available data from Airbnb. Web scraping of public information is generally considered legal, but you should always review the target site's terms of service and ensure your use case complies with applicable laws and regulations, including GDPR where relevant.

Your feedback

If you have questions, need a feature, or found a bug, please open an issue on the actor's page in Apify Console. Your feedback helps us improve.

You might also like

Getting started with Apify

New to Apify? Create a free account with $5 credit — no credit card required.

  1. Sign up — $5 platform credit included
  2. Open this actor and configure your input
  3. Click Start — export results as JSON, CSV, or Excel

Need more later? See Apify pricing.

Disclaimer

This actor accesses only publicly available data on airbnb.com. You are responsible for how you use the extracted data — in particular any personal information such as names, phone numbers, or email addresses — and for complying with Airbnb URL Finder's terms of use, applicable data-protection law (including the GDPR where it applies), and the anti-spam rules of your jurisdiction.

This actor is not affiliated with, endorsed by, or connected to Airbnb URL Finder.

Search keywords

airbnb scraper, airbnb api, apify airbnb, airbnb data extraction, airbnb url finder scraper, airbnb url finder api, apify airbnb url finder, airbnb url finder data extraction, airbnb.com scraper, airbnb.com data, airbnb.com api, property listings scraper, real estate data, property data.