# Airbnb Listings Scraper (`automly/airbnb-listings-scraper`) Actor

Scrape Airbnb listings by city, search, or URL - prices, ratings, reviews, hosts, amenities, coordinates and photos. Just type a place, no dates or API key needed. Export JSON/CSV.

- **URL**: https://apify.com/automly/airbnb-listings-scraper.md
- **Developed by:** [Automly](https://apify.com/automly) (community)
- **Categories:** Travel, Real estate
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $5.00 / 1,000 results

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/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.
Actors are written with capital "A".

## 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.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## Airbnb Listings Scraper — Prices, Hosts, Reviews & Photos 🏠

**Scrape Airbnb listings by city, search, or listing URL** — get prices, ratings, reviews, hosts, amenities, coordinates, and photos as clean **JSON or CSV**. No API key, no login. Just **type a place** like `Paris` and run — no dates and no URLs required.

### What does Airbnb Listings Scraper do?

Type a destination (or paste an Airbnb search/listing URL) and get every matching listing as one structured row. It reads Airbnb's public listing data — no Airbnb API, no account, no token.

- **Search Airbnb by city / place** — just type `Paris`, `New York`, `Lisbon`
- **Scrape a search URL** — paste any `airbnb.com/s/...` results page
- **Scrape a single listing** — paste a `airbnb.com/rooms/...` URL
- **Listing details** — bedrooms, beds, host, rating, reviews, amenities, coordinates
- **No dates required** — browse a market without picking check-in/out
- Export to **JSON, CSV, Excel, or XML**

### How to scrape Airbnb without the API

Airbnb has no public listings API. This actor reads the public listing data the site already serves — so you get prices, ratings, hosts, and photos with **no API key and no login**. Just give it a place or a URL.

### What data can you extract from Airbnb?

| Field | Description |
|-------|-------------|
| `listingId`, `listingUrl` | Airbnb room id + canonical URL |
| `title`, `description`, `propertyType`, `roomType` | Listing name, blurb, type (entire home / private room) |
| `location`, `latitude`, `longitude` | Place + exact coordinates |
| `pricePerNight`, `totalPrice`, `currency` | Nightly + total price (clean decimals, your chosen currency) |
| `rating`, `reviewsCount`, `isSuperhost` | Guest rating, review count, superhost flag |
| `hostName`, `hostId` | Host details |
| `guestCapacity`, `bedrooms`, `beds`, `bathrooms` | Capacity + room counts |
| `amenities`, `imageUrls` | Amenity list + all photo URLs |
| `checkIn`, `checkOut`, `scrapedAt` | Dates used + scrape timestamp |

### Airbnb scraping use cases

- **Market & price research** — compare nightly prices across a city or neighborhood
- **Short-term rental analysis** — supply, room types, superhost share, ratings
- **Competitor / comp tracking** — monitor specific listings or areas over time
- **Real estate & investment** — gauge STR demand and pricing for a location
- **Travel tools & aggregators** — power a search or recommendation feature
- **AI / LLM pipelines** — clean listing data for search, RAG, or agents

### How to use

1. Click **Try for free**.
2. In **Search Airbnb**, type a place (`Paris, France`), or paste an Airbnb search or listing URL. Add as many as you want.
3. (Optional) Set dates, guests, price/output options under **Advanced** — or leave them blank.
4. Click **Start**. Export results as JSON, CSV, or Excel, or pull them via the API.

#### Example input

The dead-simple case — a place, nothing else:

```json
{ "search": ["Paris, France"], "maxListings": 100 }
````

Mixed sources + options:

```json
{
  "search": [
    "New York, NY",
    "https://www.airbnb.com/s/Lisbon/homes",
    "https://www.airbnb.com/rooms/12345678"
  ],
  "maxListings": 200,
  "currency": "EUR",
  "includeListingDetails": true,
  "useApifyProxy": true,
  "proxyGroups": ["RESIDENTIAL"]
}
```

### Output example

```json
{
  "listingId": "1701424376938535830",
  "listingUrl": "https://www.airbnb.com/rooms/1701424376938535830",
  "title": "Unique 2 bd Apartment - Grand place view",
  "roomType": "Entire home/apt",
  "location": "Brussels",
  "latitude": 50.8496,
  "longitude": 4.3507,
  "pricePerNight": 299.10,
  "currency": "USD",
  "rating": 5,
  "reviewsCount": 2,
  "isSuperhost": false,
  "hostName": "Camelia",
  "guestCapacity": 6,
  "bedrooms": 2,
  "beds": 4,
  "imageUrls": ["https://a0.muscache.com/im/pictures/..."],
  "scrapedAt": "2026-06-22T12:00:00Z"
}
```

### Input parameters

| Field | Type | Description |
|-------|------|-------------|
| `search` | array | **Primary input.** Place names, Airbnb search URLs, or listing URLs — auto-detected. |
| `maxListings` | integer | Max records to save (1–500). Default 50. |
| `checkIn` / `checkOut` | string | Optional `YYYY-MM-DD` dates. |
| `adults` / `children` / `infants` / `pets` | integer | Optional guest counts. |
| `currency` | string | Price currency (USD, EUR, GBP…). |
| `includeListingDetails` | boolean | Visit listing pages for richer fields. Default `true`. |
| `includeImages` / `includeAmenities` / `includeHostInfo` / `includeReviewsSummary` | boolean | Field toggles. |
| `useApifyProxy` / `proxyGroups` | object/array | Proxy settings (use `RESIDENTIAL`). |

You can also use the legacy `searchUrls`, `listingUrls`, and `locations` fields — but the single `search` field above covers all three.

### How much does it cost to scrape Airbnb?

Cost is mostly Apify platform compute + residential proxy traffic. Airbnb requires a **residential proxy** (it blocks datacenter IPs), so most of the per-listing cost is proxy bandwidth. Start with the free trial to measure your exact volume, then scale.

### FAQ

**Do I need dates to search?**
No. Type a place and run — you get listings without picking check-in/out. Add dates only if you want date-specific pricing.

**Do I need an Airbnb account or API key?**
No. The actor reads public listing data — no login, no token.

**Can I scrape a whole city?**
Yes — the scraper pages through Airbnb's search results automatically (~570 listings per city/area). For even broader coverage, add several searches (neighborhoods or nearby places); set `maxListings` up to 5000.

**Why do I need a residential proxy?**
Airbnb blocks datacenter IPs. Residential proxies (`proxyGroups: ["RESIDENTIAL"]`) look like real users and keep runs reliable.

**Can I scrape a single listing?**
Yes — paste the `airbnb.com/rooms/...` URL into the Search field.

**What export formats are supported?**
JSON, CSV, Excel, and XML — from the Storage tab or the Apify API.

### Related actors

Combine Airbnb data with other travel, real-estate, and review scrapers in the Apify Store to build market dashboards and price-monitoring pipelines.

# Actor input Schema

## `search` (type: `array`):

What to scrape. Type a place — 'Paris, France', 'New York', 'Lisbon' — and that's it. You can also paste an Airbnb search URL or a listing URL (https://www.airbnb.com/rooms/...). Add as many as you want. No dates required.

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

Optional. YYYY-MM-DD. Leave empty to scrape without dates (you still get listings, just no date-specific total price).

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

Optional. YYYY-MM-DD.

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

Number of adult guests.

## `children` (type: `integer`):

Number of child guests.

## `infants` (type: `integer`):

Number of infant guests.

## `pets` (type: `integer`):

Number of pets.

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

Maximum listing records to save (across all searches). The scraper pages through Airbnb's results (~570 per city); add more places to go higher.

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

Currency code for prices (e.g. USD, EUR, GBP).

## `includeListingDetails` (type: `boolean`):

Visit each listing page for richer fields (bedrooms, beds, host, reviews).

## `includeImages` (type: `boolean`):

Include listing image URLs.

## `includeAmenities` (type: `boolean`):

Include amenities when available on listing pages.

## `includeHostInfo` (type: `boolean`):

Include host name, ID, and superhost status when available.

## `includeReviewsSummary` (type: `boolean`):

Include rating and review-count fields when available.

## `searchUrls` (type: `array`):

Optional. Explicit Airbnb search-result URLs (advanced). Most users can ignore this and use the Search field above.

## `listingUrls` (type: `array`):

Optional. Direct Airbnb listing URLs (https://www.airbnb.com/rooms/...).

## `locations` (type: `array`):

Optional. Place queries (same as typing them in the Search field).

## `useApifyProxy` (type: `boolean`):

Route requests through Apify Proxy. Recommended for cloud runs (Airbnb blocks datacenter IPs — use a residential group).

## `proxyGroups` (type: `array`):

Optional Apify Proxy groups, e.g. RESIDENTIAL. Leave empty for the default pool.

## Actor input object example

```json
{
  "search": [
    "Paris, France"
  ],
  "adults": 1,
  "children": 0,
  "infants": 0,
  "pets": 0,
  "maxListings": 50,
  "currency": "USD",
  "includeListingDetails": true,
  "includeImages": true,
  "includeAmenities": true,
  "includeHostInfo": true,
  "includeReviewsSummary": true,
  "useApifyProxy": true
}
```

# Actor output Schema

## `records` (type: `string`):

All Airbnb listing records produced by this run.

## `overview` (type: `string`):

Dataset presented in Apify 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 = {
    "search": [
        "Paris, France"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("automly/airbnb-listings-scraper").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 = { "search": ["Paris, France"] }

# Run the Actor and wait for it to finish
run = client.actor("automly/airbnb-listings-scraper").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{
  "search": [
    "Paris, France"
  ]
}' |
apify call automly/airbnb-listings-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=automly/airbnb-listings-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Airbnb Listings Scraper",
        "description": "Scrape Airbnb listings by city, search, or URL - prices, ratings, reviews, hosts, amenities, coordinates and photos. Just type a place, no dates or API key needed. Export JSON/CSV.",
        "version": "1.0",
        "x-build-id": "80vSIyQg8ouCa7Zzg"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/automly~airbnb-listings-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-automly-airbnb-listings-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/automly~airbnb-listings-scraper/runs": {
            "post": {
                "operationId": "runs-sync-automly-airbnb-listings-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/automly~airbnb-listings-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-automly-airbnb-listings-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "search": {
                        "title": "Search Airbnb",
                        "type": "array",
                        "description": "What to scrape. Type a place — 'Paris, France', 'New York', 'Lisbon' — and that's it. You can also paste an Airbnb search URL or a listing URL (https://www.airbnb.com/rooms/...). Add as many as you want. No dates required.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "checkIn": {
                        "title": "Check-in date",
                        "type": "string",
                        "description": "Optional. YYYY-MM-DD. Leave empty to scrape without dates (you still get listings, just no date-specific total price)."
                    },
                    "checkOut": {
                        "title": "Check-out date",
                        "type": "string",
                        "description": "Optional. YYYY-MM-DD."
                    },
                    "adults": {
                        "title": "Adults",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Number of adult guests.",
                        "default": 1
                    },
                    "children": {
                        "title": "Children",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Number of child guests.",
                        "default": 0
                    },
                    "infants": {
                        "title": "Infants",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Number of infant guests.",
                        "default": 0
                    },
                    "pets": {
                        "title": "Pets",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Number of pets.",
                        "default": 0
                    },
                    "maxListings": {
                        "title": "Maximum listings",
                        "minimum": 1,
                        "maximum": 5000,
                        "type": "integer",
                        "description": "Maximum listing records to save (across all searches). The scraper pages through Airbnb's results (~570 per city); add more places to go higher.",
                        "default": 50
                    },
                    "currency": {
                        "title": "Currency",
                        "type": "string",
                        "description": "Currency code for prices (e.g. USD, EUR, GBP).",
                        "default": "USD"
                    },
                    "includeListingDetails": {
                        "title": "Include listing details",
                        "type": "boolean",
                        "description": "Visit each listing page for richer fields (bedrooms, beds, host, reviews).",
                        "default": true
                    },
                    "includeImages": {
                        "title": "Include images",
                        "type": "boolean",
                        "description": "Include listing image URLs.",
                        "default": true
                    },
                    "includeAmenities": {
                        "title": "Include amenities",
                        "type": "boolean",
                        "description": "Include amenities when available on listing pages.",
                        "default": true
                    },
                    "includeHostInfo": {
                        "title": "Include host info",
                        "type": "boolean",
                        "description": "Include host name, ID, and superhost status when available.",
                        "default": true
                    },
                    "includeReviewsSummary": {
                        "title": "Include review summary",
                        "type": "boolean",
                        "description": "Include rating and review-count fields when available.",
                        "default": true
                    },
                    "searchUrls": {
                        "title": "Search URLs",
                        "type": "array",
                        "description": "Optional. Explicit Airbnb search-result URLs (advanced). Most users can ignore this and use the Search field above.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "listingUrls": {
                        "title": "Listing URLs",
                        "type": "array",
                        "description": "Optional. Direct Airbnb listing URLs (https://www.airbnb.com/rooms/...).",
                        "items": {
                            "type": "string"
                        }
                    },
                    "locations": {
                        "title": "Locations",
                        "type": "array",
                        "description": "Optional. Place queries (same as typing them in the Search field).",
                        "items": {
                            "type": "string"
                        }
                    },
                    "useApifyProxy": {
                        "title": "Use Apify Proxy",
                        "type": "boolean",
                        "description": "Route requests through Apify Proxy. Recommended for cloud runs (Airbnb blocks datacenter IPs — use a residential group).",
                        "default": true
                    },
                    "proxyGroups": {
                        "title": "Proxy groups",
                        "type": "array",
                        "description": "Optional Apify Proxy groups, e.g. RESIDENTIAL. Leave empty for the default pool.",
                        "items": {
                            "type": "string"
                        }
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
