# Immobiliare.it $1💰 Search By URLs and Keywords (`abotapi/immobiliare-it-scraper`) Actor

From $1/1K. Extract property listings from Immobiliare.it with clean structured data including prices, descriptions, GPS coordinates, agency details, photos, and property attributes such as condition, heating, garage, floor, and features. Search by city, filters, or URL. Blazing fast, reliable.

- **URL**: https://apify.com/abotapi/immobiliare-it-scraper.md
- **Developed by:** [AbotAPI](https://apify.com/abotapi) (community)
- **Categories:** Real estate, Automation, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.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.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

## Immobiliare.it Property Scraper

Extract property listings from immobiliare.it, Italy's largest property portal. Search by city with filters, or paste search URLs, and get clean structured records: prices, full descriptions, GPS coordinates, agency names and phone numbers, every photo, and a deep set of attributes (condition, heating, garage, features, floor). Quick to run and dependable at any volume.

### Why this scraper

- 35+ fields per listing, with the full Italian description, GPS, agency phone numbers, and the complete photo set on every record.
- Every listing arrives fully populated, so there are no thin results to chase down later.
- Two modes: search by city with filters, or paste any immobiliare.it search URL and let it walk forward.
- Full-resolution photo URLs, not just the cover image.
- Italian and EU proxy support with automatic connection rotation for reliable, large runs.

### Data you get

> Sample shape, values are illustrative placeholders, not from a live listing.

| Field | Example |
| --- | --- |
| id | 00000001 |
| url | https://www.immobiliare.it/annunci/00000001/ |
| title | Sample three room apartment, Roma |
| contract | sale |
| propertyType | Appartamento |
| price | 250000 |
| priceFormatted | € 250.000 |
| priceRange | 200.001 - 300.000 € |
| surface | 90 |
| rooms | 3 |
| bathrooms | 2 |
| bedrooms | 2 |
| floor | 2 piani con ascensore |
| elevator | true |
| condition | Ottimo / Ristrutturato |
| heating | Centralizzato |
| garage | 1 posto auto |
| features | ["balcone", "porta blindata"] |
| latitude | 41.9000 |
| longitude | 12.5000 |
| address | Via di Esempio |
| city | Roma |
| macrozone | Sample Zone |
| description | Full listing description text appears here. |
| photos | ["https://pwm.im-cdn.it/image/000000000/xxl.jpg"] |
| agencyName | Sample Agency |
| agencyPhones | ["+390000000000"] |
| agencyUrl | https://www.immobiliare.it/agenzie-immobiliari/00000/sample-agency/ |

### How to use

Search a single city:

```json
{
  "mode": "search",
  "locations": ["Roma"],
  "contract": "sale",
  "maxPages": 5,
  "proxy": { "useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"], "apifyProxyCountry": "IT" }
}
````

Search with filters:

```json
{
  "mode": "search",
  "locations": ["Milano"],
  "contract": "rent",
  "category": "apartments",
  "minPrice": 800,
  "maxPrice": 1500,
  "minRooms": 2,
  "sortBy": "price-asc",
  "maxPages": 10
}
```

Multiple cities at once:

```json
{
  "mode": "search",
  "locations": ["Torino", "Bologna", "Firenze"],
  "contract": "sale",
  "minSurface": 80,
  "maxListings": 300
}
```

Paste search URLs (the city and filters are read from each URL):

```json
{
  "mode": "url",
  "urls": [
    "https://www.immobiliare.it/vendita-case/napoli/",
    "https://www.immobiliare.it/affitto-case/genova/?prezzoMassimo=1200"
  ],
  "maxPages": 5
}
```

### Input parameters

| Parameter | Type | Default | Description |
| --- | --- | --- | --- |
| mode | string | search | search by city, or url to read pasted search URLs |
| locations | array | \["Roma"] | City names to search (search mode) |
| contract | string | sale | sale (vendita) or rent (affitto) |
| category | string | all | Property type: all, apartments, villas |
| minPrice / maxPrice | integer | none | Price range in euro |
| minSurface / maxSurface | integer | none | Surface range in square metres |
| minRooms / maxRooms | integer | none | Room count range (locali) |
| excludeAuctions | boolean | false | Hide auction listings |
| sortBy | string | relevance | relevance, price-asc, price-desc, newest, surface-desc |
| urls | array | sample | Search URLs to read (url mode) |
| maxPages | integer | 5 | Result pages per city or URL (about 25 listings each) |
| maxListings | integer | 0 | Total cap across all searches (0 = unlimited) |
| proxy | object | IT residential | Proxy configuration |

### Output example

> Sample shape, values are illustrative placeholders, not from a live listing.

```json
{
  "id": 12345678,
  "uuid": "00000000-0000-0000-0000-000000000000",
  "url": "https://www.immobiliare.it/annunci/12345678/",
  "title": "Sample three room apartment, Roma",
  "contract": "sale",
  "propertyType": "Appartamento",
  "category": "Residenziale",
  "price": 250000,
  "priceFormatted": "€ 250.000",
  "priceRange": "200.001 - 300.000 €",
  "currency": "EUR",
  "surface": 90,
  "surfaceMin": 90,
  "surfaceMax": 90,
  "rooms": 3,
  "roomsMin": 3,
  "roomsMax": 3,
  "isProject": false,
  "unitCount": 1,
  "bathrooms": 2,
  "bedrooms": 2,
  "floor": "2 piani con ascensore",
  "elevator": true,
  "condition": "Ottimo / Ristrutturato",
  "heating": "Centralizzato",
  "garage": "1 posto auto",
  "features": ["balcone", "porta blindata"],
  "latitude": 41.9000,
  "longitude": 12.5000,
  "address": "Via di Esempio",
  "region": "Lazio",
  "province": "Roma",
  "city": "Roma",
  "macrozone": "Sample Zone",
  "description": "Full listing description text appears here.",
  "photos": ["https://pwm.im-cdn.it/image/000000000/xxl.jpg"],
  "photoCount": 1,
  "agencyName": "Sample Agency",
  "agencyType": "agency",
  "agencyPhones": ["+390000000000"],
  "agencyUrl": "https://www.immobiliare.it/agenzie-immobiliari/00000/sample-agency/"
}
```

### Multi-unit listings

Some listings are new-construction projects with many units. For those, `isProject` is true, `unitCount` is greater than 1, and a single `surface`/`rooms` value is left empty (it is undefined across many units), while `surfaceMin`/`surfaceMax` and `roomsMin`/`roomsMax` describe the full range. Standard single-unit listings carry exact `surface`/`rooms` with min equal to max.

### Plan requirement

An Apify plan that includes Residential proxy (Starter or higher) is recommended, with the proxy country set to IT for the most reliable results. EU residential pools (FR, DE, ES, NL) are used automatically as alternates. A free plan without Residential proxy may return few or no results.

# Actor input Schema

## `mode` (type: `string`):

search = build searches from city names + filters. url = paste one or more listing-search URLs and walk them forward.

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

City names to search, e.g. Roma, Milano, Torino. Slugification is automatic; accents are stripped. Only applies when mode = search.

## `contract` (type: `string`):

Listing contract type. Only applies when mode = search.

## `category` (type: `string`):

Property category. 'All residential' covers every home type; 'Apartments' and 'Villas' narrow by building type. Only applies when mode = search.

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

Minimum price in euro. Only applies when mode = search.

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

Maximum price in euro. Only applies when mode = search.

## `minSurface` (type: `integer`):

Minimum surface in square metres. Only applies when mode = search.

## `maxSurface` (type: `integer`):

Maximum surface in square metres. Only applies when mode = search.

## `minRooms` (type: `integer`):

Minimum number of rooms (locali). Only applies when mode = search.

## `maxRooms` (type: `integer`):

Maximum number of rooms (locali). Only applies when mode = search.

## `excludeAuctions` (type: `boolean`):

Hide auction listings (aste). Only applies when mode = search.

## `sortBy` (type: `string`):

Result ordering. Only applies when mode = search.

## `urls` (type: `array`):

Paste one or more immobiliare.it listing-search URLs. Multi-URL supported. Filter fields above are ignored in this mode. Pagination starts at the page in the URL and walks forward.

## `maxPages` (type: `integer`):

How many result pages to walk per city/URL (about 25 listings per page).

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

Hard cap on total listings across all searches. 0 means no cap (bounded by maxPages).

## `proxy` (type: `object`):

Residential proxy is strongly recommended. The actor defaults the country to Italy and rotates across EU pools when needed.

## Actor input object example

```json
{
  "mode": "search",
  "locations": [
    "Roma"
  ],
  "contract": "sale",
  "category": "all",
  "excludeAuctions": false,
  "sortBy": "relevance",
  "urls": [
    "https://www.immobiliare.it/vendita-case/milano/"
  ],
  "maxPages": 1,
  "maxListings": 0,
  "proxy": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# Actor output Schema

## `overview` (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 = {
    "locations": [
        "Roma"
    ],
    "urls": [
        "https://www.immobiliare.it/vendita-case/milano/"
    ],
    "proxy": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("abotapi/immobiliare-it-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 = {
    "locations": ["Roma"],
    "urls": ["https://www.immobiliare.it/vendita-case/milano/"],
    "proxy": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    },
}

# Run the Actor and wait for it to finish
run = client.actor("abotapi/immobiliare-it-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 '{
  "locations": [
    "Roma"
  ],
  "urls": [
    "https://www.immobiliare.it/vendita-case/milano/"
  ],
  "proxy": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call abotapi/immobiliare-it-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Immobiliare.it $1💰 Search By URLs and Keywords",
        "description": "From $1/1K. Extract property listings from Immobiliare.it with clean structured data including prices, descriptions, GPS coordinates, agency details, photos, and property attributes such as condition, heating, garage, floor, and features. Search by city, filters, or URL. Blazing fast, reliable.",
        "version": "1.0",
        "x-build-id": "U3yJFxJogiw10tzB9"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/abotapi~immobiliare-it-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-abotapi-immobiliare-it-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/abotapi~immobiliare-it-scraper/runs": {
            "post": {
                "operationId": "runs-sync-abotapi-immobiliare-it-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/abotapi~immobiliare-it-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-abotapi-immobiliare-it-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",
                "required": [
                    "mode"
                ],
                "properties": {
                    "mode": {
                        "title": "Search mode",
                        "enum": [
                            "search",
                            "url"
                        ],
                        "type": "string",
                        "description": "search = build searches from city names + filters. url = paste one or more listing-search URLs and walk them forward.",
                        "default": "search"
                    },
                    "locations": {
                        "title": "Cities",
                        "type": "array",
                        "description": "City names to search, e.g. Roma, Milano, Torino. Slugification is automatic; accents are stripped. Only applies when mode = search.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "contract": {
                        "title": "Buy or rent",
                        "enum": [
                            "sale",
                            "rent"
                        ],
                        "type": "string",
                        "description": "Listing contract type. Only applies when mode = search.",
                        "default": "sale"
                    },
                    "category": {
                        "title": "Property type",
                        "enum": [
                            "all",
                            "apartments",
                            "villas"
                        ],
                        "type": "string",
                        "description": "Property category. 'All residential' covers every home type; 'Apartments' and 'Villas' narrow by building type. Only applies when mode = search.",
                        "default": "all"
                    },
                    "minPrice": {
                        "title": "Min price (EUR)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Minimum price in euro. Only applies when mode = search."
                    },
                    "maxPrice": {
                        "title": "Max price (EUR)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum price in euro. Only applies when mode = search."
                    },
                    "minSurface": {
                        "title": "Min surface (m²)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Minimum surface in square metres. Only applies when mode = search."
                    },
                    "maxSurface": {
                        "title": "Max surface (m²)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum surface in square metres. Only applies when mode = search."
                    },
                    "minRooms": {
                        "title": "Min rooms",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Minimum number of rooms (locali). Only applies when mode = search."
                    },
                    "maxRooms": {
                        "title": "Max rooms",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum number of rooms (locali). Only applies when mode = search."
                    },
                    "excludeAuctions": {
                        "title": "Exclude auctions",
                        "type": "boolean",
                        "description": "Hide auction listings (aste). Only applies when mode = search.",
                        "default": false
                    },
                    "sortBy": {
                        "title": "Sort order",
                        "enum": [
                            "relevance",
                            "price-asc",
                            "price-desc",
                            "newest",
                            "surface-desc"
                        ],
                        "type": "string",
                        "description": "Result ordering. Only applies when mode = search.",
                        "default": "relevance"
                    },
                    "urls": {
                        "title": "Search URLs",
                        "type": "array",
                        "description": "Paste one or more immobiliare.it listing-search URLs. Multi-URL supported. Filter fields above are ignored in this mode. Pagination starts at the page in the URL and walks forward.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxPages": {
                        "title": "Max pages per search",
                        "minimum": 1,
                        "maximum": 500,
                        "type": "integer",
                        "description": "How many result pages to walk per city/URL (about 25 listings per page).",
                        "default": 1
                    },
                    "maxListings": {
                        "title": "Max listings (0 = unlimited)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Hard cap on total listings across all searches. 0 means no cap (bounded by maxPages).",
                        "default": 0
                    },
                    "proxy": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Residential proxy is strongly recommended. The actor defaults the country to Italy and rotates across EU pools when needed."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
