# Magicbricks Property Scraper (`scrapeai/magicbricks-property-scraper`) Actor

Magicbricks is an Indian online real estate platform that helps users buy, sell, and rent residential and commercial properties by providing verified listings, advanced search filters, price trends, and direct contact with property owners, agents, and builders.

- **URL**: https://apify.com/scrapeai/magicbricks-property-scraper.md
- **Developed by:** [ScrapeAI](https://apify.com/scrapeai) (community)
- **Categories:** Real estate, Lead generation, Automation
- **Stats:** 27 total users, 2 monthly users, 100.0% runs succeeded, 1 bookmarks
- **User rating**: 5.00 out of 5 stars

## Pricing

$4.00/month + usage

To use this Actor, you pay a monthly rental fee to the developer. The rent is subtracted from your prepaid usage every month after the free trial period.You also pay for the Apify platform usage, which gets cheaper the higher Apify subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#rental-actors

## 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

## 🏠 Magicbricks Property Scraper - API Based

This Apify actor retrieves real estate data directly through the Magicbricks API. Search by city, property type, and bedrooms to collect structured property information including title, price, location, area, amenities, and images. Perfect for real estate research, price monitoring, and market analysis.

### ✅ Use Cases

- 📊 Monitor property pricing trends
- 🔍 Track property availability across cities
- 📈 Conduct real estate market research
- 💰 Build property comparison databases
- 📋 Generate property listings with specifications

### 📥 Input Configuration

You can customize the actor using the following input fields:

```json
{
    "searchUrl": "https://www.magicbricks.com/property-for-sale/residential-real-estate?bedroom=2,3&proptype=Multistorey-Apartment,Villa&cityName=Bangalore",
    "apiUrl": "",
    "maxProperties": 50,
    "minPrice": 0,
    "maxPrice": 0,
    "minBedrooms": 2,
    "maxBedrooms": 3,
    "sortBy": "premiumRecent"
}
````

#### 🧾 Fields Explained

| Field | Type | Description |
|-------|------|-------------|
| `searchUrl` | string | Magicbricks search URL with filters (city, bedrooms, property type) |
| `apiUrl` | string | Direct Magicbricks API URL. If provided, searchUrl is ignored |
| `maxProperties` | number | Maximum number of properties to retrieve (1-1000) |
| `minPrice` | number | Minimum price filter in INR. Set to 0 for no minimum |
| `maxPrice` | number | Maximum price filter in INR. Set to 0 for no maximum |
| `minBedrooms` | number | Minimum bedrooms (BHK). Set to 0 for no filter |
| `maxBedrooms` | number | Maximum bedrooms (BHK). Set to 0 for no filter |
| `sortBy` | string | Sort order: "premiumRecent", "price\_asc", "price\_desc", "recentFirst", "relevance" |
| `pageNumber` | number | Starting page number for pagination |

### 📤 Output

The actor returns a dataset containing structured property records. Each record includes comprehensive details about the property, suitable for price monitoring, analytics, and market research.

#### 🧩 Sample Output

```json
{
    "property_id": "12345678",
    "property_title": "3 BHK Apartment in Whitefield",
    "property_type": "Multistorey-Apartment",
    "locality": "Whitefield",
    "city": "Bangalore",
    "address": "Whitefield Main Road, Bangalore",
    "bedrooms": 3,
    "bathrooms": 2,
    "carpet_area": 1450,
    "carpet_area_unit": "sqft",
    "floor_number": 5,
    "total_floors": 12,
    "price": 9500000,
    "price_display": "95 Lac",
    "price_per_sqft": 6551,
    "possession_status": "Ready to Move",
    "furnishing": "Semi-Furnished",
    "age_of_property": "New Construction",
    "builder_name": "ABC Developers",
    "project_name": "Green Valley Heights",
    "amenities": ["Gym", "Swimming Pool", "Parking"],
    "image_url": "https://img.staticmb.com/...",
    "listing_url": "https://www.magicbricks.com/..."
}
```

#### 📋 Output Fields

| Field | Type | Description |
|-------|------|-------------|
| `property_id` | string | Unique property identifier |
| `property_title` | string | Property listing title |
| `property_type` | string | Type of property (Apartment, Villa, etc.) |
| `locality` | string | Property locality/area name |
| `city` | string | City where property is located |
| `bedrooms` | integer | Number of bedrooms (BHK) |
| `bathrooms` | integer | Number of bathrooms |
| `carpet_area` | number | Carpet area of the property |
| `carpet_area_unit` | string | Unit of measurement (sqft, sqm) |
| `floor_number` | integer | Floor number of the property |
| `total_floors` | integer | Total floors in the building |
| `price` | number | Property price in INR |
| `price_display` | string | Formatted price for display |
| `price_per_sqft` | number | Price per square foot |
| `possession_status` | string | Possession status (Ready to Move, etc.) |
| `furnishing` | string | Furnishing status |
| `builder_name` | string | Builder/developer name |
| `project_name` | string | Project/society name |
| `amenities` | array | Property amenities list |
| `image_url` | string | Main property image URL |
| `listing_url` | string | Property listing URL on Magicbricks |

### 🔍 Data Source

- ✓ Data fetched exclusively via Magicbricks API (HTTP GET requests)
- ✓ No HTML scraping or DOM parsing
- ✓ Real-time property information directly from Magicbricks
- ✓ Automatic filtering and deduplication

### 🔒 Proxy Configuration

This actor uses standard HTTP headers with optional proxy support for:

- Avoiding IP-based rate limiting or bans
- Accessing location-specific data
- Ensuring stable data retrieval at scale

Configure proxy settings in Apify:

```json
{
  "useApifyProxy": true,
  "apifyProxyGroups": ["RESIDENTIAL"],
  "apifyProxyCountry": "IN"
}
```

### 🚀 How to Use

1. Open the actor in Apify Console
2. Click "Try actor" or create a new task
3. Enter your Magicbricks search URL or API URL
4. Configure optional filters (price range, bedrooms)
5. Run the actor
6. Download results in JSON, CSV, or Excel format

### ⚙️ Advanced Input Example

```json
{
    "apiUrl": "https://www.magicbricks.com/mbsrp/propertySearch.html?editSearch=Y&category=S&propertyType=10002,10003&bedrooms=11701,11702&city=3327&page=1&sortBy=premiumRecent&pType=10002,10003&isNRI=N&multiLang=en",
    "maxProperties": 100,
    "minPrice": 5000000,
    "maxPrice": 20000000,
    "minBedrooms": 2,
    "maxBedrooms": 3,
    "sortBy": "price_asc"
}
```

### 🛠️ Tech Stack

- **Apify SDK** — actor orchestration and data handling
- **Node.js 18+** — runtime environment
- **node-fetch** — HTTP client for API requests
- **Magicbricks API** — exclusive data source for property information

### 📊 Data Processing Features

- ✓ Automatic duplicate detection using Property IDs
- ✓ Filtering by price range and bedroom count
- ✓ Structured data parsing and normalization
- ✓ Comprehensive logging and error handling
- ✓ Schema validation for all output records
- ✓ Pagination support for large result sets

### 🔧 Local Development

#### Installation

```bash
npm install
```

#### Running the Actor

```bash
npm start
```

#### Validation

Validate all generated datasets against the schema:

```bash
node validate-datasets.js
```

#### Code Quality

Format code:

```bash
npm run format
```

Check linting:

```bash
npm run lint
```

### 📂 Project Structure

```
.
├── .actor/                          # Actor configuration
│   ├── actor.json                  # Actor metadata
│   ├── input_schema.json           # Input parameters schema
│   ├── dataset_schema.json         # Output dataset schema
│   ├── input.json                  # Default input
│   ├── input-local.json            # Local development input
│   └── input-production.json       # Production input
├── src/
│   └── main.js                     # Main actor script
├── storage/
│   └── datasets/default/           # Generated datasets
├── package.json                    # Dependencies
├── validate-datasets.js            # Dataset validator
└── README.md                       # This file
```

### 🤝 Support

For issues, questions, or feature requests, please refer to the Apify documentation or contact support.

# Actor input Schema

## `searchUrl` (type: `string`):

Magicbricks search URL. The scraper will automatically capture the API endpoint from network requests. Example: 'https://www.magicbricks.com/property-for-sale/residential-real-estate?bedroom=2,3\&proptype=Multistorey-Apartment\&cityName=Bangalore'

## `maxProperties` (type: `integer`):

Maximum number of properties to retrieve

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

Minimum price filter (in INR). Set to 0 for no minimum.

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

Maximum price filter (in INR). Set to 0 for no maximum.

## `minBedrooms` (type: `integer`):

Minimum number of bedrooms (BHK). Set to 0 for no filter.

## `maxBedrooms` (type: `integer`):

Maximum number of bedrooms (BHK). Set to 0 for no filter.

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

Sort order for search results

## `pageNumber` (type: `integer`):

Starting page number for pagination

## `useProxy` (type: `boolean`):

Use Apify Proxy for requests. Recommended for production to avoid rate limiting.

## `proxyConfig` (type: `object`):

Proxy configuration. Leave default for best results. Using Indian IPs for optimal Magicbricks access.

## Actor input object example

```json
{
  "searchUrl": "https://www.magicbricks.com/property-for-sale/residential-real-estate?bedroom=2,3&proptype=Multistorey-Apartment,Builder-Floor-Apartment,Penthouse,Studio-Apartment,Residential-House,Villa&cityName=Bangalore",
  "maxProperties": 50,
  "minPrice": 0,
  "maxPrice": 0,
  "minBedrooms": 0,
  "maxBedrooms": 0,
  "sortBy": "premiumRecent",
  "pageNumber": 1,
  "useProxy": true,
  "proxyConfig": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "IN"
  }
}
```

# 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 = {
    "searchUrl": "https://www.magicbricks.com/property-for-sale/residential-real-estate?bedroom=2,3&proptype=Multistorey-Apartment,Builder-Floor-Apartment,Penthouse,Studio-Apartment,Residential-House,Villa&cityName=Bangalore",
    "maxProperties": 50,
    "proxyConfig": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ],
        "apifyProxyCountry": "IN"
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("scrapeai/magicbricks-property-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 = {
    "searchUrl": "https://www.magicbricks.com/property-for-sale/residential-real-estate?bedroom=2,3&proptype=Multistorey-Apartment,Builder-Floor-Apartment,Penthouse,Studio-Apartment,Residential-House,Villa&cityName=Bangalore",
    "maxProperties": 50,
    "proxyConfig": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "IN",
    },
}

# Run the Actor and wait for it to finish
run = client.actor("scrapeai/magicbricks-property-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 '{
  "searchUrl": "https://www.magicbricks.com/property-for-sale/residential-real-estate?bedroom=2,3&proptype=Multistorey-Apartment,Builder-Floor-Apartment,Penthouse,Studio-Apartment,Residential-House,Villa&cityName=Bangalore",
  "maxProperties": 50,
  "proxyConfig": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "IN"
  }
}' |
apify call scrapeai/magicbricks-property-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Magicbricks Property Scraper",
        "description": "Magicbricks is an Indian online real estate platform that helps users buy, sell, and rent residential and commercial properties by providing verified listings, advanced search filters, price trends, and direct contact with property owners, agents, and builders.",
        "version": "1.0",
        "x-build-id": "0Zlb6jM2V4wqcoPwH"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/scrapeai~magicbricks-property-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-scrapeai-magicbricks-property-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/scrapeai~magicbricks-property-scraper/runs": {
            "post": {
                "operationId": "runs-sync-scrapeai-magicbricks-property-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/scrapeai~magicbricks-property-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-scrapeai-magicbricks-property-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": {
                    "searchUrl": {
                        "title": "Search URL",
                        "type": "string",
                        "description": "Magicbricks search URL. The scraper will automatically capture the API endpoint from network requests. Example: 'https://www.magicbricks.com/property-for-sale/residential-real-estate?bedroom=2,3&proptype=Multistorey-Apartment&cityName=Bangalore'",
                        "default": ""
                    },
                    "maxProperties": {
                        "title": "Max Properties",
                        "minimum": 1,
                        "maximum": 1000,
                        "type": "integer",
                        "description": "Maximum number of properties to retrieve",
                        "default": 50
                    },
                    "minPrice": {
                        "title": "Minimum Price",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Minimum price filter (in INR). Set to 0 for no minimum.",
                        "default": 0
                    },
                    "maxPrice": {
                        "title": "Maximum Price",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum price filter (in INR). Set to 0 for no maximum.",
                        "default": 0
                    },
                    "minBedrooms": {
                        "title": "Minimum Bedrooms",
                        "minimum": 0,
                        "maximum": 10,
                        "type": "integer",
                        "description": "Minimum number of bedrooms (BHK). Set to 0 for no filter.",
                        "default": 0
                    },
                    "maxBedrooms": {
                        "title": "Maximum Bedrooms",
                        "minimum": 0,
                        "maximum": 10,
                        "type": "integer",
                        "description": "Maximum number of bedrooms (BHK). Set to 0 for no filter.",
                        "default": 0
                    },
                    "sortBy": {
                        "title": "Sort By",
                        "enum": [
                            "premiumRecent",
                            "price_asc",
                            "price_desc",
                            "recentFirst",
                            "relevance"
                        ],
                        "type": "string",
                        "description": "Sort order for search results",
                        "default": "premiumRecent"
                    },
                    "pageNumber": {
                        "title": "Starting Page",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Starting page number for pagination",
                        "default": 1
                    },
                    "useProxy": {
                        "title": "Use Proxy",
                        "type": "boolean",
                        "description": "Use Apify Proxy for requests. Recommended for production to avoid rate limiting.",
                        "default": true
                    },
                    "proxyConfig": {
                        "title": "Proxy Configuration",
                        "type": "object",
                        "description": "Proxy configuration. Leave default for best results. Using Indian IPs for optimal Magicbricks access.",
                        "default": {
                            "useApifyProxy": true,
                            "apifyProxyGroups": [
                                "RESIDENTIAL"
                            ],
                            "apifyProxyCountry": "IN"
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
