# Webflow Templates Scraper (`crawlerbros/webflow-templates-scraper`) Actor

Scrape the Webflow template marketplace. Browse by category, designer, or curated lists; get template name, designer, pricing, preview URL, thumbnails, styles, and CMS / e-commerce metadata

- **URL**: https://apify.com/crawlerbros/webflow-templates-scraper.md
- **Developed by:** [Crawler Bros](https://apify.com/crawlerbros) (community)
- **Categories:** Developer tools, E-commerce, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 7 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

## Webflow Templates Scraper

Scrape the [Webflow Templates marketplace](https://webflow.com/templates) — the no-code design platform's curated catalog of professional, ready-to-launch website templates. Pull rich metadata for hundreds of templates across 26 categories: name, designer, pricing, preview URL, thumbnails, supported features (CMS, e-commerce, animations), popularity score, and approval date.

This actor is ideal for design agencies sourcing client kits, web-design researchers studying marketplace trends, SaaS founders monitoring competing landing-page templates, and analysts benchmarking pricing across no-code creators.

### What you get

For every Webflow template the scraper emits a flat record containing the fields available on the listing card plus enrichment from the template detail page:

- **Identification** — `slug`, `templateId`, `templateUrl`
- **Name & description** — `name`, `description`
- **Designer** — `designerName`, `designerSlug`, `designerUrl`, `designerAvatarUrl`
- **Pricing** — `price` (numeric USD), `pricingType` (`free` / `paid`), `pricingDisplay` (e.g. `"$99 USD"`), `currency`
- **Preview & images** — `previewUrl` (the live `.webflow.io` demo), `thumbnailUrl`, `thumbnailSecondaryUrl`, `heroImageUrl`
- **Categorization** — `category`, `categories[]`, `categoryUrls[]`, `tags[]`, `templateType` (One Page / Multi Page / Multi Layout), `styles[]` (Modern, Dark, Bold, …)
- **Capabilities** — `hasCms`, `hasEcommerce`, `hasInteractions`, `hasAnimations`
- **Popularity / freshness** — `popularityScore` (0–10), `approvalDate`, `approvalDateIso`
- **Metadata** — `recordType` (`template`), `scrapedAt`

Empty fields are omitted, so every record contains only real data — no `null`, no `""`, no `[]`.

### Modes

| Mode | What it does |
|---|---|
| `byCategory` (default) | Browse every template in a chosen Webflow category (26 supported). |
| `byDesigner` | Pull all templates published by a specific designer profile. |
| `byUrls` | Fetch one or more templates by their direct `webflow.com/templates/html/<slug>` URL or bare slug. |
| `popular` | Read the curated front-page list of featured / popular templates. |
| `byPricing` | Aggregate across every category and apply price-based filters (e.g. all free templates marketplace-wide). |

### Filters

- **`pricingType`** — `all`, `free`, `paid`
- **`minPrice` / `maxPrice`** — USD price range
- **`templateType`** — `One Page`, `Multi Page`, `Multi Layout`
- **`style`** — `Modern`, `Minimal`, `Bold`, `Corporate`, `Dark`, `Light`, `Playful`, `Retro`, `Illustration`
- **`cmsEnabled`** — keep only CMS-powered templates
- **`ecommerceEnabled`** — keep only e-commerce templates
- **`minPopularity`** — popularity score threshold (0–10)
- **`containsKeyword`** — substring match across name, description, designer, category, tags, styles
- **`sortBy`** — `featured`, `popularity`, `newest`, `oldest`, `name-asc`, `name-desc`, `price-low-high`, `price-high-low`
- **`fetchDetail`** — set to `false` for fastest listing-only mode (skips per-template detail fetches)
- **`maxItems`** — cap (default 25)

### Example input

```json
{
  "mode": "byCategory",
  "category": "professional-services-websites",
  "pricingType": "all",
  "sortBy": "featured",
  "maxItems": 15
}
````

```json
{
  "mode": "byPricing",
  "pricingType": "free",
  "maxItems": 50
}
```

```json
{
  "mode": "byDesigner",
  "designerSlug": "softvence",
  "maxItems": 25
}
```

```json
{
  "mode": "byUrls",
  "templateUrls": [
    "https://webflow.com/templates/html/bim-website-template",
    "aeline-website-template"
  ]
}
```

### Example output (single record)

```json
{
  "slug": "aeline-website-template",
  "templateId": "69c1822d013dea35257ece4b",
  "name": "Aeline",
  "description": "Modern multi-layout template for portfolio agencies.",
  "templateUrl": "https://webflow.com/templates/html/aeline-website-template",
  "previewUrl": "https://aeline.webflow.io",
  "designerName": "Temlis",
  "designerSlug": "temlis",
  "designerUrl": "https://webflow.com/templates/designers/temlis",
  "designerAvatarUrl": "https://cdn.prod.website-files.com/.../LOgo-temlis1.webp",
  "thumbnailUrl": "https://cdn.prod.website-files.com/.../aeline.webp",
  "thumbnailSecondaryUrl": "https://cdn.prod.website-files.com/.../Thumbnail_hover_1x.webp",
  "heroImageUrl": "https://cdn.prod.website-files.com/.../aeline-hero.webp",
  "price": 169.0,
  "currency": "USD",
  "pricingType": "paid",
  "pricingDisplay": "$169 USD",
  "templateType": "Multi Layout",
  "styles": ["Modern", "Light"],
  "category": "professional-services-websites",
  "categories": ["professional-services-websites"],
  "hasCms": true,
  "hasInteractions": true,
  "hasAnimations": true,
  "popularityScore": 6.78,
  "approvalDate": "March 23, 2026",
  "approvalDateIso": "2026-03-23",
  "recordType": "template",
  "scrapedAt": "2026-05-21T07:42:00+00:00"
}
```

### Data Source

This actor scrapes Webflow's public templates marketplace at `webflow.com/templates`. No authentication, cookies, or API keys are required — the catalog is publicly accessible to every visitor. The scraper uses standard HTTP requests with a modern User-Agent; no proxy is required to reach the data, though Apify's free `AUTO` datacenter proxy is available as a fallback if needed.

### FAQ

#### Why are some fields missing from certain records?

Webflow templates differ in how complete their listing metadata is. Free templates and brand-new releases sometimes lack a popularity score or approval date. The scraper omits empty fields rather than emitting `null`, so the absence of a field signals that Webflow itself does not publish that data for that template.

#### Can I get all free Webflow templates?

Yes — use `mode: "byPricing"` with `pricingType: "free"` to aggregate every free template across all 26 categories.

#### Does this work without Apify proxy?

Yes. Webflow's templates marketplace is publicly accessible and rarely rate-limits non-aggressive traffic. The scraper inserts polite delays (~250 ms between detail-page fetches) by default.

#### How does it discover preview demo sites?

Each `webflow.com/templates/html/<slug>` detail page embeds a live preview link pointing to the designer's `.webflow.io` subdomain. The scraper extracts the first such URL when `fetchDetail` is enabled (default).

#### How are categories normalized?

The scraper accepts friendly aliases (e.g. `business`, `portfolio`, `ecommerce`, `restaurant`) and maps them to Webflow's canonical category slugs (`professional-services-websites`, `portfolio-and-agency-websites`, `retail-and-e-commerce-websites`, `food-and-drink-websites`). The full list of 26 canonical categories is exposed as a dropdown in the input form.

#### Why don't I see the search mode?

Webflow's templates search bar is client-side JavaScript that hits an internal API. Server-rendered HTML for search results matches the homepage exactly, so search is not reliably scrapeable through pure HTTP. Use `byCategory` plus the `containsKeyword` filter as the equivalent — it searches name, description, designer, category, tags, and styles.

#### Will the scraper handle pagination on category pages?

Webflow renders the entire category catalog on a single SSR page (typically 100 templates per category). No pagination is needed — the scraper grabs them all in one request and applies your `maxItems` cap client-side.

### Pricing & cost

This actor runs on Apify's free plan with no paid add-ons required. Each run consumes a small amount of compute proportional to `maxItems × fetchDetail` (one extra HTTP request per template when enriching with detail pages). Disable `fetchDetail` for the cheapest listing-only mode.

# Actor input Schema

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

How to discover templates.

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

Webflow template category to browse. Accepts a canonical slug or a short alias. Canonical slugs: architecture-and-design-websites, arts-and-entertainment-websites, blog-and-editorial-websites, community-and-nonprofit-websites, documentation-websites, education-websites, environment-websites, food-and-drink-websites, government-websites, hair-and-beauty-websites, home-services-websites, hr-and-hiring-websites, launch-and-coming-soon-websites, medical-websites, music-and-audio-websites, personal-websites, portfolio-and-agency-websites, professional-services-websites, real-estate-websites, retail-and-e-commerce-websites, technology-websites, transportation-websites, travel-websites, ui-kit-websites, weddings-and-events-websites, wellness-websites. Aliases (resolved server-side): business -> professional-services-websites, agency -> portfolio-and-agency-websites, portfolio -> portfolio-and-agency-websites, ecommerce -> retail-and-e-commerce-websites, blog -> blog-and-editorial-websites, restaurant -> food-and-drink-websites, tech / saas -> technology-websites, fitness / wellness -> wellness-websites, etc.

## `designerSlug` (type: `string`):

Designer URL or slug, e.g. `softvence` or `https://webflow.com/templates/designers/softvence`.

## `templateUrls` (type: `array`):

List of webflow.com/templates/html/<slug> URLs (or bare slugs).

## `pricingType` (type: `string`):

Filter to free or paid templates only.

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

Drop templates priced below this value.

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

Drop templates priced above this value.

## `templateType` (type: `string`):

Restrict to single-page, multi-page, or multi-layout templates.

## `style` (type: `string`):

Restrict to templates tagged with this visual style.

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

Order returned records.

## `responsive` (type: `boolean`):

Keep templates flagged responsive (all Webflow templates are responsive — this is informational).

## `cmsEnabled` (type: `boolean`):

Keep only templates that ship with Webflow CMS collections.

## `ecommerceEnabled` (type: `boolean`):

Keep only templates that ship with the Webflow Ecommerce module.

## `minPopularity` (type: `integer`):

Drop templates with a popularity score below this threshold (0 - 10).

## `containsKeyword` (type: `string`):

Substring match across name, description, designer, category, tags, and styles.

## `fetchDetail` (type: `boolean`):

Enrich each record with preview URL, description, and feature flags from the template detail page. Slower but more complete. Disable for fastest listing-only mode.

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

Hard cap on emitted records.

## Actor input object example

```json
{
  "mode": "byCategory",
  "category": "professional-services-websites",
  "templateUrls": [],
  "pricingType": "all",
  "templateType": "all",
  "style": "all",
  "sortBy": "featured",
  "responsive": false,
  "cmsEnabled": false,
  "ecommerceEnabled": false,
  "fetchDetail": true,
  "maxItems": 25
}
```

# Actor output Schema

## `templates` (type: `string`):

Dataset containing all scraped Webflow templates.

# 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": "byCategory",
    "category": "professional-services-websites",
    "templateUrls": [],
    "pricingType": "all",
    "templateType": "all",
    "style": "all",
    "sortBy": "featured",
    "responsive": false,
    "cmsEnabled": false,
    "ecommerceEnabled": false,
    "fetchDetail": true,
    "maxItems": 25
};

// Run the Actor and wait for it to finish
const run = await client.actor("crawlerbros/webflow-templates-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": "byCategory",
    "category": "professional-services-websites",
    "templateUrls": [],
    "pricingType": "all",
    "templateType": "all",
    "style": "all",
    "sortBy": "featured",
    "responsive": False,
    "cmsEnabled": False,
    "ecommerceEnabled": False,
    "fetchDetail": True,
    "maxItems": 25,
}

# Run the Actor and wait for it to finish
run = client.actor("crawlerbros/webflow-templates-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": "byCategory",
  "category": "professional-services-websites",
  "templateUrls": [],
  "pricingType": "all",
  "templateType": "all",
  "style": "all",
  "sortBy": "featured",
  "responsive": false,
  "cmsEnabled": false,
  "ecommerceEnabled": false,
  "fetchDetail": true,
  "maxItems": 25
}' |
apify call crawlerbros/webflow-templates-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Webflow Templates Scraper",
        "description": "Scrape the Webflow template marketplace. Browse by category, designer, or curated lists; get template name, designer, pricing, preview URL, thumbnails, styles, and CMS / e-commerce metadata",
        "version": "1.0",
        "x-build-id": "taqeMEWWverqGjsse"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/crawlerbros~webflow-templates-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-crawlerbros-webflow-templates-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~webflow-templates-scraper/runs": {
            "post": {
                "operationId": "runs-sync-crawlerbros-webflow-templates-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~webflow-templates-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-crawlerbros-webflow-templates-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": [
                            "byCategory",
                            "byDesigner",
                            "byUrls",
                            "popular",
                            "byPricing"
                        ],
                        "type": "string",
                        "description": "How to discover templates.",
                        "default": "byCategory"
                    },
                    "category": {
                        "title": "Category (mode=byCategory)",
                        "type": "string",
                        "description": "Webflow template category to browse. Accepts a canonical slug or a short alias. Canonical slugs: architecture-and-design-websites, arts-and-entertainment-websites, blog-and-editorial-websites, community-and-nonprofit-websites, documentation-websites, education-websites, environment-websites, food-and-drink-websites, government-websites, hair-and-beauty-websites, home-services-websites, hr-and-hiring-websites, launch-and-coming-soon-websites, medical-websites, music-and-audio-websites, personal-websites, portfolio-and-agency-websites, professional-services-websites, real-estate-websites, retail-and-e-commerce-websites, technology-websites, transportation-websites, travel-websites, ui-kit-websites, weddings-and-events-websites, wellness-websites. Aliases (resolved server-side): business -> professional-services-websites, agency -> portfolio-and-agency-websites, portfolio -> portfolio-and-agency-websites, ecommerce -> retail-and-e-commerce-websites, blog -> blog-and-editorial-websites, restaurant -> food-and-drink-websites, tech / saas -> technology-websites, fitness / wellness -> wellness-websites, etc.",
                        "default": "professional-services-websites"
                    },
                    "designerSlug": {
                        "title": "Designer slug or URL (mode=byDesigner)",
                        "type": "string",
                        "description": "Designer URL or slug, e.g. `softvence` or `https://webflow.com/templates/designers/softvence`."
                    },
                    "templateUrls": {
                        "title": "Template URLs (mode=byUrls)",
                        "type": "array",
                        "description": "List of webflow.com/templates/html/<slug> URLs (or bare slugs).",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "pricingType": {
                        "title": "Pricing type",
                        "enum": [
                            "all",
                            "free",
                            "paid"
                        ],
                        "type": "string",
                        "description": "Filter to free or paid templates only.",
                        "default": "all"
                    },
                    "minPrice": {
                        "title": "Min price (USD)",
                        "minimum": 0,
                        "maximum": 100000,
                        "type": "integer",
                        "description": "Drop templates priced below this value."
                    },
                    "maxPrice": {
                        "title": "Max price (USD)",
                        "minimum": 0,
                        "maximum": 100000,
                        "type": "integer",
                        "description": "Drop templates priced above this value."
                    },
                    "templateType": {
                        "title": "Template type",
                        "enum": [
                            "all",
                            "One Page",
                            "Multi Page",
                            "Multi Layout"
                        ],
                        "type": "string",
                        "description": "Restrict to single-page, multi-page, or multi-layout templates.",
                        "default": "all"
                    },
                    "style": {
                        "title": "Style",
                        "enum": [
                            "all",
                            "Modern",
                            "Minimal",
                            "Bold",
                            "Corporate",
                            "Dark",
                            "Light",
                            "Playful",
                            "Retro",
                            "Illustration"
                        ],
                        "type": "string",
                        "description": "Restrict to templates tagged with this visual style.",
                        "default": "all"
                    },
                    "sortBy": {
                        "title": "Sort by",
                        "enum": [
                            "featured",
                            "popularity",
                            "newest",
                            "oldest",
                            "name-asc",
                            "name-desc",
                            "price-low-high",
                            "price-high-low"
                        ],
                        "type": "string",
                        "description": "Order returned records.",
                        "default": "featured"
                    },
                    "responsive": {
                        "title": "Responsive only",
                        "type": "boolean",
                        "description": "Keep templates flagged responsive (all Webflow templates are responsive — this is informational).",
                        "default": false
                    },
                    "cmsEnabled": {
                        "title": "CMS enabled only",
                        "type": "boolean",
                        "description": "Keep only templates that ship with Webflow CMS collections.",
                        "default": false
                    },
                    "ecommerceEnabled": {
                        "title": "E-commerce enabled only",
                        "type": "boolean",
                        "description": "Keep only templates that ship with the Webflow Ecommerce module.",
                        "default": false
                    },
                    "minPopularity": {
                        "title": "Min popularity score",
                        "minimum": 0,
                        "maximum": 10,
                        "type": "integer",
                        "description": "Drop templates with a popularity score below this threshold (0 - 10)."
                    },
                    "containsKeyword": {
                        "title": "Contains keyword",
                        "type": "string",
                        "description": "Substring match across name, description, designer, category, tags, and styles."
                    },
                    "fetchDetail": {
                        "title": "Fetch template detail pages",
                        "type": "boolean",
                        "description": "Enrich each record with preview URL, description, and feature flags from the template detail page. Slower but more complete. Disable for fastest listing-only mode.",
                        "default": true
                    },
                    "maxItems": {
                        "title": "Max items",
                        "minimum": 1,
                        "maximum": 1000,
                        "type": "integer",
                        "description": "Hard cap on emitted records.",
                        "default": 25
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
