# Airbnb Listing Detail — Amenities, Ratings & House Rules (`nobin2k/airbnb-listing-detail`) Actor

Full detail for any Airbnb listing: every amenity, the six category ratings, house rules and what reviewers actually talk about.

- **URL**: https://apify.com/nobin2k/airbnb-listing-detail.md
- **Developed by:** [Trần Chính](https://apify.com/nobin2k) (community)
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-usage

## What's an Apify Actor?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For examples already wired to this Actor's own input schema, see the [API](#api) section below.

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).

# README

## Airbnb Listing Detail — Amenities, Ratings & House Rules

Name a city, or pass listing URLs or IDs, and get back everything the search results page
leaves out.

Search scrapers hand you a price and a star rating. This one opens each listing
and returns the detail people actually decide on: every amenity, the six
category ratings broken out, the full house rules, and the themes reviewers keep
bringing up.

### Pairs with the search scraper

Run **Airbnb Scraper** to collect listings for a city, then feed its
`listing_id` column straight into this Actor's *Airbnb listings* field.

### What you get per listing

```json
{
  "listing_id": "29754402",
  "url": "https://www.airbnb.com/rooms/29754402",
  "rating": 4.98,
  "reviews_count": 412,
  "category_ratings": {
    "cleanliness": 5.0,
    "accuracy": 4.9,
    "checkin": 5.0,
    "communication": 5.0,
    "location": 4.9,
    "value": 4.8
  },
  "amenities": ["Kitchen", "Wifi", "Dedicated workspace", "Washer", "Air conditioning"],
  "amenities_count": 10,
  "amenities_unavailable": ["Free parking"],
  "house_rules": [
    {"type": "HOUSE_RULES_CHECK_IN_WINDOW", "title": "Check-in after 3:00 PM", "description": null},
    {"type": "HOUSE_RULES_QUIET_HOURS", "title": "Quiet hours", "description": "10:00 PM - 6:00 AM"}
  ],
  "review_themes": [
    {"theme": "Location", "mentions": 47},
    {"theme": "Cleanliness", "mentions": 20}
  ]
}
```

### Why the category ratings matter

An overall 4.86 tells you very little. Split out, it might be cleanliness 4.9
and check-in 4.7 — and if you manage a property, that gap is the thing you can
actually fix. `review_themes` gives you the same signal in words: what guests
mention, and how often.

### Use it for

- **Competitive benchmarking** — compare your amenities and category scores
  against every comparable listing in your area
- **Revenue management** — see which amenities cluster with higher-rated
  listings in a market
- **Guest-experience audits** — find the category dragging a portfolio down
- **Market research** — amenity penetration across a city

### Two ways to use it

**Just name a city.** Leave *Airbnb listings* empty, type a location, and the
Actor finds the listings itself — nothing to look up first.

```json
{"location": "Lisbon, Portugal", "maxListings": 50}
```

**Or pass listings you already have.** Paste room URLs or IDs, for example the
`listing_id` column from **Airbnb Scraper**.

```json
{"listings": ["https://www.airbnb.com/rooms/29754402", "1427417218567220620"]}
```

### Input

| Field | What it does |
|---|---|
| **Airbnb listings** | Room URLs or bare IDs. Mixed formats are fine |
| **Currency / Check-in / Check-out / Adults** | Context the page is loaded with |

```json
{
  "listings": [
    "https://www.airbnb.com/rooms/29754402",
    "1427417218567220620"
  ]
}
```

### Reliability

- Retries with exponential backoff on network errors
- A listing that fails to load is reported and **never charged**
- If every listing fails, the run fails loudly rather than handing you an empty
  dataset

### Pricing

Pay per listing detail returned. No subscription.

### FAQ

**Can I paste a whole search export?**
Yes. Unrecognised entries are skipped and reported; the run continues.

**Why is `amenities_unavailable` usually empty?**
Airbnb only marks amenities as explicitly unavailable on some listings. Empty
means Airbnb showed none, not that the scraper missed them.

**Is this legal?**
It collects publicly visible listing information only — no personal data, no
logged-in pages. How you use the data is your responsibility.

# Actor input Schema

## `listings` (type: `array`):

Optional. Airbnb room URLs or listing IDs. Leave this empty to search by location instead — anything here takes priority over the location below.

## `location` (type: `string`):

City, region or country — for example 'Lisbon, Portugal' or 'Austin, Texas'. Used when the listings field above is empty.

## `maxListings` (type: `integer`):

How many listings to pull details for when searching by location.

## `currency` (type: `string`):

Currency used when the page is loaded.

## `checkIn` (type: `string`):

YYYY-MM-DD. Optional.

## `checkOut` (type: `string`):

YYYY-MM-DD. Optional.

## `adults` (type: `integer`):

Guest count used when loading the page.

## `proxyUrl` (type: `string`):

Optional. Only needed for very large batches.

## Actor input object example

```json
{
  "location": "Lisbon, Portugal",
  "maxListings": 50,
  "currency": "USD",
  "adults": 2
}
```

# Actor output Schema

## `results` (type: `string`):

Amenities, category ratings, house rules and review themes per listing.

## `csv` (type: `string`):

The same rows as a spreadsheet-ready CSV download.

## `consoleUrl` (type: `string`):

Browse and filter the results in the Console.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "location": "Lisbon, Portugal"
};

// Run the Actor and wait for it to finish
const run = await client.actor("nobin2k/airbnb-listing-detail").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "location": "Lisbon, Portugal" }

# Run the Actor and wait for it to finish
run = client.actor("nobin2k/airbnb-listing-detail").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "location": "Lisbon, Portugal"
}' |
apify call nobin2k/airbnb-listing-detail --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,nobin2k/airbnb-listing-detail"
        }
    }
}
```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/6DvGbEjoMFV0sl54E/builds/v79yEGHkGdIi7IsbD/openapi.json
