# Airbnb Host Portfolio Scraper — All Listings by Host (`noahadler/airbnb-host-portfolio`) Actor

Scrape an Airbnb host's public portfolio: every listing they manage with title, type, rating, reviews and Superhost flag. Map portfolios from host URL, host ID or listing URL. B2B STR ops and competitor host intel.

- **URL**: https://apify.com/noahadler/airbnb-host-portfolio.md
- **Developed by:** [Noah Adler](https://apify.com/noahadler) (community)
- **Categories:** Travel, Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.00 / 1,000 listings

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

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

## 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 Host Portfolio Scraper

**Airbnb host portfolio** / **Airbnb listings by host** API: paste a host URL (or listing URL) and get every public listing they manage — title, type, rating, reviews, photo, Superhost flag.

B2B angle: **portfolio map**, not email scraping.

> Works via Airbnb’s public GraphQL (`UserProfileBeehiveListingQuery`). Proxy optional; enable if blocked.

**Why this Actor:** Host URL / ID / listing URL · Paginated portfolio · One Dataset row per listing · Pairs with Occupancy (#02)

***

### Table of contents

1. [What this Actor does](#what-this-actor-does)
2. [What you get](#what-you-get)
3. [Features](#features)
4. [Input](#input)
5. [Output example](#output-example)
6. [Output fields](#output-fields)
7. [Quick start (API)](#quick-start-api)
8. [Use cases](#use-cases)
9. [Limitations](#limitations)
10. [FAQ](#faq)
11. [Keywords](#keywords)

***

### What this Actor does

| Step | Action |
|------|--------|
| 1 | Resolve `hostId` from host URL, ID, or listing page |
| 2 | Call Beehive listings GraphQL (pages of 12) |
| 3 | Normalize listing + host fields |
| 4 | Push **one row per listing** |

***

### What you get

**Host**

- `hostId`, `hostUrl`, `hostName` (when resolvable)
- `isSuperhost`, `listingsCount`

**Each listing**

- Title, property/room type
- Rating + review count
- Cover photo URL

***

### Features

| Capability | Detail |
|------------|--------|
| **Flexible input** | Host URL, host ID, or listing URL |
| **Pagination** | Up to `maxListings` (default 200) |
| **No browser** | HTTP + curl\_cffi |
| **Composable** | Feed listing IDs into Occupancy / Calendar Actors |

***

### Input

| Field | Required | Description |
|-------|----------|-------------|
| `startUrls` | Cond. | Host / listing URLs or IDs |
| `hostIds` | Cond. | Numeric host IDs |
| `maxListings` | No | Cap per host |
| `locale` / `currency` | No | Request context |
| `proxyConfiguration` | No | Optional |

#### Example

```json
{
  "startUrls": ["https://www.airbnb.com/users/show/107434423"],
  "maxListings": 50
}
```

***

### Output example

```json
{
  "hostId": "107434423",
  "hostUrl": "https://www.airbnb.com/users/show/107434423",
  "isSuperhost": false,
  "listingsCount": 12,
  "listingId": "12345678",
  "listingUrl": "https://www.airbnb.com/rooms/12345678",
  "title": "Blueground | Lakeview…",
  "propertyType": "Apartment",
  "ratingAverage": 4.8,
  "reviewsCount": 42
}
```

***

### Output fields

| Field | Notes |
|-------|--------|
| `hostId`, `hostUrl`, `hostName` | Host identity |
| `isSuperhost`, `listingsCount` | Portfolio signals |
| `listingId`, `listingUrl`, `title` | Listing |
| `propertyType`, `roomType`, `roomTypeCategory` | Type |
| `ratingAverage`, `reviewsCount`, `pictureUrl` | Social proof |
| `scrapedAt`, `error`, `errorMessage` | Meta |

***

### Quick start (API)

```python
from apify_client import ApifyClient

client = ApifyClient("<YOUR_TOKEN>")
run = client.actor("YOUR_USERNAME/airbnb-host-portfolio").call(
    run_input={
        "startUrls": ["https://www.airbnb.com/users/show/107434423"],
        "maxListings": 50,
    }
)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item["listingId"], item["title"])
```

***

### Use cases

- Competitor host portfolio maps
- Multi-listing operator discovery
- Feed listings into Calendar / Occupancy Actors
- STR ops / agency prospecting (public data only)

***

### Limitations

- No emails / phones (out of scope).
- `/users/show` may redirect to login in browser; GraphQL Beehive still works with API key.
- `hostName` best when input is a listing URL (parsed from PDP).
- `listingsCount` = listings returned (capped by `maxListings`).
- Respect Airbnb Terms of Service.

***

### FAQ

**Listing URL instead of host?**\
Yes — the Actor reads `hostId` from the listing page, then pulls the portfolio.

**Occupancy for the whole portfolio?**\
Pipe `listingId`s into `airbnb-occupancy-adr-revpar`.

**Blocked?**\
Enable Apify proxy in input.

***

### Keywords

airbnb host portfolio, airbnb host listings, airbnb host scraper, listings by host, airbnb superhost portfolio, airbnb multi listing host, str host map

# Actor input Schema

## `startUrls` (type: `array`):

Airbnb host URLs (users/show/…), listing URLs (rooms/…), or numeric IDs. Listing URLs resolve to the owning host first.

## `hostIds` (type: `array`):

Numeric Airbnb host IDs (optional convenience field).

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

Cap listings returned per host (pagination via Beehive).

## `locale` (type: `string`):

Locale.

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

Currency.

## `proxyConfiguration` (type: `object`):

Optional. Often works without proxy; enable if blocked.

## Actor input object example

```json
{
  "startUrls": [
    "https://www.airbnb.com/users/show/107434423"
  ],
  "maxListings": 200,
  "locale": "en",
  "currency": "EUR",
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `portfolioListings` (type: `string`):

No description

# 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 = {
    "startUrls": [
        "https://www.airbnb.com/users/show/107434423"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("noahadler/airbnb-host-portfolio").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 = { "startUrls": ["https://www.airbnb.com/users/show/107434423"] }

# Run the Actor and wait for it to finish
run = client.actor("noahadler/airbnb-host-portfolio").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 '{
  "startUrls": [
    "https://www.airbnb.com/users/show/107434423"
  ]
}' |
apify call noahadler/airbnb-host-portfolio --silent --output-dataset

```

## MCP server setup

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

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/9vCUrSa77iX1pMeih/builds/aFonKHAWpNCGOU0VY/openapi.json
