# npm Scraper - Packages, Downloads & Maintainer Leads (`scrapesage/npm-scraper`) Actor

Scrape the npm registry by keyword or package name. Get version, description, keywords, license, GitHub repo, homepage, weekly/monthly downloads, quality/popularity scores, dependencies and maintainer contact emails as B2B developer leads. No key, no login. Export JSON, CSV, Excel.

- **URL**: https://apify.com/scrapesage/npm-scraper.md
- **Developed by:** [Scrape Sage](https://apify.com/scrapesage) (community)
- **Categories:** Developer tools, Lead generation, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.00 / 1,000 package results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

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

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

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

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

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

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

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

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

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

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

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

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


# README

## npm Scraper — Packages, Downloads & Maintainer Leads

Search the **npm registry** by keyword or package name and get a rich, structured record for every package — **version, description, keywords, license, GitHub repo, homepage, weekly/monthly downloads, quality & popularity scores, dependencies**, and the part other scrapers miss: **maintainer contact emails and company domains** as ready-to-use B2B developer leads.

No API key, no login, no browser — fast JSON extraction straight from the public npm registry with high reliability.

### Why this npm scraper?

The npm registry is the largest software registry in the world, and every package carries publicly published maintainer metadata. This actor merges the **search API, the registry detail API, and the downloads API** into one clean record — and turns a keyword into a scored lead list of the developers and companies behind the packages.

| Data | Typical scrapers | This actor |
|---|---|---|
| Name, version, description, keywords | ✅ | ✅ |
| GitHub repository + homepage | partial | ✅ |
| Weekly & monthly downloads | ❌ | ✅ |
| Quality / popularity / maintenance scores | ❌ | ✅ |
| **Maintainer emails** | ❌ | ✅ |
| **Company domains** (from email addresses) | ❌ | ✅ |
| License, created & last-published dates | ❌ | ✅ opt-in |
| Dependency list + version count | ❌ | ✅ opt-in |
| Deprecation status | ❌ | ✅ opt-in |
| Lead score (0–100) | ❌ | ✅ |
| Monitor mode — only new / updated packages | ❌ | ✅ |

### Use cases

- **Developer & maintainer lead generation** — sell a dev tool, SDK, API, or DevRel service? Search a niche (`stripe`, `kubernetes`, `web scraping`) and reach package maintainers at their published email, filtered to real **company domains**.
- **Developer-tool market research** — map every package in a category with downloads, scores, and last-publish dates to size and track a market.
- **Supply-chain & dependency intelligence** — pull packages, their dependency lists, maintainers, and maintenance health for security and risk analysis.
- **Open-source recruiting & partnerships** — find the active maintainers behind popular packages by language, topic, or company.
- **Package monitoring** — schedule recurring runs to watch a keyword for new and freshly-published packages.

### How to use

1. [Sign up for Apify](https://console.apify.com/sign-up) — the free plan is enough to try this actor.
2. Open the **npm Scraper**, enter search queries (or package names), and click **Start**.
3. Watch packages stream into the dataset table.
4. **Export** as JSON, CSV, Excel, XML, or RSS — or pull results programmatically via the [Apify API](https://docs.apify.com/api/v2).

### Input

```json
{
    "searchQueries": ["web scraping", "keywords:cli"],
    "packageNames": ["express", "@angular/core"],
    "maxResults": 100,
    "includeDownloads": true,
    "includeDetails": true,
    "includeDependencies": false,
    "onlyWithEmail": false,
    "minMonthlyDownloads": 1000,
    "monitorMode": false
}
````

- **searchQueries** — keywords; supports npm qualifiers like `keywords:cli`, `author:sindresorhus`, `scope:angular`.
- **packageNames** — exact package names to fetch directly (always fully detailed).
- **maxResults** *(default 100)* — total packages to scrape across all queries.
- **includeDownloads** *(default true)* — add last-week and last-month download counts.
- **includeDetails** *(default false)* — fetch full registry metadata: license, dates, version count, deprecation, named maintainers, dependency count.
- **includeDependencies** *(default false)* — when details are on, output the dependency name list too.
- **onlyWithEmail / onlyWithRepository** — keep only contactable / source-linked packages.
- **minMonthlyDownloads** *(default 0)* — keep only packages above a popularity threshold.
- **monitorMode** *(default false)* — output only packages that are new or newly-versioned since the last run.

### Output

One record per package (`type: "package"`):

```json
{
    "type": "package",
    "name": "got-scraping",
    "version": "4.2.1",
    "description": "HTTP client made for scraping based on got.",
    "keywords": ["scraping", "http", "got", "crawlee"],
    "npmUrl": "https://www.npmjs.com/package/got-scraping",
    "homepage": "https://github.com/apify/got-scraping#readme",
    "repositoryUrl": "https://github.com/apify/got-scraping",
    "githubRepo": "apify/got-scraping",
    "bugsUrl": "https://github.com/apify/got-scraping/issues",
    "author": { "name": "Apify", "email": "support@apify.com" },
    "publisher": { "username": "apify-release", "email": "apify-release@apify.com" },
    "maintainers": [{ "username": "mtrunkat", "email": "marek@apify.com" }],
    "maintainerEmails": ["support@apify.com", "marek@apify.com"],
    "maintainerCount": 4,
    "companyDomains": ["apify.com"],
    "license": "ISC",
    "createdAt": "2021-03-18T12:00:00.000Z",
    "lastPublishedAt": "2026-05-30T09:14:00.000Z",
    "versionCount": 73,
    "isDeprecated": false,
    "dependenciesCount": 7,
    "weeklyDownloads": 412044,
    "monthlyDownloads": 1820551,
    "finalScore": 61,
    "qualityScore": 78,
    "popularityScore": 49,
    "maintenanceScore": 100,
    "emailFound": true,
    "leadScore": 88,
    "searchQuery": "web scraping",
    "scrapedAt": "2026-06-27T12:00:00.000Z"
}
```

### Automate & schedule

Run this actor on autopilot and pull results into your own stack:

- **[Apify API](https://docs.apify.com/api/v2)** — start runs, fetch datasets, and manage schedules over REST.
- **[apify-client for JavaScript](https://docs.apify.com/api/client/js/)** and **[apify-client for Python](https://docs.apify.com/api/client/python/)** — official SDKs.
- **[Schedules](https://docs.apify.com/platform/schedules)** — run it daily/weekly with `monitorMode` to watch a keyword for new and updated packages, collecting only what changed.
- **[Webhooks](https://docs.apify.com/platform/integrations/webhooks)** — trigger downstream actions (CRM import, Slack alert, email sequence) the moment a run finishes.

```js
import { ApifyClient } from 'apify-client';

const client = new ApifyClient({ token: 'MY_APIFY_TOKEN' });

const run = await client.actor('scrapesage/npm-scraper').call({
    searchQueries: ['react components'],
    maxResults: 200,
    includeDownloads: true,
    onlyWithEmail: true,
});

const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(`Got ${items.length} packages & maintainer leads`);
```

### Integrate with any app

Connect the dataset to 5,000+ apps — no code required:

- **[Make](https://docs.apify.com/platform/integrations/make)** — multi-step automation scenarios.
- **[Zapier](https://docs.apify.com/platform/integrations/zapier)** — push new maintainer leads straight into your CRM.
- **[Slack](https://docs.apify.com/platform/integrations/slack)** — get notified when a monitored keyword gains a new package.
- **[Google Drive / Sheets](https://docs.apify.com/platform/integrations/drive)** — auto-export every run to a spreadsheet.
- **[Airbyte](https://docs.apify.com/platform/integrations/airbyte)** — pipe results into your data warehouse.
- **[GitHub](https://docs.apify.com/platform/integrations/github)** — trigger runs from commits or releases.

### Use with AI assistants (MCP)

The output is clean, LLM-ready JSON. Call this actor from Claude, ChatGPT, or any agent framework through the **[Apify MCP server](https://docs.apify.com/platform/integrations/mcp)** — ask your assistant to "find popular web-scraping npm packages with a maintainer email and over 100k monthly downloads" and let it run this scraper for you.

### More scrapers from scrapesage

Build a complete **developer & open-source intelligence stack**:

- **[GitHub Scraper](https://apify.com/scrapesage/github-scraper)** — repos, developers, and contact leads.
- **[Hugging Face Scraper](https://apify.com/scrapesage/hugging-face-scraper)** — models, datasets, spaces, and maker leads.
- **[Chrome Web Store Scraper](https://apify.com/scrapesage/chrome-web-store-scraper)** — extensions and developer leads.
- **[WordPress Plugin & Theme Scraper](https://apify.com/scrapesage/wordpress-plugin-theme-scraper)** — installs, ratings, and author leads.
- **[Shopify App Store Scraper](https://apify.com/scrapesage/shopify-app-store-scraper)** — apps, reviews, and developer leads.
- **[Salesforce AppExchange Scraper](https://apify.com/scrapesage/salesforce-appexchange-scraper)** — ISV vendor and publisher leads.
- **[Product Hunt Scraper](https://apify.com/scrapesage/product-hunt-scraper)** — launches, makers, and leads.
- **[Website Contact Scraper](https://apify.com/scrapesage/website-contact-scraper)** — emails, phones, and socials from any website.

### Tips

- **Best lead quality**: turn on `onlyWithEmail` and set `minMonthlyDownloads` to focus on active, popular packages run by reachable maintainers — then filter the `companyDomains` column for B2B targets.
- **Search smart**: npm qualifiers narrow fast — `keywords:react`, `author:<username>`, `scope:<org>`, or `not:deprecated`.
- **Cheap vs deep**: search results already include maintainer emails and scores, so you get leads without `includeDetails`. Add details only when you need license, dates, dependencies, or deprecation.
- **Recurring monitoring**: pair [Schedules](https://docs.apify.com/platform/schedules) with `monitorMode` to track new and updated packages in a niche without re-paying for unchanged rows.

### FAQ

**Do I need an npm account or token?** No. The actor reads the public npm registry and downloads APIs — no key, account, or login required.

**Where do the maintainer emails come from?** They are the contact emails npm package authors publish in their own package metadata (`maintainers`, `author`, `publisher`). The actor surfaces and de-duplicates them, and extracts the non-personal **company domains** from them. Automated/no-reply addresses are filtered out.

**Can I export to Google Sheets, CSV, or Excel?** Yes — one click in the dataset view, or automatically on every run via the [Google Drive integration](https://docs.apify.com/platform/integrations/drive).

**How do I monitor a keyword for new packages?** Turn on `monitorMode` and create a [Schedule](https://docs.apify.com/platform/schedules). Each run outputs only packages that are new or have a new version since the previous run.

**A field is null — why?** Search results don't include license, dates, dependencies, or deprecation — turn on `includeDetails` for those. Some packages simply don't link a repository or homepage, have no keywords, or expose no maintainer email. Fields are `null` only when npm doesn't publish them.

**Is scraping npm legal?** This actor collects publicly available registry data only. You are responsible for using the data in compliance with applicable laws (GDPR/CCPA for personal data) and npm's terms.

### Need help?

Open an issue on the actor's **Issues** tab, or visit the [Apify help center](https://help.apify.com/). Feature requests are welcome — this actor is actively maintained.

# Actor input Schema

## `searchQueries` (type: `array`):

Keywords to search the npm registry, e.g. <code>web scraping</code>, <code>react components</code>, <code>stripe payments</code>. You can use npm search qualifiers like <code>keywords:cli</code>, <code>author:sindresorhus</code>, or <code>scope:angular</code>.

## `packageNames` (type: `array`):

Exact npm package names to fetch directly, e.g. <code>express</code>, <code>@angular/core</code>, <code>lodash</code>. Use this to enrich a known list of packages.

## `maxResults` (type: `integer`):

Maximum number of packages to scrape across all queries.

## `includeDownloads` (type: `boolean`):

Add last-week and last-month download counts for every package — the key popularity and lead-quality signal.

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

Fetch each package's full registry metadata: license, exact repository, created/last-published dates, version count, deprecation status, dependency list and named maintainers. Adds one request per package.

## `includeDependencies` (type: `boolean`):

When full details are on, also output the package's runtime dependency names (not just the count).

## `onlyWithEmail` (type: `boolean`):

Keep only packages that expose at least one maintainer/author/publisher email — the directly contactable developer leads.

## `onlyWithRepository` (type: `boolean`):

Keep only packages that link a source repository (usually GitHub).

## `minMonthlyDownloads` (type: `integer`):

Keep only packages with at least this many downloads in the last month (requires download counts). Leave at 0 for no filter.

## `monitorMode` (type: `boolean`):

Remember every package seen across runs and output only those that are <b>new</b> or have a <b>new version</b> since the last run. Pair with Apify Schedules to watch a niche for new and freshly-published packages — without re-paying for unchanged rows.

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

Proxies to use. The npm registry is a public API, so the default Apify proxy is plenty — no residential needed.

## Actor input object example

```json
{
  "searchQueries": [
    "web scraping"
  ],
  "maxResults": 100,
  "includeDownloads": true,
  "includeDetails": false,
  "includeDependencies": false,
  "onlyWithEmail": false,
  "onlyWithRepository": false,
  "minMonthlyDownloads": 0,
  "monitorMode": false,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `results` (type: `string`):

All scraped npm package and maintainer-lead records as JSON items in the default dataset.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "searchQueries": [
        "web scraping"
    ],
    "maxResults": 100,
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("scrapesage/npm-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 = {
    "searchQueries": ["web scraping"],
    "maxResults": 100,
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("scrapesage/npm-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 '{
  "searchQueries": [
    "web scraping"
  ],
  "maxResults": 100,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call scrapesage/npm-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "npm Scraper - Packages, Downloads & Maintainer Leads",
        "description": "Scrape the npm registry by keyword or package name. Get version, description, keywords, license, GitHub repo, homepage, weekly/monthly downloads, quality/popularity scores, dependencies and maintainer contact emails as B2B developer leads. No key, no login. Export JSON, CSV, Excel.",
        "version": "1.0",
        "x-build-id": "swgFbVeqCxq7WFJDL"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/scrapesage~npm-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-scrapesage-npm-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/scrapesage~npm-scraper/runs": {
            "post": {
                "operationId": "runs-sync-scrapesage-npm-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/scrapesage~npm-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-scrapesage-npm-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": {
                    "searchQueries": {
                        "title": "Search queries",
                        "type": "array",
                        "description": "Keywords to search the npm registry, e.g. <code>web scraping</code>, <code>react components</code>, <code>stripe payments</code>. You can use npm search qualifiers like <code>keywords:cli</code>, <code>author:sindresorhus</code>, or <code>scope:angular</code>.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "packageNames": {
                        "title": "Package names",
                        "type": "array",
                        "description": "Exact npm package names to fetch directly, e.g. <code>express</code>, <code>@angular/core</code>, <code>lodash</code>. Use this to enrich a known list of packages.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxResults": {
                        "title": "Max packages",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum number of packages to scrape across all queries.",
                        "default": 100
                    },
                    "includeDownloads": {
                        "title": "Include download counts",
                        "type": "boolean",
                        "description": "Add last-week and last-month download counts for every package — the key popularity and lead-quality signal.",
                        "default": true
                    },
                    "includeDetails": {
                        "title": "Include full package details",
                        "type": "boolean",
                        "description": "Fetch each package's full registry metadata: license, exact repository, created/last-published dates, version count, deprecation status, dependency list and named maintainers. Adds one request per package.",
                        "default": false
                    },
                    "includeDependencies": {
                        "title": "Include dependency list",
                        "type": "boolean",
                        "description": "When full details are on, also output the package's runtime dependency names (not just the count).",
                        "default": false
                    },
                    "onlyWithEmail": {
                        "title": "Only packages with a maintainer email",
                        "type": "boolean",
                        "description": "Keep only packages that expose at least one maintainer/author/publisher email — the directly contactable developer leads.",
                        "default": false
                    },
                    "onlyWithRepository": {
                        "title": "Only packages with a repository",
                        "type": "boolean",
                        "description": "Keep only packages that link a source repository (usually GitHub).",
                        "default": false
                    },
                    "minMonthlyDownloads": {
                        "title": "Minimum monthly downloads",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Keep only packages with at least this many downloads in the last month (requires download counts). Leave at 0 for no filter.",
                        "default": 0
                    },
                    "monitorMode": {
                        "title": "Monitor mode (only new / updated)",
                        "type": "boolean",
                        "description": "Remember every package seen across runs and output only those that are <b>new</b> or have a <b>new version</b> since the last run. Pair with Apify Schedules to watch a niche for new and freshly-published packages — without re-paying for unchanged rows.",
                        "default": false
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Proxies to use. The npm registry is a public API, so the default Apify proxy is plenty — no residential needed.",
                        "default": {
                            "useApifyProxy": true
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
