# Marktplaats.nl Scraper (`haketa/marktplaats-scraper`) Actor

Scrape listings from Marktplaats.nl, 2dehands.be and 2ememain.be — Benelux's largest classifieds platforms with 10M+ active listings. Extract price, seller info, condition, location and category via internal JSON API. No browser needed.

- **URL**: https://apify.com/haketa/marktplaats-scraper.md
- **Developed by:** [Haketa](https://apify.com/haketa) (community)
- **Categories:** Developer tools, Automation, Other
- **Stats:** 3 total users, 2 monthly users, 100.0% runs succeeded, 1 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.50 / 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

## 🛒 Marktplaats.nl Scraper

Extract classified listings from **[Marktplaats.nl](https://www.marktplaats.nl)** — the Netherlands' largest classifieds platform with 10M+ active listings and 8M+ monthly visitors. Also supports **2dehands.be** (Belgium Flemish) and **2ememain.be** (Belgium French) — all three share the same backend.

[![Apify Actor](https://img.shields.io/badge/Apify-Actor-blue)](https://apify.com)
[![No Browser](https://img.shields.io/badge/Engine-Direct%20JSON%20API-brightgreen)]()
[![3 Platforms](https://img.shields.io/badge/Platforms-3%20Countries-orange)]()

---

### ⚡ What It Does

Calls Marktplaats's internal JSON API directly for fast, structured data. No browser overhead, no HTML parsing — pure API calls returning clean JSON. Returns price, seller info, condition, location, images and category-specific attributes.

**Default run (prefill input):** Searches "iphone" on Marktplaats.nl, completes in under 1 minute, and produces a non-empty dataset.

---

### 🔧 How It Works

Marktplaats exposes an internal search API at `/lrp/api/search`. This actor calls it directly:

````

GET https://www.marktplaats.nl/lrp/api/search?query=iphone\&limit=30\&offset=0
→ JSON: { listings: \[...], totalResultCount: 41595 }

````

Pagination via offset increments. No authentication required. ~200+ listings per minute.

---

### 🚀 Quick Start

#### Default Input (works out of the box)

```json
{
  "query": "iphone",
  "maxListings": 50
}
````

#### 🔍 Advanced Search

```json
{
  "platform": "marktplaats.nl",
  "query": "bmw 320",
  "categoryId": "91",
  "postcode": "1012AB",
  "distanceMeters": 50000,
  "minPrice": 500000,
  "maxPrice": 2000000,
  "sortBy": "PRICE",
  "sortOrder": "INCREASING",
  "scrapeDetails": true,
  "maxListings": 200,
  "requestDelay": 500
}
```

***

### 📋 Input Parameters

| Parameter | Type | Default | Description |
|---|---|---|---|
| `platform` | string | `marktplaats.nl` | 🇳🇱 `marktplaats.nl`, 🇧🇪 `2dehands.be` or 🇧🇪 `2ememain.be` |
| `query` | string | `"iphone"` | 🔎 Search keywords |
| `categoryId` | string | `""` | 📂 L1 category ID (see list below) |
| `subcategoryId` | string | `""` | 📁 L2 subcategory ID |
| `postcode` | string | `""` | 📍 Dutch/Belgian postcode for location search |
| `distanceMeters` | integer | `0` | 📏 Radius from postcode (meters) |
| `minPrice` | integer | `0` | 💰 Min price in **cents** (50000 = €500) |
| `maxPrice` | integer | `0` | 💰 Max price in **cents** (200000 = €2000) |
| `sortBy` | string | `SORT_INDEX` | 📊 `SORT_INDEX` (newest), `PRICE`, `OPTIMIZED` (relevance) |
| `sortOrder` | string | `DECREASING` | ⬆️ `DECREASING` or `INCREASING` |
| `scrapeDetails` | boolean | `false` | 📄 Fetch detail pages for full description |
| `maxListings` | integer | `50` | 🔢 Total listings cap (max ~5000 per query) |
| `proxyConfiguration` | object | Apify auto | 🔒 Proxy settings |
| `requestDelay` | integer (ms) | `500` | ⏱️ Delay between API calls |

***

### 🌍 Platforms

| Platform | Domain | Country | Language |
|---|---|---|---|
| 🇳🇱 `marktplaats.nl` | marktplaats.nl | Netherlands | Dutch |
| 🇧🇪 `2dehands.be` | 2dehands.be | Belgium | Flemish Dutch |
| 🇧🇪 `2ememain.be` | 2ememain.be | Belgium | French |

All three platforms share the same backend API — same query parameters, same response format. One actor, three countries.

***

### 📂 Category IDs

| ID | 🇳🇱 Category (Dutch) | 🇬🇧 Category (English) |
|---|---|---|
| `91` | Auto's | 🚗 Cars |
| `31` | Telecommunicatie | 📱 Telecom / Phones |
| `504` | Computers en Software | 💻 Computers |
| `322` | Huis en Inrichting | 🏠 Home & Furniture |
| `621` | Kleding - Dames | 👗 Women's Clothing |
| `728` | Sport en Fitness | ⚽ Sports |
| `1032` | Fietsen en Brommers | 🚲 Bicycles & Mopeds |
| `378` | Muziek en Instrumenten | 🎸 Music |
| `482` | Tuin en Terras | 🌿 Garden |
| `820` | Elektronica en Domotica | 🔌 Electronics |
| `239` | Doe-het-zelf en Verbouw | 🔨 DIY & Construction |
| `1085` | Kinderen en Baby's | 👶 Kids & Baby |
| `1098` | Dieren en Toebehoren | 🐕 Animals & Pets |
| `428` | Spelcomputers en Games | 🎮 Gaming |

***

### 📦 Output

#### Search Mode (`scrapeDetails: false`)

```json
{
  "listingId": "m2045678901",
  "platform": "marktplaats.nl",
  "title": "iPhone 15 Pro 256GB Zwart Titanium",
  "price": 899,
  "priceType": "fixed",
  "priceTypeOriginal": "Vaste prijs",
  "currency": "EUR",
  "condition": "like_new",
  "conditionOriginal": "Zo goed als nieuw",
  "category": "Mobiele telefoons",
  "sellerName": "TechShop Amsterdam",
  "sellerId": "12345678",
  "sellerType": "business",
  "location": "Amsterdam",
  "date": "2026-05-01T14:23:00Z",
  "description": "Te koop: een zo goed als nieuwe Apple iPhone 15 Pro...",
  "shippingAvailable": true,
  "images": ["https://images.marktplaats.com/..."],
  "url": "https://www.marktplaats.nl/v/telecommunicatie/mobiele-telefoons/m2045678901-iphone-15-pro",
  "scrapedAt": "2026-05-04T09:00:00Z"
}
```

***

### 🇳🇱 Dutch → English Translation

#### 💰 Price Types

| 🇳🇱 Dutch | 🇬🇧 English | Description |
|---|---|---|
| Vaste prijs | `fixed` | Fixed price, no negotiation |
| Bieden | `bidding` | Make an offer |
| Gratis | `free` | Free item |
| Vraagprijs | `asking` | Asking price (negotiable) |
| Ruilen | `trade` | Trade / exchange |
| Zie omschrijving | `see_description` | Check the listing description |

#### 📋 Conditions

| 🇳🇱 Dutch | 🇬🇧 English |
|---|---|
| Nieuw | `new` |
| Zo goed als nieuw | `like_new` |
| Gebruikt | `used` |

Both original Dutch and translated English values are provided in every record (`priceType` + `priceTypeOriginal`, `condition` + `conditionOriginal`).

***

### 🎯 Use Cases

- 🛍️ **E-commerce arbitrage** — find underpriced items for resale
- 🚗 **Used car market analysis** — price trends, inventory monitoring
- 📊 **Market research** — consumer pricing, category demand analysis
- 🏦 **Insurance** — second-hand item valuation reference data
- 📈 **Price monitoring** — track specific products or categories over time
- 🏢 **Competitive analysis** — monitor competitor listings and pricing

***

### ⚙️ Technical Notes

| Feature | Detail |
|---|---|
| 🔗 **Engine** | Direct internal JSON API — no browser, no HTML parsing |
| 🔓 **Auth** | None required — public API endpoint |
| 📄 **Pagination** | Offset-based, 30 results per page |
| ⚠️ **5000 Limit** | Marktplaats caps at ~5000 results per query. Split by price range for more. |
| 💰 **Prices** | API returns cents → output converts to EUR |
| 🌐 **Proxy** | Works from datacenter IPs (no residential needed) |
| 🔄 **Rate Limiting** | Moderate. Default 500ms delay is safe. |

***

### 💸 Cost & Performance

| Mode | Speed | CU per 100 listings | Cost estimate |
|---|---|---|---|
| 🚀 Search only | ~200+/min | ~0.002 | Almost free |
| 📄 With details | ~10-20/min | ~0.01 | Very cheap |

Pure API calls with no browser = **fastest and cheapest** classifieds scraper on Apify Store.

***

### 📜 Changelog

| Version | Date | Notes |
|---|---|---|
| 1.0.0 | 2026-05-04 | 🎉 Initial release — direct API, 3 platforms, Dutch↔English translation, price/condition mapping |

# Actor input Schema

## `platform` (type: `string`):

Which platform to scrape. All three share the same backend.

## `query` (type: `string`):

Keyword search term. Examples: 'iphone 15', 'bmw 320', 'fiets', 'bank'. Leave empty to browse by category.

## `categoryId` (type: `string`):

Marktplaats L1 category ID. Leave empty for all categories. Common IDs: '31' (Telecommunicatie), '91' (Auto's), '504' (Computers), '322' (Huis en Inrichting), '621' (Kleding Dames), '728' (Sport en Fitness). See README for full list.

## `subcategoryId` (type: `string`):

L2 subcategory ID for narrower search. Leave empty for entire category.

## `postcode` (type: `string`):

Dutch/Belgian postcode to center location search. Example: '1012AB' (Amsterdam), '3011AA' (Rotterdam).

## `distanceMeters` (type: `integer`):

Search radius from postcode in meters. Only works with postcode. Examples: 10000 (10km), 50000 (50km).

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

Minimum price in cents. Example: 10000 = €100. Set 0 for no filter.

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

Maximum price in cents. Example: 100000 = €1000. Set 0 for no filter.

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

Sort order for results.

## `sortOrder` (type: `string`):

Sort direction.

## `scrapeDetails` (type: `boolean`):

Fetch individual listing pages for full description and category-specific attributes (car specs, property details etc.). Slower but more complete.

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

Maximum total listings to scrape. Set 0 for unlimited. Note: Marktplaats limits to ~5000 results per query.

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

Proxy settings. Marktplaats internal API works without proxy from most IPs.

## `requestDelay` (type: `integer`):

Delay between API calls in milliseconds.

## Actor input object example

```json
{
  "platform": "marktplaats.nl",
  "query": "iphone",
  "distanceMeters": 0,
  "minPrice": 0,
  "maxPrice": 0,
  "sortBy": "SORT_INDEX",
  "sortOrder": "DECREASING",
  "scrapeDetails": false,
  "maxListings": 50,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "requestDelay": 500
}
```

# Actor output Schema

## `listingId` (type: `string`):

Marktplaats listing ID (m-format)

## `platform` (type: `string`):

marktplaats.nl / 2dehands.be / 2ememain.be

## `title` (type: `string`):

Listing title

## `price` (type: `string`):

Price in EUR

## `priceType` (type: `string`):

fixed / bidding / free / asking / trade

## `priceTypeOriginal` (type: `string`):

Original Dutch price type

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

EUR

## `condition` (type: `string`):

new / like\_new / used / not\_specified

## `conditionOriginal` (type: `string`):

Original Dutch condition text

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

L1 category name

## `subcategory` (type: `string`):

L2 subcategory name

## `sellerName` (type: `string`):

Seller display name

## `sellerId` (type: `string`):

Seller unique ID

## `sellerType` (type: `string`):

private / business

## `location` (type: `string`):

City or area name

## `date` (type: `string`):

Listing date ISO format

## `description` (type: `string`):

Full listing description

## `attributes` (type: `string`):

Category-specific attributes

## `images` (type: `string`):

Image URLs array

## `shippingAvailable` (type: `string`):

Shipping available

## `url` (type: `string`):

Full listing URL

## `searchQuery` (type: `string`):

Query used to find this listing

## `searchCategory` (type: `string`):

Category ID used in search

## `scrapedAt` (type: `string`):

ISO timestamp when scraped

# 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 = {
    "query": "iphone",
    "categoryId": "",
    "subcategoryId": "",
    "postcode": "",
    "maxListings": 50,
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("haketa/marktplaats-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 = {
    "query": "iphone",
    "categoryId": "",
    "subcategoryId": "",
    "postcode": "",
    "maxListings": 50,
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("haketa/marktplaats-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 '{
  "query": "iphone",
  "categoryId": "",
  "subcategoryId": "",
  "postcode": "",
  "maxListings": 50,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call haketa/marktplaats-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Marktplaats.nl Scraper",
        "description": "Scrape listings from Marktplaats.nl, 2dehands.be and 2ememain.be — Benelux's largest classifieds platforms with 10M+ active listings. Extract price, seller info, condition, location and category via internal JSON API. No browser needed.",
        "version": "0.0",
        "x-build-id": "SAdjOev7wZjcN2hd1"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/haketa~marktplaats-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-haketa-marktplaats-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/haketa~marktplaats-scraper/runs": {
            "post": {
                "operationId": "runs-sync-haketa-marktplaats-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/haketa~marktplaats-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-haketa-marktplaats-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": {
                    "platform": {
                        "title": "Platform",
                        "enum": [
                            "marktplaats.nl",
                            "2dehands.be",
                            "2ememain.be"
                        ],
                        "type": "string",
                        "description": "Which platform to scrape. All three share the same backend.",
                        "default": "marktplaats.nl"
                    },
                    "query": {
                        "title": "Search Query",
                        "type": "string",
                        "description": "Keyword search term. Examples: 'iphone 15', 'bmw 320', 'fiets', 'bank'. Leave empty to browse by category."
                    },
                    "categoryId": {
                        "title": "Category ID",
                        "type": "string",
                        "description": "Marktplaats L1 category ID. Leave empty for all categories. Common IDs: '31' (Telecommunicatie), '91' (Auto's), '504' (Computers), '322' (Huis en Inrichting), '621' (Kleding Dames), '728' (Sport en Fitness). See README for full list."
                    },
                    "subcategoryId": {
                        "title": "Subcategory ID",
                        "type": "string",
                        "description": "L2 subcategory ID for narrower search. Leave empty for entire category."
                    },
                    "postcode": {
                        "title": "Postcode",
                        "type": "string",
                        "description": "Dutch/Belgian postcode to center location search. Example: '1012AB' (Amsterdam), '3011AA' (Rotterdam)."
                    },
                    "distanceMeters": {
                        "title": "Distance (meters)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Search radius from postcode in meters. Only works with postcode. Examples: 10000 (10km), 50000 (50km).",
                        "default": 0
                    },
                    "minPrice": {
                        "title": "Min Price (cents)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Minimum price in cents. Example: 10000 = €100. Set 0 for no filter.",
                        "default": 0
                    },
                    "maxPrice": {
                        "title": "Max Price (cents)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum price in cents. Example: 100000 = €1000. Set 0 for no filter.",
                        "default": 0
                    },
                    "sortBy": {
                        "title": "Sort By",
                        "enum": [
                            "SORT_INDEX",
                            "PRICE",
                            "OPTIMIZED"
                        ],
                        "type": "string",
                        "description": "Sort order for results.",
                        "default": "SORT_INDEX"
                    },
                    "sortOrder": {
                        "title": "Sort Order",
                        "enum": [
                            "DECREASING",
                            "INCREASING"
                        ],
                        "type": "string",
                        "description": "Sort direction.",
                        "default": "DECREASING"
                    },
                    "scrapeDetails": {
                        "title": "Scrape Detail Pages",
                        "type": "boolean",
                        "description": "Fetch individual listing pages for full description and category-specific attributes (car specs, property details etc.). Slower but more complete.",
                        "default": false
                    },
                    "maxListings": {
                        "title": "Max Listings",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum total listings to scrape. Set 0 for unlimited. Note: Marktplaats limits to ~5000 results per query.",
                        "default": 50
                    },
                    "proxyConfiguration": {
                        "title": "Proxy Configuration",
                        "type": "object",
                        "description": "Proxy settings. Marktplaats internal API works without proxy from most IPs."
                    },
                    "requestDelay": {
                        "title": "Request Delay (ms)",
                        "minimum": 0,
                        "maximum": 10000,
                        "type": "integer",
                        "description": "Delay between API calls in milliseconds.",
                        "default": 500
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
