# AirBnb Listings Scraper (`sovanza.inc/airbnb-listings-scraper`) Actor

Airbnb Listings Scraper extracts Airbnb listing data by location, dates, guests, price, and room type. It collects IDs, URLs, titles, prices, ratings, images, coordinates, host details, amenities, and capacity for travel analytics, market research, and monitoring workflows.

- **URL**: https://apify.com/sovanza.inc/airbnb-listings-scraper.md
- **Developed by:** [Sovanza](https://apify.com/sovanza.inc) (community)
- **Categories:** Travel, Real estate, Lead generation
- **Stats:** 2 total users, 1 monthly users, 0.0% runs succeeded, NaN bookmarks
- **User rating**: 5.00 out of 5 stars

## Pricing

from $6.00 / 1,000 listings

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

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 Scraper – Extract Listings, Prices, Hosts & Reviews

Extract Airbnb data at scale for research, lead generation, and market analysis—without coding. This Airbnb Scraper helps you collect detailed listing data including pricing, host information, ratings, review counts, and optional deep detail enrichment from listing pages.

### What is Airbnb Scraper?

Airbnb Listings Scraper is an Apify Actor that scrapes Airbnb search results by **city/location query** and (optionally) opens each listing page (`/rooms/{id}`) to enrich fields such as **host**, **amenities**, **images**, **coordinates**, and a **reviews summary** (when Airbnb exposes it).

It’s designed for:

- Short‑term rental market researchers  
- Agencies doing host/outreach analysis  
- Analysts building dashboards and datasets  
- Teams monitoring price and rating signals over time  

### What This Airbnb Scraper Can Do

- Scrape Airbnb listings by **city/location query** (multiple locations per run)  
- Set **check-in / check-out** dates to compare pricing and availability signals  
- Filter by guest counts, price range, and room type  
- Optionally enable **deep detail scraping** (`includeDetails`) to enrich host/amenities/images/coordinates and reviews summary  
- Export clean data in **CSV/JSON/Excel** via Apify dataset export  

### Why Use This Tool?

Unlike generic scrapers, this actor is built around Airbnb’s listing/search structure and produces a structured dataset that’s ready for:

- Market scans (price ranges, listing density, rating signals)  
- Lead lists for hosts (host id/name + listing URLs)  
- Monitoring runs via schedules (same locations, repeat snapshots)  
- BI ingestion and research workflows  

### Customizable Scraping Options (Input)

#### Date-based search

- `checkIn` / `checkOut` (YYYY-MM-DD) lets you analyze price signals for specific date windows.

#### Location & keywords targeting

- Use `locationQueries` like `"Dubai"`, `"New York, NY"`, `"London, UK"` to target cities, neighborhoods, or regions.

#### Maximum listings control

- `limit` caps total results across all locations (stops once reached).

#### Deep data extraction (optional)

- `includeDetails: true` opens listing pages and enriches additional fields.  
- `maxDetailPages` can limit how many detail pages are visited per location (useful to control runtime).

#### Proxy support

- Use `proxyConfiguration` (residential recommended) for stable runs on Airbnb.

### How to Use Airbnb Scraper on Apify

1. Open the actor on Apify and go to the **Input** tab.  
2. Add one or more `locationQueries`.  
3. Optionally set dates, guests, price range, and room types.  
4. Keep `includeDetails` enabled for richer data (slower, but more complete).  
5. Start the run → open the **Dataset** tab → export JSON/CSV/Excel or use the API.  

### Input configuration

Full schema: `INPUT_SCHEMA.json`.

Example input:

```json
{
  "locationQueries": ["New York, NY", "London, UK"],
  "checkIn": "2026-06-15",
  "checkOut": "2026-06-22",
  "adults": 2,
  "children": 0,
  "infants": 0,
  "pets": 0,
  "minPrice": 50,
  "maxPrice": 300,
  "roomTypes": ["Entire home/apt", "Private room"],
  "currency": "USD",
  "locale": "en-US",
  "limit": 200,
  "includeDetails": true,
  "maxDetailPages": 0,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": ["RESIDENTIAL"],
    "apifyProxyCountry": "US"
  }
}
````

Key fields:

- `locationQueries`: locations to search (one per line)
- `checkIn` / `checkOut`: date window (optional)
- `adults`, `children`, `infants`, `pets`: guest filters
- `minPrice` / `maxPrice`: nightly price filter
- `roomTypes`: filter (Entire home/apt, Private room, Hotel room, Shared room)
- `currency` / `locale`: rendering hints
- `limit`: max total listings across all locations
- `includeDetails`: enable detail-page enrichment
- `maxDetailPages`: limit detail-page visits per location (0 = enrich all)
- `proxyConfiguration`: Apify proxy settings (residential recommended)

### Output

Each dataset item is one listing (see `.actor/dataset_schema.json`). Typical fields:

- **Identity**: `id`, `url`, `title`, `locationQuery`
- **Content/media**: `description`, `thumbnail`, `images`, `roomType`
- **Pricing & rating**: `price`, `rating` (includes review count when available)
- **Host**: `host` (id, name, isSuperHost, profileImage)
- **Location**: `coordinates` (lat/lng) and `personCapacity` (best-effort)
- **Amenities**: `amenities`
- **Reviews (summary)**: `reviews` (best-effort summary object; not individual review texts)
- **Timestamp**: `timestamp`

Example item (simplified):

```json
{
  "id": "1249885166911603587",
  "url": "https://www.airbnb.com/rooms/1249885166911603587",
  "title": "Example listing title",
  "description": "…",
  "thumbnail": "https://a0.muscache.com/…",
  "roomType": "ENTIRE_HOME",
  "price": { "label": "$210", "amount": "$210", "qualifier": "night" },
  "rating": { "guestSatisfaction": 4.72, "reviewsCount": 183 },
  "reviews": { "count": 183, "score": 4.72 },
  "host": { "id": "4258607", "name": "Dennis", "isSuperHost": false, "profileImage": "https://a0.muscache.com/…" },
  "coordinates": { "latitude": 40.7557, "longitude": -73.9692 },
  "personCapacity": 2,
  "locationQuery": "New York, NY",
  "amenities": ["Wifi", "Air conditioning"],
  "images": ["https://a0.muscache.com/…"],
  "timestamp": "2026-03-26T08:11:30.975024Z"
}
```

### Use cases

- **Short-term rental market research**: compare price signals and listing density by area
- **Lead generation / outreach research**: collect host + listing URLs for analysis workflows
- **Competitor analysis**: review counts, ratings, room types, amenities mix
- **Travel & hospitality analytics**: build datasets for dashboards or investment research

### FAQ

#### What data can I extract using this Airbnb scraper?

Listings with IDs, URLs, titles, prices, rating/review counts, and (when `includeDetails` is enabled) host, amenities, images, coordinates, and best‑effort reviews summary.

#### Can I scrape listings for specific locations?

Yes—use `locationQueries` (cities, neighborhoods, or regions).

#### Does it support date-based pricing analysis?

Yes—set `checkIn` and `checkOut`.

#### Can I limit how many listings are scraped?

Yes—use `limit` (total across all locations) and optionally `maxDetailPages` to control enrichment runtime.

#### Does it collect full review text?

No—this actor captures **rating and review counts**, plus a **reviews summary object** when available. It does not extract full review text threads.

#### Is proxy support available?

Yes—use `proxyConfiguration` (residential recommended for stability).

#### In what format will I receive the data?

Export **JSON, CSV, or Excel** via Apify dataset export.

### Actor permissions

This actor is designed to run with **limited permissions**: it reads input and writes dataset items.

### Limitations

- Airbnb frontend/API structures can change; some fields are best-effort.
- For large runs, increase timeout/memory and use residential proxy.
- Reviews are **summary-level**, not full comment text.

### License

MIT (see `LICENSE`).

### Get started

Add your target `locationQueries`, set dates/filters, keep `includeDetails` enabled for richer data, and run the actor on Apify to export your dataset.

# Actor input Schema

## `locationQueries` (type: `array`):

List of locations to search (e.g. "New York, NY", "London, UK").

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

Check-in date (YYYY-MM-DD).

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

Check-out date (YYYY-MM-DD).

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

Number of adults.

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

Number of children.

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

Number of infants.

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

Number of pets. Only properties that allow pets will be shown.

## `minPrice` (type: `integer`):

Minimum price per night (in currency units).

## `maxPrice` (type: `integer`):

Maximum price per night (in currency units).

## `roomTypes` (type: `array`):

Filter by room type: Entire home/apt, Private room, Hotel room, Shared room.

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

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

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

Locale for the site (e.g. en-US).

## `limit` (type: `integer`):

Maximum total number of listings to scrape across all location queries. The scraper distributes this cap across locations, stopping as soon as the total is reached.

## `includeDetails` (type: `boolean`):

If true, the scraper opens each listing detail page (/rooms/{id}) to enrich fields like description, host, coordinates, amenities, images, and reviews. Enabled by default for complete data. Disable to scrape faster with basic data only.

## `maxDetailPages` (type: `integer`):

Maximum number of listing detail pages to visit per location when 'Include detail data' is enabled. Set to 0 (default) to enrich all collected listings. Useful for limiting run time.

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

Apify proxy settings. Use residential proxy for best results.

## Actor input object example

```json
{
  "locationQueries": [
    "New York, NY"
  ],
  "checkIn": "",
  "checkOut": "",
  "adults": 2,
  "children": 0,
  "infants": 0,
  "pets": 0,
  "currency": "USD",
  "locale": "en-US",
  "limit": 200,
  "includeDetails": true,
  "maxDetailPages": 0,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

# Actor output Schema

## `listings` (type: `string`):

Scraped Airbnb listings in the default dataset.

# 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 = {
    "locationQueries": [
        "New York, NY"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("sovanza.inc/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 = { "locationQueries": ["New York, NY"] }

# Run the Actor and wait for it to finish
run = client.actor("sovanza.inc/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 '{
  "locationQueries": [
    "New York, NY"
  ]
}' |
apify call sovanza.inc/airbnb-listings-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "AirBnb Listings Scraper",
        "description": "Airbnb Listings Scraper extracts Airbnb listing data by location, dates, guests, price, and room type. It collects IDs, URLs, titles, prices, ratings, images, coordinates, host details, amenities, and capacity for travel analytics, market research, and monitoring workflows.",
        "version": "0.0",
        "x-build-id": "7WyQIsQCppZNeJjq5"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/sovanza.inc~airbnb-listings-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-sovanza.inc-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/sovanza.inc~airbnb-listings-scraper/runs": {
            "post": {
                "operationId": "runs-sync-sovanza.inc-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/sovanza.inc~airbnb-listings-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-sovanza.inc-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": {
                    "locationQueries": {
                        "title": "Location queries",
                        "type": "array",
                        "description": "List of locations to search (e.g. \"New York, NY\", \"London, UK\").",
                        "items": {
                            "type": "string"
                        }
                    },
                    "checkIn": {
                        "title": "Check-in date",
                        "type": "string",
                        "description": "Check-in date (YYYY-MM-DD).",
                        "default": ""
                    },
                    "checkOut": {
                        "title": "Check-out date",
                        "type": "string",
                        "description": "Check-out date (YYYY-MM-DD).",
                        "default": ""
                    },
                    "adults": {
                        "title": "Adults",
                        "minimum": 0,
                        "maximum": 16,
                        "type": "integer",
                        "description": "Number of adults.",
                        "default": 2
                    },
                    "children": {
                        "title": "Children",
                        "minimum": 0,
                        "maximum": 15,
                        "type": "integer",
                        "description": "Number of children.",
                        "default": 0
                    },
                    "infants": {
                        "title": "Infants",
                        "minimum": 0,
                        "maximum": 5,
                        "type": "integer",
                        "description": "Number of infants.",
                        "default": 0
                    },
                    "pets": {
                        "title": "Pets",
                        "minimum": 0,
                        "maximum": 5,
                        "type": "integer",
                        "description": "Number of pets. Only properties that allow pets will be shown.",
                        "default": 0
                    },
                    "minPrice": {
                        "title": "Min price",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Minimum price per night (in currency units)."
                    },
                    "maxPrice": {
                        "title": "Max price",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum price per night (in currency units)."
                    },
                    "roomTypes": {
                        "title": "Room types",
                        "type": "array",
                        "description": "Filter by room type: Entire home/apt, Private room, Hotel room, Shared room.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "currency": {
                        "title": "Currency",
                        "type": "string",
                        "description": "Currency code for prices (e.g. USD, EUR).",
                        "default": "USD"
                    },
                    "locale": {
                        "title": "Locale",
                        "type": "string",
                        "description": "Locale for the site (e.g. en-US).",
                        "default": "en-US"
                    },
                    "limit": {
                        "title": "Max total listings",
                        "minimum": 1,
                        "maximum": 500,
                        "type": "integer",
                        "description": "Maximum total number of listings to scrape across all location queries. The scraper distributes this cap across locations, stopping as soon as the total is reached.",
                        "default": 200
                    },
                    "includeDetails": {
                        "title": "Include detail data",
                        "type": "boolean",
                        "description": "If true, the scraper opens each listing detail page (/rooms/{id}) to enrich fields like description, host, coordinates, amenities, images, and reviews. Enabled by default for complete data. Disable to scrape faster with basic data only.",
                        "default": true
                    },
                    "maxDetailPages": {
                        "title": "Max detail pages",
                        "minimum": 0,
                        "maximum": 500,
                        "type": "integer",
                        "description": "Maximum number of listing detail pages to visit per location when 'Include detail data' is enabled. Set to 0 (default) to enrich all collected listings. Useful for limiting run time.",
                        "default": 0
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Apify proxy settings. Use residential proxy for best results.",
                        "default": {
                            "useApifyProxy": true,
                            "apifyProxyGroups": [
                                "RESIDENTIAL"
                            ],
                            "apifyProxyCountry": "US"
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
