# HuggingFace Hub Scraper (`crawlerbros/huggingface-scraper`) Actor

Scrape Hugging Face Hub, search and fetch models, datasets, and spaces with full metadata: downloads, likes, license, pipeline tag, library, tags, files, and more. Pure HTTP, no auth required.

- **URL**: https://apify.com/crawlerbros/huggingface-scraper.md
- **Developed by:** [Crawler Bros](https://apify.com/crawlerbros) (community)
- **Categories:** AI, Developer tools, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 6 bookmarks
- **User rating**: 5.00 out of 5 stars

## Pricing

from $3.00 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.
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

## HuggingFace Hub Scraper

Scrape the [Hugging Face Hub](https://huggingface.co) — 1M+ machine-learning models, 200K+ datasets, 400K+ Spaces, and millions of user profiles. Search by query, fetch by repo ID or URL, list trending repos, or pull a user's overview. Pure HTTP via the official public Hub API at `huggingface.co/api/*`. No auth, no proxy, no cookies.

### What this actor does

- **7 modes:** `search`, `byModel`, `byDataset`, `bySpace`, `byUser`, `trending`, `byUrl`
- **Three entity catalogs:** models, datasets, spaces (search & trending pivot on `entityType`)
- **Filters:** pipeline tag, library, license, language, author/org, min downloads, min likes
- **Server-side sort:** trending score, downloads, likes, last modified, created at
- **URL auto-detection:** paste any `huggingface.co/<repo>` or `/datasets/<id>` or `/spaces/<id>` or `/users/<u>` URL — the actor figures out the kind
- **Optional `?full=true`:** include sibling files, cardData, config metadata
- **Empty fields are omitted** — every record only contains populated fields

### Output

The actor emits a flat record per repo / user. Fields you might see (omit-empty applies):

#### Common
- `recordType` — `model` / `dataset` / `space` / `user`
- `repoId` — full Hub identifier (e.g. `google-bert/bert-base-uncased`)
- `owner` — author / organization slug
- `sha`, `createdAt`, `lastModified`
- `downloads`, `likes`, `trendingScore`
- `license`, `tags`, `languages`
- `scrapedAt`

#### Model-only
- `modelName`, `modelType`, `architectures[]`
- `pipelineTag`, `libraryName`
- `trainedOnDatasets[]`, `arxivIds[]`
- `maskToken`, `fileCount`, `files[]`
- `modelUrl`

#### Dataset-only
- `datasetName`, `description`
- `taskCategories[]`, `taskIds[]`
- `modalities[]`, `formats[]`, `sizeCategories[]`
- `paperswithcodeId`, `fileCount`, `files[]`
- `datasetUrl`

#### Space-only
- `spaceName`, `sdk`, `runtimeStage`
- `title`, `emoji`, `host`, `subdomain`
- `fileCount`, `files[]`
- `spaceUrl`

#### User-only
- `username`, `fullName`, `avatarUrl`, `isPro`
- `numModels`, `numDatasets`, `numSpaces`
- `numFollowers`, `numFollowing`, `numLikes`, `numUpvotes`
- `numPapers`, `numDiscussions`
- `orgs[]`, `profileUrl`

### Input

| Field | Type | Default | Description |
|---|---|---|---|
| `mode` | enum | `search` | One of the 7 modes |
| `entityType` | enum | `models` | `models` / `datasets` / `spaces` (mode=search/trending) |
| `searchQuery` | string | `bert` | Free-text query |
| `repoIds` | array | – | Repo IDs or URLs (mode=byModel/byDataset/bySpace) |
| `username` | string | – | Username (mode=byUser) |
| `startUrls` | array | – | Hub URLs (mode=byUrl) — kind auto-detected |
| `pipelineTag` | enum | – | Filter models by task tag (43 options) |
| `libraryName` | enum | – | Filter models by library (17 options) |
| `authorFilter` | string | – | Constrain to org/author slug |
| `license` | enum | – | License filter (29 options) |
| `language` | string | – | 2-letter language code |
| `sort` | enum | – | `trendingScore` / `downloads` / `likes` / `lastModified` / `createdAt` |
| `direction` | enum | `desc` | `desc` or `asc` |
| `minDownloads` | integer | – | Drop records below this download count |
| `minLikes` | integer | – | Drop records below this like count |
| `includeFullDetails` | boolean | `false` | Pass `?full=true` for siblings/config |
| `maxItems` | integer | `50` | Hard cap (1–10000) |

### Examples

#### Search top BERT models
```json
{
  "mode": "search",
  "entityType": "models",
  "searchQuery": "bert",
  "sort": "downloads",
  "maxItems": 50
}
````

#### Trending text-generation models

```json
{
  "mode": "trending",
  "entityType": "models",
  "pipelineTag": "text-generation",
  "maxItems": 25
}
```

#### Lookup a specific dataset

```json
{
  "mode": "byDataset",
  "repoIds": ["rajpurkar/squad_v2"]
}
```

#### Lookup by URL (auto-detect)

```json
{
  "mode": "byUrl",
  "startUrls": [
    "https://huggingface.co/google-bert/bert-base-uncased",
    "https://huggingface.co/datasets/squad",
    "https://huggingface.co/spaces/lmarena-ai/chatbot-arena"
  ]
}
```

#### User profile

```json
{
  "mode": "byUser",
  "username": "julien-c"
}
```

### Reliability

- Direct calls to the official `huggingface.co/api/*` endpoints
- Exponential backoff retries on `429`, `500`–`504`
- Page size capped at 100 (the API hard cap); paginated via `?skip=N&limit=N`
- No proxy needed — works from datacenter IPs
- No cookies / API token required for read access

### Limitations

- Private repos require a user access token; this actor only exposes the public read API.
- The `language` and `license` filters are forwarded to the Hub API and applied server-side. The Hub's filtering is best-effort: some matching repos lack a `language:<code>` / `license:<id>` tag (the metadata lives in the model card). If you need strict tag-based filtering, post-filter the dataset on `languages[]` / `license`.
- The `?full=true` flag is rate-limited harder by the upstream; expect slower runs when enabled at large `maxItems`.
- Single-segment legacy repo IDs (e.g. `bert-base-uncased`) are auto-resolved by the API to their canonical owner-prefixed form (e.g. `google-bert/bert-base-uncased`).

### FAQ

**Do I need a Hugging Face account / API token?** No. The Hub's read API is public.

**How fresh is the data?** Real-time — every run hits the live API.

**Can I download model weights?** No. This actor exposes Hub *metadata* — repo info, files list, license, tags, etc. To download weights, use the [huggingface\_hub Python library](https://huggingface.co/docs/huggingface_hub) with the `repoId` from this actor's output.

**Why are some fields missing?** Empty / null fields are omitted — only populated fields appear in the output.

**Why does my license filter return fewer results than expected?** Many repos don't tag their license. Records without a `license:*` tag are excluded when the license filter is set.

# Actor input Schema

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

What to fetch from the Hub. Use `search` for free-text discovery, `byModel`/`byDataset`/`bySpace` for specific repos, or `byUrl` to auto-detect from a Hugging Face URL.

## `entityType` (type: `string`):

Which Hub catalog to search or browse: models, datasets, or spaces.

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

Free-text search; matches repo name, description, and tags.

## `repoIds` (type: `array`):

Hub repo IDs like `bert-base-uncased`, `google-bert/bert-base-uncased`, or full URLs.

## `username` (type: `string`):

Hugging Face username (or organization name).

## `startUrls` (type: `array`):

Full huggingface.co URLs (model, dataset, space, or user pages).

## `pipelineTag` (type: `string`):

Filter models by their primary task tag (e.g. text-generation, image-classification). Applied as a server-side filter on `mode=search`/`trending`; otherwise post-filter.

## `libraryName` (type: `string`):

Filter models by their primary library / framework.

## `authorFilter` (type: `string`):

Constrain results to a specific author / org slug (e.g. `google`, `meta-llama`).

## `license` (type: `string`):

Filter to a specific license (post-fetch filter).

## `language` (type: `string`):

Filter records whose tags contain this 2-letter language code (e.g. `en`, `fr`, `zh`).

## `sort` (type: `string`):

Server-side sort key. Leave blank for relevance-based sort.

## `direction` (type: `string`):

Direction for the `sort` key.

## `minDownloads` (type: `integer`):

Drop records with fewer downloads than this.

## `minLikes` (type: `integer`):

Drop records with fewer likes than this.

## `includeFullDetails` (type: `boolean`):

Request `?full=true` from the Hub API to include sibling files, cardData, config, and tags. Heavier payloads but richer records.

## `maxItems` (type: `integer`):

Hard cap on emitted records.

## Actor input object example

```json
{
  "mode": "search",
  "entityType": "models",
  "searchQuery": "bert",
  "repoIds": [],
  "startUrls": [],
  "pipelineTag": "",
  "libraryName": "",
  "license": "",
  "sort": "",
  "direction": "desc",
  "includeFullDetails": false,
  "maxItems": 50
}
```

# Actor output Schema

## `records` (type: `string`):

Dataset containing all scraped Hugging Face records.

# 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 = {
    "mode": "search",
    "entityType": "models",
    "searchQuery": "bert",
    "repoIds": [],
    "startUrls": [],
    "direction": "desc",
    "includeFullDetails": false,
    "maxItems": 50
};

// Run the Actor and wait for it to finish
const run = await client.actor("crawlerbros/huggingface-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 = {
    "mode": "search",
    "entityType": "models",
    "searchQuery": "bert",
    "repoIds": [],
    "startUrls": [],
    "direction": "desc",
    "includeFullDetails": False,
    "maxItems": 50,
}

# Run the Actor and wait for it to finish
run = client.actor("crawlerbros/huggingface-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 '{
  "mode": "search",
  "entityType": "models",
  "searchQuery": "bert",
  "repoIds": [],
  "startUrls": [],
  "direction": "desc",
  "includeFullDetails": false,
  "maxItems": 50
}' |
apify call crawlerbros/huggingface-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "HuggingFace Hub Scraper",
        "description": "Scrape Hugging Face Hub, search and fetch models, datasets, and spaces with full metadata: downloads, likes, license, pipeline tag, library, tags, files, and more. Pure HTTP, no auth required.",
        "version": "1.0",
        "x-build-id": "AQLTOZVthiw6aG2tP"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/crawlerbros~huggingface-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-crawlerbros-huggingface-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/crawlerbros~huggingface-scraper/runs": {
            "post": {
                "operationId": "runs-sync-crawlerbros-huggingface-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/crawlerbros~huggingface-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-crawlerbros-huggingface-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "mode"
                ],
                "properties": {
                    "mode": {
                        "title": "Mode",
                        "enum": [
                            "search",
                            "byModel",
                            "byDataset",
                            "bySpace",
                            "byUser",
                            "trending",
                            "byUrl"
                        ],
                        "type": "string",
                        "description": "What to fetch from the Hub. Use `search` for free-text discovery, `byModel`/`byDataset`/`bySpace` for specific repos, or `byUrl` to auto-detect from a Hugging Face URL.",
                        "default": "search"
                    },
                    "entityType": {
                        "title": "Entity type (mode=search / trending)",
                        "enum": [
                            "models",
                            "datasets",
                            "spaces"
                        ],
                        "type": "string",
                        "description": "Which Hub catalog to search or browse: models, datasets, or spaces.",
                        "default": "models"
                    },
                    "searchQuery": {
                        "title": "Search query (mode=search)",
                        "type": "string",
                        "description": "Free-text search; matches repo name, description, and tags.",
                        "default": "bert"
                    },
                    "repoIds": {
                        "title": "Repo IDs (mode=byModel / byDataset / bySpace)",
                        "type": "array",
                        "description": "Hub repo IDs like `bert-base-uncased`, `google-bert/bert-base-uncased`, or full URLs.",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "username": {
                        "title": "Username (mode=byUser)",
                        "type": "string",
                        "description": "Hugging Face username (or organization name)."
                    },
                    "startUrls": {
                        "title": "Start URLs (mode=byUrl)",
                        "type": "array",
                        "description": "Full huggingface.co URLs (model, dataset, space, or user pages).",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "pipelineTag": {
                        "title": "Pipeline tag (models only)",
                        "enum": [
                            "",
                            "text-generation",
                            "text-classification",
                            "token-classification",
                            "fill-mask",
                            "question-answering",
                            "summarization",
                            "translation",
                            "text2text-generation",
                            "feature-extraction",
                            "sentence-similarity",
                            "zero-shot-classification",
                            "table-question-answering",
                            "automatic-speech-recognition",
                            "audio-classification",
                            "text-to-speech",
                            "text-to-audio",
                            "audio-to-audio",
                            "voice-activity-detection",
                            "image-classification",
                            "image-segmentation",
                            "image-to-image",
                            "image-to-text",
                            "object-detection",
                            "depth-estimation",
                            "video-classification",
                            "text-to-video",
                            "text-to-image",
                            "image-to-video",
                            "image-text-to-text",
                            "visual-question-answering",
                            "document-question-answering",
                            "any-to-any",
                            "tabular-classification",
                            "tabular-regression",
                            "time-series-forecasting",
                            "reinforcement-learning",
                            "robotics",
                            "graph-ml",
                            "mask-generation",
                            "zero-shot-image-classification",
                            "zero-shot-object-detection",
                            "unconditional-image-generation"
                        ],
                        "type": "string",
                        "description": "Filter models by their primary task tag (e.g. text-generation, image-classification). Applied as a server-side filter on `mode=search`/`trending`; otherwise post-filter.",
                        "default": ""
                    },
                    "libraryName": {
                        "title": "Library (models only)",
                        "enum": [
                            "",
                            "transformers",
                            "diffusers",
                            "sentence-transformers",
                            "timm",
                            "spacy",
                            "stable-baselines3",
                            "ml-agents",
                            "keras",
                            "fastai",
                            "tensorflow",
                            "pytorch",
                            "jax",
                            "onnx",
                            "safetensors",
                            "gguf",
                            "peft",
                            "adapters"
                        ],
                        "type": "string",
                        "description": "Filter models by their primary library / framework.",
                        "default": ""
                    },
                    "authorFilter": {
                        "title": "Author / organization",
                        "type": "string",
                        "description": "Constrain results to a specific author / org slug (e.g. `google`, `meta-llama`)."
                    },
                    "license": {
                        "title": "License filter",
                        "enum": [
                            "",
                            "apache-2.0",
                            "mit",
                            "cc-by-4.0",
                            "cc-by-sa-4.0",
                            "cc-by-nc-4.0",
                            "cc-by-nc-sa-4.0",
                            "cc-by-nd-4.0",
                            "cc0-1.0",
                            "openrail",
                            "openrail++",
                            "creativeml-openrail-m",
                            "bigscience-openrail-m",
                            "bigscience-bloom-rail-1.0",
                            "bigcode-openrail-m",
                            "llama2",
                            "llama3",
                            "llama3.1",
                            "llama3.2",
                            "llama3.3",
                            "gemma",
                            "afl-3.0",
                            "gpl-3.0",
                            "lgpl-3.0",
                            "agpl-3.0",
                            "bsd-3-clause",
                            "bsd-2-clause",
                            "wtfpl",
                            "unlicense",
                            "other"
                        ],
                        "type": "string",
                        "description": "Filter to a specific license (post-fetch filter).",
                        "default": ""
                    },
                    "language": {
                        "title": "Language filter",
                        "type": "string",
                        "description": "Filter records whose tags contain this 2-letter language code (e.g. `en`, `fr`, `zh`)."
                    },
                    "sort": {
                        "title": "Sort by (mode=search)",
                        "enum": [
                            "",
                            "trendingScore",
                            "downloads",
                            "likes",
                            "lastModified",
                            "createdAt"
                        ],
                        "type": "string",
                        "description": "Server-side sort key. Leave blank for relevance-based sort.",
                        "default": ""
                    },
                    "direction": {
                        "title": "Sort direction",
                        "enum": [
                            "desc",
                            "asc"
                        ],
                        "type": "string",
                        "description": "Direction for the `sort` key.",
                        "default": "desc"
                    },
                    "minDownloads": {
                        "title": "Min downloads (post-filter)",
                        "minimum": 0,
                        "maximum": 1000000000,
                        "type": "integer",
                        "description": "Drop records with fewer downloads than this."
                    },
                    "minLikes": {
                        "title": "Min likes (post-filter)",
                        "minimum": 0,
                        "maximum": 1000000,
                        "type": "integer",
                        "description": "Drop records with fewer likes than this."
                    },
                    "includeFullDetails": {
                        "title": "Include full repo details",
                        "type": "boolean",
                        "description": "Request `?full=true` from the Hub API to include sibling files, cardData, config, and tags. Heavier payloads but richer records.",
                        "default": false
                    },
                    "maxItems": {
                        "title": "Max items",
                        "minimum": 1,
                        "maximum": 10000,
                        "type": "integer",
                        "description": "Hard cap on emitted records.",
                        "default": 50
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
