# RedNote API (`sovanza.inc/rednote-api`) Actor

RedNote API scrapes Xiaohongshu / RedNote keyword search results and extracts posts, authors, engagement metrics, images, video URLs, and optional detail data with proxy, cookies, storage state, and dataset export support.

- **URL**: https://apify.com/sovanza.inc/rednote-api.md
- **Developed by:** [Sovanza](https://apify.com/sovanza.inc) (community)
- **Categories:** Social media, Lead generation, Automation
- **Stats:** 2 total users, 0 monthly users, 0.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $6.00 / 1,000 rednote posts

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

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

### RedNote API – Xiaohongshu Keyword Scraper & Data Extractor

Scrape **Xiaohongshu (小红书)** / **RedNote** keyword search results and extract structured post data, author details, engagement metrics, and media URLs. Built with **Playwright** for dynamic pages, with proxy and session support for reliable runs on Apify.

### What is RedNote API and How Does It Work?

RedNote API is an Apify Actor that automates Xiaohongshu search in a headless browser, scrolls result feeds, and extracts post cards per keyword. Optionally it opens each **detail page** for richer fields (title, description, full media).

It is designed for:

- Social media researchers and analysts  
- Brand and product mention monitoring  
- Trend and keyword tracking teams  
- Data engineers feeding analytics pipelines  

**How it works:**

1. **Keyword search** — navigates to search results for each keyword and scrolls to collect post cards  
2. **Optional detail enrichment** — opens each note page when `includeDetails` is enabled (slower, more complete)  
3. **Structured output** — one dataset row per post (or per keyword error), with flattened fields plus nested `item` object  
4. **Resilience** — per-keyword retries, timeouts, and error rows that do not stop other keywords  

Xiaohongshu does not offer a simple public API for this use case; this Actor uses browser automation to match what users see on the web.

### Why Use This Scraper?

| Challenge | How this Actor helps |
|-----------|----------------------|
| Dynamic JavaScript content | Playwright renders real pages |
| Anti-bot / login walls | Apify Proxy, cookies, Playwright `storageState` |
| Inconsistent HTML | Two-stage extraction (search cards + optional detail) |
| Bulk keyword runs | Multiple keywords with configurable concurrency |
| Clean exports | Flattened columns + nested `item` for advanced use |

➡️ Output is exportable as **JSON, CSV, or Excel** from the Apify dataset, or via the Apify API.

### What Data Can You Extract?

Each successful post may include:

**Flattened fields (table-friendly)**

- `keyword`, `search_url`, `scraped_at`, `source`  
- `post_id`, `post_url`, `post_type`  
- `title`, `description`  
- `author_name`, `author_id`, `author_avatar`  
- `liked_count`, `comment_count`, `share_count`, `collected_count`  
- `images`, `image_count`, `video_url`, `cover_image`  

**Structured nested object**

- `item` — `note_card`, `interact_info`, media, tags, timestamps when available  

Empty fields are omitted from output (`_omit_empty`) so the dataset table stays clean.

### Features

- **Keyword search scraping** — one or many keywords per run  
- **Configurable limit** — `maxItems` per keyword (1–200)  
- **Detail enrichment** — optional per-post page visits  
- **Author & media toggles** — `includeAuthor`, `includeMedia`  
- **Dual domains** — `www.xiaohongshu.com` or `www.rednote.com`  
- **Proxy support** — Apify Proxy with country selection  
- **Session reuse** — `storageState` (recommended) or `cookies` array  
- **Concurrency control** — `maxConcurrency` 1–5 (higher = more blocking risk)  
- **Error-safe** — failed keywords produce error rows; other keywords continue  

### How to Use RedNote API on Apify

#### Using the Actor

1. **Go to RedNote API** on the Apify platform.  
2. Add one or more **keywords** in the input.  
3. Set **`maxItems`** per keyword (default `20`).  
4. **Recommended:** enable **Apify Proxy** via `proxyCountry` (residential helps with blocking).  
5. **If blocked:** provide **`storageState`** or **`cookies`** from a logged-in session.  
6. Choose **`includeDetails`** for richer data (slower).  
7. **Run** and export from the **Dataset** tab or use **Output** schema links.

#### Input Configuration

```json
{
  "keywords": ["skincare", "travel outfit"],
  "maxItems": 20,
  "baseDomain": "www.xiaohongshu.com",
  "proxyCountry": "AUTO_SELECT_PROXY_COUNTRY",
  "includeDetails": false,
  "includeAuthor": true,
  "includeMedia": true,
  "sortBy": "general",
  "headless": true,
  "maxConcurrency": 1
}
````

| Field | Description |
|--------|-------------|
| `keywords` | **Required.** One or more search keywords (string list). |
| `maxItems` | Max posts per keyword (default `20`, max `200`). |
| `proxyCountry` | `AUTO_SELECT_PROXY_COUNTRY`, country code, or `DISABLED`. |
| `baseDomain` | `www.xiaohongshu.com` or `www.rednote.com` if one domain is blocked. |
| `storageState` | Playwright storage state JSON (cookies + localStorage) — most reliable for logged-in sessions. |
| `storageStatePath` | Local path to storage state file (debugging). |
| `cookies` | Cookie array for authenticated scraping. |
| `includeDetails` | Open each post detail page for richer fields (slower). |
| `includeAuthor` | Extract author nickname, id, avatar (default `true`). |
| `includeMedia` | Extract images and video URLs (default `true`). |
| `sortBy` | `general` or `latest` (ignored safely if UI does not support). |
| `headless` | Run browser headless (default `true`; use `false` when debugging locally). |
| `maxConcurrency` | Keywords processed in parallel (default `1`, max `5`). |
| `exportStorageState` | **Local only:** headed browser to save `storage_state.json` after manual login. |

### Output

Results are stored in the **default dataset**. Use the **Output** schema in Console for the dataset API link (`?view=overview`).

#### Success row (illustrative)

```json
{
  "keyword": "skincare",
  "search_url": "https://www.xiaohongshu.com/search_result?keyword=skincare&source=web_search_result_notes&type=51",
  "post_id": "64f1a2b3c4d5e6f7890",
  "post_url": "https://www.xiaohongshu.com/explore/64f1a2b3c4d5e6f7890",
  "title": "My daily skincare routine",
  "author_name": "Alice",
  "liked_count": 1234,
  "images": ["https://example.com/image1.jpg"],
  "image_count": 1,
  "scraped_at": "2026-05-21T12:00:00.000Z",
  "source": "xiaohongshu",
  "item": {
    "id": "64f1a2b3c4d5e6f7890",
    "note_card": { "display_title": "My daily skincare routine" }
  }
}
```

#### Error row (keyword-level)

```json
{
  "keyword": "skincare",
  "url": "https://www.xiaohongshu.com/search_result?keyword=skincare",
  "error": "Blocked or empty search DOM detected"
}
```

### Anti-Blocking & Reliability

Xiaohongshu aggressively limits automation. For better success:

- Use **residential proxy** (`proxyCountry` not `DISABLED`)
- Keep **`maxConcurrency` low** (default `1`)
- Provide **`storageState`** or **`cookies`** when you see login or verification walls
- Try **`www.rednote.com`** if `xiaohongshu.com` is blocked in your region
- Use **`headless: false`** locally when debugging session export

The Actor retries failed keywords up to `MAX_RETRIES` and applies per-keyword timeouts.

### Performance

- **Fast mode:** `includeDetails: false` — search card data only
- **Rich mode:** `includeDetails: true` — opens each post (significantly slower)
- Higher `maxConcurrency` speeds multi-keyword runs but increases block risk
- `maxItems` caps volume per keyword for cost control

### Use Cases

- Social media research and content analysis
- Keyword and trend monitoring
- Product mention and review tracking
- Influencer and engagement benchmarking
- Data pipelines (warehouse, BI, ML feature stores) via Apify API

### Integrations & API

- Apify dataset export: JSON, CSV, Excel
- `apify-client` (Python / Node.js) for scheduled runs
- Zapier, Make, Google Sheets via dataset export
- Webhooks and schedules on Apify

### FAQ

#### What is RedNote API used for?

A Xiaohongshu keyword scraper that extracts search results, posts, authors, and engagement metrics for research and analytics.

#### Can I scrape without an official API?

Yes. The Actor uses Playwright browser automation against the public web interface.

#### Why am I getting empty results or errors?

Login walls, CAPTCHA, or blocking are common. Use proxy, `storageState`, or cookies, and lower concurrency.

#### Can I scrape multiple keywords in one run?

Yes. Each keyword runs independently; failures on one keyword do not stop others.

#### What is detail enrichment?

When `includeDetails` is true, the Actor visits each post URL for fuller title, description, and media fields.

#### Can I use this as a data API?

Yes. Integrate via the Apify platform API and consume dataset items programmatically.

#### How do I save a logged-in session locally?

Set `exportStorageState: true`, log in when the browser opens, then use the saved `storage_state.json` with `storageStatePath` or paste into `storageState`.

#### Does output include null columns?

No. The Actor omits empty/null fields from each row for cleaner tables.

### SEO Keywords (high-intent)

xiaohongshu scraper\
rednote api apify\
xiaohongshu keyword scraper\
rednote data extractor\
xiaohongshu search results scraper\
social media scraper china\
xiaohongshu post scraper\
rednote automation

### Why Choose This Actor?

- Built for Xiaohongshu / RedNote search specifically
- Flattened + nested output for spreadsheets and code
- Proxy, cookies, and storage state support
- Per-keyword error isolation
- Optional detail enrichment for depth vs speed

### Limitations

| Item | Detail |
|------|--------|
| **Platform rules** | You must comply with Xiaohongshu terms and applicable laws |
| **Blocking** | Success depends on proxy, session, and site changes |
| **No official API** | DOM changes may require Actor updates |
| **Rate / volume** | Keep concurrency and `maxItems` reasonable per account safety |
| **Detail mode cost** | `includeDetails` multiplies page loads per post |

### Running Locally

```bash
cd rednote-api
pip install -r requirements.txt
playwright install chromium
apify run
```

Or set `INPUT.json` / Apify CLI local storage. Use `exportStorageState` to capture login state for repeat runs.

### Deploy to Apify

1. Push from `rednote-api/` (`apify push` or Git integration).
2. Enable **Proxy** on runs when using `proxyCountry`.
3. Build and run with your keywords.
4. Use **Output** tab links for dataset export after completion.

### Get Started

Enter your keywords, enable proxy if needed, run once in fast mode, then enable `includeDetails` when you need richer post-level fields.

# Actor input Schema

## `keywords` (type: `array`):

Enter one or more Xiaohongshu / RedNote search keywords (one per line).

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

Maximum number of posts to collect per keyword (1–200).

## `proxyCountry` (type: `string`):

Residential proxy country (uses Apify Proxy). AUTO uses any country.

## `baseDomain` (type: `string`):

Which web domain to use for navigation and search. If one domain is blocked, try the other.

## `locale` (type: `string`):

Browser locale (advanced).

## `acceptLanguage` (type: `string`):

Extra header Accept-Language (advanced).

## `storageState` (type: `object,string`):

Playwright storage\_state JSON (cookies + localStorage). Most reliable way to reuse a logged-in session.

## `storageStatePath` (type: `string`):

Path to a local storage state JSON file (for local debugging).

## `exportStorageState` (type: `boolean`):

Local-only helper: opens a headed browser, lets you log in, then saves storage\_state.json and exits.

## `exportStorageStateWaitSec` (type: `integer`):

How long to wait for you to log in during export mode.

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

Optional cookies for authenticated scraping. Each item: { "name": "...", "value": "...", "domain": ".xiaohongshu.com", "path": "/" }.

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

Optional sort mode, e.g. "general" or "latest". If not supported by the current DOM, it is ignored safely.

## `searchType` (type: `string`):

Future-safe input. Default is "note".

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

If true, opens each note detail page for richer fields (slower). If false, uses search-card data only (faster).

## `includeAuthor` (type: `boolean`):

If true, attempts to extract author info (nickname, avatar, id when available).

## `includeMedia` (type: `boolean`):

If true, attempts to extract images/video fields.

## `headless` (type: `boolean`):

Run browser in headless mode.

## `maxConcurrency` (type: `integer`):

Maximum number of keywords processed concurrently. Higher values may increase blocking risk.

## Actor input object example

```json
{
  "maxItems": 20,
  "proxyCountry": "AUTO_SELECT_PROXY_COUNTRY",
  "baseDomain": "www.xiaohongshu.com",
  "locale": "en-US",
  "acceptLanguage": "en-US,en;q=0.9",
  "storageStatePath": "",
  "exportStorageState": false,
  "exportStorageStateWaitSec": 120,
  "sortBy": "general",
  "searchType": "note",
  "includeDetails": false,
  "includeAuthor": true,
  "includeMedia": true,
  "headless": true,
  "maxConcurrency": 1
}
```

# Actor output Schema

## `posts` (type: `string`):

Keyword search results with flattened fields and optional nested item object.

# 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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("sovanza.inc/rednote-api").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 = {}

# Run the Actor and wait for it to finish
run = client.actor("sovanza.inc/rednote-api").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 '{}' |
apify call sovanza.inc/rednote-api --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "RedNote API",
        "description": "RedNote API scrapes Xiaohongshu / RedNote keyword search results and extracts posts, authors, engagement metrics, images, video URLs, and optional detail data with proxy, cookies, storage state, and dataset export support.",
        "version": "0.0",
        "x-build-id": "ZQrgrClOri4OKoU5Q"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/sovanza.inc~rednote-api/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-sovanza.inc-rednote-api",
                "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/sovanza.inc~rednote-api/runs": {
            "post": {
                "operationId": "runs-sync-sovanza.inc-rednote-api",
                "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/sovanza.inc~rednote-api/run-sync": {
            "post": {
                "operationId": "run-sync-sovanza.inc-rednote-api",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "keywords": {
                        "title": "Single/Multiple Keywords",
                        "type": "array",
                        "description": "Enter one or more Xiaohongshu / RedNote search keywords (one per line).",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxItems": {
                        "title": "Max items per keyword",
                        "minimum": 1,
                        "maximum": 200,
                        "type": "integer",
                        "description": "Maximum number of posts to collect per keyword (1–200).",
                        "default": 20
                    },
                    "proxyCountry": {
                        "title": "Proxy Country",
                        "enum": [
                            "DISABLED",
                            "AUTO_SELECT_PROXY_COUNTRY",
                            "US",
                            "GB",
                            "DE",
                            "FR",
                            "JP",
                            "CA",
                            "IT",
                            "AU",
                            "SG"
                        ],
                        "type": "string",
                        "description": "Residential proxy country (uses Apify Proxy). AUTO uses any country.",
                        "default": "AUTO_SELECT_PROXY_COUNTRY"
                    },
                    "baseDomain": {
                        "title": "Base domain",
                        "enum": [
                            "www.xiaohongshu.com",
                            "www.rednote.com"
                        ],
                        "type": "string",
                        "description": "Which web domain to use for navigation and search. If one domain is blocked, try the other.",
                        "default": "www.xiaohongshu.com"
                    },
                    "locale": {
                        "title": "Locale (optional)",
                        "type": "string",
                        "description": "Browser locale (advanced).",
                        "default": "en-US"
                    },
                    "acceptLanguage": {
                        "title": "Accept-Language (optional)",
                        "type": "string",
                        "description": "Extra header Accept-Language (advanced).",
                        "default": "en-US,en;q=0.9"
                    },
                    "storageState": {
                        "title": "Playwright storage state (optional)",
                        "description": "Playwright storage_state JSON (cookies + localStorage). Most reliable way to reuse a logged-in session."
                    },
                    "storageStatePath": {
                        "title": "Storage state path (optional)",
                        "type": "string",
                        "description": "Path to a local storage state JSON file (for local debugging).",
                        "default": ""
                    },
                    "exportStorageState": {
                        "title": "Export storage state (local only)",
                        "type": "boolean",
                        "description": "Local-only helper: opens a headed browser, lets you log in, then saves storage_state.json and exits.",
                        "default": false
                    },
                    "exportStorageStateWaitSec": {
                        "title": "Export wait time (seconds)",
                        "minimum": 10,
                        "maximum": 900,
                        "type": "integer",
                        "description": "How long to wait for you to log in during export mode.",
                        "default": 120
                    },
                    "cookies": {
                        "title": "Session cookies (optional)",
                        "type": "array",
                        "description": "Optional cookies for authenticated scraping. Each item: { \"name\": \"...\", \"value\": \"...\", \"domain\": \".xiaohongshu.com\", \"path\": \"/\" }."
                    },
                    "sortBy": {
                        "title": "Sort (optional)",
                        "enum": [
                            "general",
                            "latest"
                        ],
                        "type": "string",
                        "description": "Optional sort mode, e.g. \"general\" or \"latest\". If not supported by the current DOM, it is ignored safely.",
                        "default": "general"
                    },
                    "searchType": {
                        "title": "Search type (future-safe)",
                        "type": "string",
                        "description": "Future-safe input. Default is \"note\".",
                        "default": "note"
                    },
                    "includeDetails": {
                        "title": "Include detail pages",
                        "type": "boolean",
                        "description": "If true, opens each note detail page for richer fields (slower). If false, uses search-card data only (faster).",
                        "default": false
                    },
                    "includeAuthor": {
                        "title": "Include author fields",
                        "type": "boolean",
                        "description": "If true, attempts to extract author info (nickname, avatar, id when available).",
                        "default": true
                    },
                    "includeMedia": {
                        "title": "Include media fields",
                        "type": "boolean",
                        "description": "If true, attempts to extract images/video fields.",
                        "default": true
                    },
                    "headless": {
                        "title": "Headless",
                        "type": "boolean",
                        "description": "Run browser in headless mode.",
                        "default": true
                    },
                    "maxConcurrency": {
                        "title": "Max concurrency",
                        "minimum": 1,
                        "maximum": 5,
                        "type": "integer",
                        "description": "Maximum number of keywords processed concurrently. Higher values may increase blocking risk.",
                        "default": 1
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
