# Shopee Products Scraper (`devcake/shopee-products-scraper`) Actor

E-commerce scraper for Shopee — export product data to JSON, CSV & Excel. Extract prices, sales & reviews from 8 marketplaces.

- **URL**: https://apify.com/devcake/shopee-products-scraper.md
- **Developed by:** [devcake](https://apify.com/devcake) (community)
- **Categories:** E-commerce
- **Stats:** 60 total users, 5 monthly users, 73.1% runs succeeded, 1 bookmarks
- **User rating**: No ratings yet

## Pricing

from $4.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

## What's an Apify Actor?

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

## How to integrate an Actor?

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

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

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

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

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

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

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

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

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

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

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


# README

## 🛒 Shopee Scraper - Extract Product & Seller Data from Southeast Asia's #1 E-commerce Platform

---

🔍 Looking for a **Shopee crawler** to extract product data, monitor competitor prices, and analyze sellers? This **e-commerce scraper** extracts 40+ data fields from 8 Southeast Asian and Latin American marketplaces — no coding required. Perfect for **price monitoring**, **product research**, and **marketplace analytics**.

---

### 📑 Table of Contents

- [What is Shopee Scraper?](#-what-is-shopee-scraper)
- [Supported Marketplaces](#-supported-shopee-marketplaces)
- [How to Use](#-how-to-use)
- [Seller Intelligence](#-seller-intelligence--shop-analytics-new)
- [Cookies Setup](#-cookies-required)
- [Product Data Output](#-product-data-output)
- [Input Parameters](#-input-parameters)

---

### 🎯 What is Shopee Scraper?

Shopee Scraper is a **powerful no-code data extraction tool** that collects comprehensive product and seller information from [Shopee](https://shopee.com) — Southeast Asia's largest e-commerce platform with 52% market share and 10.9 billion orders in 2024.

#### ✨ Key Features

- **🌐 8 Shopee Markets** — Mexico, Indonesia, Malaysia, Thailand, Singapore, Philippines, Vietnam, Brazil
- **📊 40+ Data Fields** — Product details, pricing, sales analytics, ratings, reviews, and more
- **🏪 Seller Intelligence** — Shop verification status, response rates, follower counts, contact verification
- **⚡ Fast Parallel Processing** — Optimized for speed with concurrent data fetching
- **🛡️ Anti-Bot Protection** — Built-in Camoufox browser technology bypasses basic protections
- **💰 No Monthly Fee** — Pay only for the data you extract (pay-per-result pricing)
- **🔐 Cookie Authentication** — Use your logged-in session for higher rate limits and better results

#### 💼 Use Cases

| Who | For What |
|-----|----------|
| **E-commerce Sellers** | Track competitor prices, analyze best-sellers, monitor market trends |
| **Dropshippers** | Find high-demand products with verified sellers and fast response times |
| **Market Researchers** | Analyze pricing strategies and sales patterns across 8 countries |
| **Brand Managers** | Monitor official stores, detect counterfeits, track unauthorized sellers |
| **Data Analysts** | Build pricing databases, sales dashboards, and trend reports |
| **Affiliate Marketers** | Identify top-performing shops with verified contact information |

---

### 🌍 Supported Shopee Marketplaces

This scraper works across **8 Shopee domains**:

| Country | Domain | Currency | Language |
|:-------:|--------|:--------:|:--------:|
| 🇲🇽 Mexico | shopee.com.mx | MXN | Spanish |
| 🇮🇩 Indonesia | shopee.co.id | IDR | Indonesian |
| 🇲🇾 Malaysia | shopee.com.my | MYR | English |
| 🇹🇭 Thailand | shopee.co.th | THB | Thai |
| 🇸🇬 Singapore | shopee.sg | SGD | English |
| 🇵🇭 Philippines | shopee.ph | PHP | English |
| 🇻🇳 Vietnam | shopee.vn | VND | Vietnamese |
| 🇧🇷 Brazil | shopee.com.br | BRL | Portuguese |

---

### 🚀 How to Use

#### 🔍 Basic Product Search

Search for products by keyword:

```json
{
  "searchKeywords": ["wireless earbuds"],
  "domain": "com.mx",
  "maxItems": 100
}
````

#### 📊 Sort Options

| Goal | Configuration |
|------|---------------|
| 💰 Cheapest first | `"sortBy": "price", "sortOrder": "asc"` |
| 💎 Most expensive first | `"sortBy": "price", "sortOrder": "desc"` |
| 🔥 Best selling | `"sortBy": "sales", "sortOrder": "desc"` |
| 🆕 Newest listings | `"sortBy": "ctime", "sortOrder": "desc"` |
| 🎯 Most relevant | `"sortBy": "relevancy", "sortOrder": "desc"` |

#### 🔗 Scrape from Direct Search URLs

Use direct Shopee search URLs with filters, facets, and custom sorting:

```json
{
  "startUrls": [
    "https://shopee.com.mx/search?filters=9&keyword=laptop&noCorrection=true&page=0",
    "https://shopee.com.mx/search?facet=11058769&filters=9&keyword=laptop&noCorrection=true&page=0&sortBy=ctime"
  ],
  "domain": "com.mx",
  "maxItems": 60
}
```

**URL Parameters Supported:**
| Parameter | Description |
|-----------|-------------|
| `keyword` | Search term |
| `filters` | Filter ID (e.g., `9` for a common filter) |
| `facet` | Category/facet ID for filtering |
| `sortBy` | Sort method: `ctime`, `sales`, `price`, `relevancy` |
| `noCorrection` | Disable auto-correction |
| `page` | Page number (0-indexed) |

> 💡 **Tip:** When `startUrls` are provided, the `searchKeywords` and sort options are ignored. The scraper will use the exact URLs you provide.

#### 📝 Multiple Keywords

Search multiple terms in one run:

```json
{
  "searchKeywords": ["laptop gaming", "laptop office", "macbook"],
  "domain": "co.id",
  "maxItems": 200
}
```

***

### 🏪 Seller Intelligence & Shop Analytics (NEW!)

Get detailed insights about sellers with our **Shop Enrichment** feature. Understand seller credibility, performance metrics, and verification status to make informed business decisions.

#### Enable Shop Enrichment

```json
{
  "searchKeywords": ["wireless earbuds"],
  "domain": "com.mx",
  "maxItems": 100,
  "enrichWithShopInfo": true,
  "maxShopsToEnrich": 50
}
```

#### 📊 What Seller Data You Get

| Data Point | Description | Business Value |
|------------|-------------|----------------|
| **Follower Count** | Shop's total followers | Gauge seller popularity & trust |
| **Rating Star** | Average shop rating (0-5) | Assess seller quality |
| **Item Count** | Products listed by seller | Understand shop size |
| **Response Rate** | % of customer inquiries answered | Evaluate customer service |
| **Response Time** | Average reply time in seconds | Check seller responsiveness |
| **Phone Verified** | Phone number confirmed | Seller legitimacy indicator |
| **Email Verified** | Email address confirmed | Account authenticity |
| **Shopee Verified** | Official verification badge | Platform-trusted seller |
| **Official Shop** | Brand/official store status | Authorized retailer check |
| **Preferred Seller** | Top performer badge | High-volume trusted seller |
| **Chat Status** | Chat enabled/disabled | Customer communication availability |

#### 💡 Why Seller Intelligence Matters

| Use Case | Benefit |
|----------|---------|
| **Supplier Vetting** | Verify seller credibility before partnering |
| **Competitor Analysis** | Benchmark against top-rated competitors |
| **Risk Assessment** | Identify unverified or low-response sellers |
| **Quality Scoring** | Rank products by seller trustworthiness |
| **Dropshipping Research** | Find reliable suppliers with fast response times |

***

### 🔐 Cookies (REQUIRED)

**⚠️ IMPORTANT: Authentication cookies are REQUIRED for this scraper to work.** Without valid cookies from a logged-in Shopee session, the scraper will not be able to extract data due to Shopee's anti-bot protection.

Using cookies from your logged-in Shopee session is **mandatory** and ensures reliable data extraction with higher rate limits.

***

#### 📥 How to Get Cookies with EditThisCookie

##### Step 1: Install EditThisCookie Extension

1. Go to [Chrome Web Store](https://chromewebstore.google.com/detail/editthiscookie-v3/ojfebgpkimhlhcblbalbfjblapadhbol)
2. Click **"Add to Chrome"**
3. Confirm by clicking **"Add extension"**

***

##### Step 2: Log In to Your Target Shopee Domain

Visit the Shopee domain you want to scrape and log in:

> ⚠️ **IMPORTANT:** Complete any CAPTCHA verification if prompted during login.

***

##### Step 3: Export Cookies with EditThisCookie

1. Click the 🍪 **EditThisCookie** icon in your Chrome toolbar
2. Click the **Export** button
3. Cookies are automatically copied to your clipboard

> ![EditThisCookie Export](https://api.apify.com/v2/key-value-stores/cQUQRf80qWJ9O87Dl/records/cookies-export.png)

***

##### Step 4: Paste Into Scraper Configuration

1. In your Apify actor input, find the **Cookies** field
2. Paste the JSON array you copied
3. Verify the `domain` in cookies matches your target domain

***

### 📦 Product Data Output

Each scraped product returns **40+ structured data fields** including product details and optional seller analytics:

```json
{
  "id": 123456789,
  "shopId": 987654321,
  "name": "Wireless Bluetooth Earbuds Pro with Noise Cancellation",
  "price": 299.00,
  "priceMin": 249.00,
  "priceMax": 349.00,
  "originalPrice": 499.00,
  "discount": "40%",
  "rawDiscount": 40,
  "currency": "MXN",
  "stock": 500,
  "sold": 15420,
  "historicalSold": 89500,
  "rating": 4.8,
  "reviewCount": 3256,
  "viewCount": 125000,
  "likeCount": 8900,
  "shopName": "TechStore Official",
  "shopLocation": "Ciudad de Mexico",
  "isOfficialShop": true,
  "isPreferredSeller": true,
  "isMallProduct": true,
  "fulfillmentType": "Fulfilled by Shopee",
  "freeShipping": true,
  "voucherAvailable": true,
  "isAd": false,
  "categoryId": 100630,
  "imageUrl": "https://cf.shopee.com.mx/file/...",
  "images": ["https://cf.shopee.com.mx/file/..."],
  "productUrl": "https://shopee.com.mx/product-i.987654321.123456789",
  "ratingDistribution": {
    "star5": 2800,
    "star4": 300,
    "star3": 100,
    "star2": 30,
    "star1": 26
  },
  "shopFollowerCount": 15500,
  "shopRatingStar": 4.9,
  "shopItemCount": 245,
  "shopResponseRate": 95,
  "shopResponseTime": 3600,
  "shopIsVerified": true,
  "shopIsOfficial": true,
  "shopIsPreferred": true,
  "shopPhoneVerified": true,
  "shopEmailVerified": true,
  "shopChatDisabled": false,
  "scrapedAt": "2026-03-01T10:30:00.000Z"
}
```

### ⚙️ Input Parameters

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `searchKeywords` | array | `["camiseta"]` | Product search terms |
| `domain` | string | `com.mx` | Shopee marketplace domain |
| `maxItems` | integer | `60` | Maximum products to scrape (1-1000) |
| `sortBy` | string | `relevancy` | Sort method: `relevancy`, `price`, `sales`, `ctime` |
| `sortOrder` | string | `desc` | Sort direction: `asc` or `desc` |
| `startUrls` | array | `[]` | Direct Shopee search URLs with filters/facets |
| `cookies` | array | `[]` | Authentication cookies for logged-in access |
| `enrichWithShopInfo` | boolean | `false` | **Enable seller intelligence** - fetch detailed shop data |
| `maxShopsToEnrich` | integer | `50` | Maximum unique shops to enrich (when enabled) |

***

<div align="center">

#### 🚀 Start Extracting Shopee Data Today

**Product listings • Pricing data • Sales analytics • Seller intelligence • Customer reviews**

**No coding required — extract data in seconds!**

</div>

***

# Actor input Schema

## `searchKeywords` (type: `array`):

Product search keywords to find on Shopee. Add multiple keywords to search for different products.

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

Optional: Direct Shopee search URLs to scrape. Use this to scrape with specific filters, facets, or sorting. Example: https://shopee.com.mx/search?filters=9\&keyword=laptop\&noCorrection=true\&page=0. Both startUrls and searchKeywords can be used together - results will be combined.

## `domain` (type: `string`):

Shopee domain/country to scrape. IMPORTANT: Cookies must be from the same domain you select here.

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

Maximum number of products to scrape

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

Sort method for search results

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

Sort direction

## `cookies` (type: `array`):

REQUIRED: Log into Shopee, complete captcha if prompted during login, export cookies using EditThisCookie extension. Checkout readme for detailed information.

## `enrichWithShopInfo` (type: `boolean`):

Fetch detailed shop information for each unique shop (slower but more comprehensive data)

## `maxShopsToEnrich` (type: `integer`):

Maximum number of unique shops to fetch detailed info for when enrichWithShopInfo is enabled

## Actor input object example

```json
{
  "searchKeywords": [
    "camiseta"
  ],
  "startUrls": [],
  "domain": "com.mx",
  "maxItems": 60,
  "sortBy": "relevancy",
  "sortOrder": "desc",
  "enrichWithShopInfo": false,
  "maxShopsToEnrich": 50
}
```

# Actor output Schema

## `products` (type: `string`):

No description

# 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 = {
    "searchKeywords": [
        "camiseta"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("devcake/shopee-products-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 = { "searchKeywords": ["camiseta"] }

# Run the Actor and wait for it to finish
run = client.actor("devcake/shopee-products-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 '{
  "searchKeywords": [
    "camiseta"
  ]
}' |
apify call devcake/shopee-products-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Shopee Products Scraper",
        "description": "E-commerce scraper for Shopee — export product data to JSON, CSV & Excel. Extract prices, sales & reviews from 8 marketplaces.",
        "version": "0.0",
        "x-build-id": "Y1kVlmQNmFEOESrbG"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/devcake~shopee-products-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-devcake-shopee-products-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/devcake~shopee-products-scraper/runs": {
            "post": {
                "operationId": "runs-sync-devcake-shopee-products-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/devcake~shopee-products-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-devcake-shopee-products-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": [
                    "cookies"
                ],
                "properties": {
                    "searchKeywords": {
                        "title": "Search Keywords",
                        "type": "array",
                        "description": "Product search keywords to find on Shopee. Add multiple keywords to search for different products.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "startUrls": {
                        "title": "Start URLs (Direct Shopee Search URLs)",
                        "type": "array",
                        "description": "Optional: Direct Shopee search URLs to scrape. Use this to scrape with specific filters, facets, or sorting. Example: https://shopee.com.mx/search?filters=9&keyword=laptop&noCorrection=true&page=0. Both startUrls and searchKeywords can be used together - results will be combined.",
                        "default": [],
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "domain": {
                        "title": "Shopee Domain",
                        "enum": [
                            "com.mx",
                            "co.id",
                            "com.my",
                            "co.th",
                            "sg",
                            "ph",
                            "vn",
                            "com.br"
                        ],
                        "type": "string",
                        "description": "Shopee domain/country to scrape. IMPORTANT: Cookies must be from the same domain you select here.",
                        "default": "com.mx"
                    },
                    "maxItems": {
                        "title": "Maximum Items",
                        "minimum": 1,
                        "maximum": 1000,
                        "type": "integer",
                        "description": "Maximum number of products to scrape",
                        "default": 60
                    },
                    "sortBy": {
                        "title": "Sort By",
                        "enum": [
                            "relevancy",
                            "price",
                            "sales",
                            "ctime"
                        ],
                        "type": "string",
                        "description": "Sort method for search results",
                        "default": "relevancy"
                    },
                    "sortOrder": {
                        "title": "Sort Order",
                        "enum": [
                            "asc",
                            "desc"
                        ],
                        "type": "string",
                        "description": "Sort direction",
                        "default": "desc"
                    },
                    "cookies": {
                        "title": "Authentication Cookies (REQUIRED)",
                        "minItems": 1,
                        "type": "array",
                        "description": "REQUIRED: Log into Shopee, complete captcha if prompted during login, export cookies using EditThisCookie extension. Checkout readme for detailed information.",
                        "items": {
                            "type": "object",
                            "properties": {
                                "name": {
                                    "type": "string",
                                    "title": "Cookie Name",
                                    "description": "Cookie name (e.g., SPC_U, SPC_ST)"
                                },
                                "value": {
                                    "type": "string",
                                    "title": "Cookie Value",
                                    "description": "Cookie value"
                                },
                                "domain": {
                                    "type": "string",
                                    "title": "Domain",
                                    "description": "Cookie domain (e.g., .shopee.com.mx)"
                                },
                                "path": {
                                    "type": "string",
                                    "title": "Path",
                                    "description": "Cookie path",
                                    "default": "/"
                                },
                                "secure": {
                                    "type": "boolean",
                                    "title": "Secure",
                                    "description": "Is cookie secure",
                                    "default": true
                                },
                                "httpOnly": {
                                    "type": "boolean",
                                    "title": "HTTP Only",
                                    "description": "Is cookie HTTP only",
                                    "default": false
                                }
                            },
                            "required": [
                                "name",
                                "value",
                                "domain"
                            ]
                        }
                    },
                    "enrichWithShopInfo": {
                        "title": "Enrich with Shop Info",
                        "type": "boolean",
                        "description": "Fetch detailed shop information for each unique shop (slower but more comprehensive data)",
                        "default": false
                    },
                    "maxShopsToEnrich": {
                        "title": "Max Shops to Enrich",
                        "minimum": 1,
                        "maximum": 500,
                        "type": "integer",
                        "description": "Maximum number of unique shops to fetch detailed info for when enrichWithShopInfo is enabled",
                        "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
