# Pixiv Tracker (`nexgendata/pixiv-tracker`) Actor

- **URL**: https://apify.com/nexgendata/pixiv-tracker.md
- **Developed by:** [NexGenData](https://apify.com/nexgendata) (community)
- **Categories:** News
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $30.00 / 1,000 items

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

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

## What's an Apify Actor?

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

## How to integrate an Actor?

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

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

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

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

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

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

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

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

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

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

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


# README

## 🎨 Pixiv Tracker — Illustration Rankings & Search (SFW)

**Optional delivery:** Send results straight to your own Notion database or Supabase table in the same run, via Apify's native [MCP connectors](https://docs.apify.com/platform/integrations/mcp-connectors) — the Actor never sees your credentials. One-click connect: [Notion](https://console.apify.com/account/integrations/mcp-connectors/new?serverUrl=https%3A%2F%2Fmcp.notion.com%2Fmcp) or [Supabase](https://console.apify.com/account/integrations/mcp-connectors/new?serverUrl=https%3A%2F%2Fmcp.supabase.com%2Fmcp). Leave blank to get the dataset as usual.

Pull the **Pixiv (ピクシブ)** illustration rankings and keyword search — the heart of Japan's (and the world's) illustration, anime-art, and doujin creative scene, where the next big artists and fan-art trends break first. Get rank, title, artist, view counts, tags, thumbnails, and artwork URLs — **SFW / all-ages only**, no login, no Pixiv API key.

Pixiv is the world's largest illustration community, yet it's almost invisible to Western data tooling — the site is Japanese-first, login-gated for most browsing, and has no usable public API for outsiders. This actor surfaces the **public SFW rankings and search** in clean structured form: untapped signal for anyone tracking anime/game IP popularity, scouting illustrators, or studying Japanese visual-culture trends.

### 📊 Sample Output

[![Pixiv tracker scraper sample output — daily SFW illustration ranking with rank, title, artist, view count and tags for anime art trend tracking and illustrator discovery on pixiv](https://api.apify.com/v2/key-value-stores/8gLgXMBveEI1tTz1z/records/pixiv-tracker-sample)](https://apify.com/nexgendata/pixiv-tracker?fpr=2ayu9b)

Real artworks returned by this actor for `{ "mode": "ranking", "rankingMode": "daily", "maxItems": 12 }` — every row below comes straight from a live run (all `is_sfw: true`):

| Rank | Title | Artist | Views | Top tags | Rating |
|---|---|---|---|---|---|
| 1 | カフカ | モ誰 | 40,462 | カフカ / 崩壊:スターレイル | SFW |
| 2 | 雪月花 | torino | 40,585 | 緋英 / 崩壊スターレイル | SFW |
| 4 | 銀狼LV.999 | モ誰 | 31,203 | 崩壊:スターレイル | SFW |
| 5 | はじまりのUTA vol.3 セットリスト | アボガド6 | 30,740 | UTAU / はじまりのUTA | SFW |
| 9 | Rossi | void_0 | 13,856 | アークナイツ:エンドフィールド | SFW |
| 12 | 志乃と恋6巻出る！ | 千種みのり | 18,691 | オリジナル / 百合 | SFW |

> The daily ranking is a live map of which **IP and characters** are hot in Japan right now — note how 崩壊:スターレイル (Honkai: Star Rail) fan art dominates this pull. That's IP-popularity signal you can't get from any English-language source.

### What you get

Per illustration, a flat, typed record:

- **Ranking** — `rank`, `previous_rank` (momentum), `mode` (which board)
- **Artwork** — `illust_id`, `title`, `page_count`, `create_date`
- **Artist** — `artist_name`, `artist_id`
- **Engagement** — `view_count`, `bookmark_count`, `rating_count`
- **Discovery** — `tags[]` (IP, character, and theme tags Pixiv is built on)
- **Media** — `thumbnail_url`, `pixiv_url` (direct artwork link)
- **Safety** — `is_sfw` (always `true` — this actor is SFW-only)
- **Provenance** — `scraped_at`

### Sample inputs

**1. Daily SFW ranking (the headline use case)**
```json
{ "mode": "ranking", "rankingMode": "daily", "maxItems": 12 }
````

**2. Weekly ranking, deeper pull**

```json
{ "mode": "ranking", "rankingMode": "weekly", "maxItems": 50 }
```

**3. Keyword/tag search (SFW)**

```json
{ "mode": "search", "query": "初音ミク", "maxItems": 40 }
```

### JSON sample record

One representative record, exactly as returned:

```json
{
  "illust_id": "145935525",
  "title": "カフカ",
  "artist_name": "モ誰",
  "artist_id": "1878082",
  "rank": 1,
  "previous_rank": 4,
  "view_count": 40462,
  "rating_count": 1498,
  "tags": ["カフカ", "崩壊:スターレイル", "カフカ(スターレイル)"],
  "thumbnail_url": "https://i.pximg.net/c/480x960/img-master/img/2026/06/13/03/32/03/145935525_p0_master1200.jpg",
  "pixiv_url": "https://www.pixiv.net/artworks/145935525",
  "page_count": 1,
  "create_date": "2026-06-12T18:32:03Z",
  "is_sfw": true,
  "mode": "ranking",
  "scraped_at": "2026-06-15T04:56:29Z"
}
```

### How it works

This actor reads Pixiv's public **SFW ranking boards** (daily / weekly / monthly / rookie / original) and keyword search through Apify proxy, and parses the structured results directly into one flat record per artwork — rank, artist, view/rating counts, tags, thumbnail, and artwork URL. R18 / R18G boards are **intentionally not offered**; the actor is SFW / all-ages only by design. `maxItems` is a hard ceiling, so compute and your bill never outrun what you asked for.

### 🗾 Why this Japanese data is unique

Pixiv is the global home of illustration, anime art, and doujin culture — and it's Japan-native to its core. Its tag system is a living taxonomy of which game and anime IPs, characters, and ships are surging, and its ranking board is the closest thing to a real-time popularity index for Japanese visual culture. There's no Western equivalent and no public API for outsiders, so this signal — which characters and franchises are trending among the artists who shape fandom — is **invisible to teams relying on English-language tools**. Clean, structured, English-readable fields make it usable.

### ⚖️ Legal & ToS

This actor reads **only public, SFW Pixiv ranking and search pages** — the same all-ages listings any visitor sees, no login required. It collects publicly displayed artwork metadata (title, artist, counts, tags, thumbnail, URL). **It does not access, return, or surface R18 / R18G (adult) content** — those boards are deliberately excluded and every record is `is_sfw: true`. It does not download full-resolution files, access private/members-only works, or touch anything behind authentication. Artwork and artist names remain the property of their creators; you are responsible for using the output in line with Pixiv's terms and your local regulations.

### ❓ FAQ

**Q: Do I need a Pixiv account or API key?**
A: No. The actor works entirely off Pixiv's public SFW ranking and search pages — no login, no token.

**Q: Does this return any adult (R18) content?**
A: No. This actor is **SFW / all-ages only**. R18 and R18G ranking boards are intentionally not offered, and every returned record carries `is_sfw: true`.

**Q: What ranking modes are available?**
A: `daily`, `weekly`, `monthly`, `rookie` (top new-artist works), and `original` (top original, non-fan-art works) — all SFW.

**Q: Can I search by a specific character or IP?**
A: Yes. Use `mode: "search"` with a `query` (a tag or keyword, e.g. a character or franchise name) to pull matching SFW artworks.

**Q: Why did I get fewer items than `maxItems`?**
A: A ranking board or search has a finite number of results. `maxItems` is a ceiling, not a target — getting fewer is normal, not an error.

### 🔗 Related Actors

Pair this with the rest of the NexGenData Asia-data fleet — the markets Western scrapers can't reach:

- [📺 Niconico Video Search — Japan's Bilibili](https://apify.com/nexgendata/niconico-video-search?fpr=2ayu9b) — search and rank Japan's homegrown video platform
- [🇯🇵 Yahoo! Japan Realtime Trends — Live Buzz Ranking](https://apify.com/nexgendata/yahoo-japan-realtime-trends?fpr=2ayu9b) — what Japan is searching for right now
- [📹 Bilibili Video Search — China's Niconico](https://apify.com/nexgendata/bilibili-video-search?fpr=2ayu9b) — the China counterpart for anime/creator-culture video data
- 🏢 **About NexGenData** — we maintain 260+ production Apify actors for lead-gen, competitive intelligence, and hard-to-reach web data. Browse the full catalog at [apify.com/nexgendata](https://apify.com/nexgendata?fpr=2ayu9b).

### 💰 Pricing example

This actor uses **Pay-Per-Event** pricing — you only pay for artworks that actually land in your dataset:

- **Actor start:** $0.005
- **Per item:** $0.03

A **12-artwork daily ranking = $0.005 + (12 × $0.03) = $0.365**. A 100-artwork deep pull = $0.005 + (100 × $0.03) = $3.005. No monthly minimum, no seats, no surprise overage bills.

***

### ⭐ Found this useful?

If this actor opened up Japan's illustration scene for you, a quick **[review on the Apify Store](https://apify.com/nexgendata/pixiv-tracker?fpr=2ayu9b)** helps other teams discover it. Feature request or bug? Open it from the **Issues** tab — we read every one.

# Actor input Schema

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

What to pull. 'ranking' returns the top SFW illustrations for the selected rankingMode (daily/weekly/monthly). 'search' returns SFW keyword-search results for 'query', optionally enriched with per-artwork view/bookmark/like counts.

## `rankingMode` (type: `string`):

Which SFW ranking board to pull when mode='ranking'. R18 boards are intentionally NOT offered — this actor is SFW / all-ages only.

## `query` (type: `string`):

Keyword / tag to search on Pixiv when mode='search'. Japanese tags give native-quality hits (e.g. '東方', '初音ミク', 'オリジナル') and English works too (e.g. 'touhou', 'landscape'). Ignored in ranking mode.

## `enrichSearchCounts` (type: `boolean`):

When ON (default), each search result is enriched with view / bookmark / like / comment counts via one extra request per artwork (slower, more accurate). Turn OFF for a faster, lighter search that returns titles, artists, tags and thumbnails only. Has no effect in ranking mode (ranking rows already include view + rating counts).

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

Hard cap on the number of artworks returned per run.

## `notionConnector` (type: `string`):

Optional. Connect your Notion workspace and a summary of the collected SFW artworks is also written as a Notion page in the same run — the Actor never sees your Notion credentials. Authorize a Notion MCP connector in Apify Console → Settings → API & Integrations, then select it here.

## `notionParentId` (type: `string`):

Optional. ID of a Notion page to nest the summary under. Leave blank to create a private top-level page in your workspace.

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

Apify proxy configuration. Pixiv's public JSON endpoints are reachable directly, but a RESIDENTIAL proxy improves reliability and avoids occasional datacenter-IP throttling. Recommended for scheduled / high-volume runs.

## `supabaseConnector` (type: `string`):

Optional. Connect your own Supabase project and the results are also inserted into a table in the same run — the Actor never sees your Supabase credentials. Authorize a write-scoped, project-scoped Supabase MCP connector in Apify Console (Settings -> Integrations), then select it here.

## `supabaseTable` (type: `string`):

Target table in the public schema (created if missing, with id, a jsonb data column, and a scraped\_at timestamp). Default: nexgendata\_leads.

## `supabaseProjectId` (type: `string`):

Your Supabase project reference (e.g. abcdefghijklmnop). Required unless your connector URL is already project-scoped. Find it in your project URL: supabase.com/dashboard/project/THIS\_PART.

## `deliveryDedup` (type: `boolean`):

When on (default), records already delivered in a previous run are not delivered again to the same destination — so scheduled runs only push new items. Turn off to deliver every record on every run.

## Actor input object example

```json
{
  "mode": "ranking",
  "rankingMode": "daily",
  "query": "touhou",
  "enrichSearchCounts": true,
  "maxItems": 30,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  },
  "supabaseTable": "nexgendata_leads",
  "deliveryDedup": true
}
```

# 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": "ranking",
    "rankingMode": "daily",
    "query": "touhou",
    "enrichSearchCounts": true,
    "maxItems": 30,
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("nexgendata/pixiv-tracker").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": "ranking",
    "rankingMode": "daily",
    "query": "touhou",
    "enrichSearchCounts": True,
    "maxItems": 30,
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    },
}

# Run the Actor and wait for it to finish
run = client.actor("nexgendata/pixiv-tracker").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": "ranking",
  "rankingMode": "daily",
  "query": "touhou",
  "enrichSearchCounts": true,
  "maxItems": 30,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call nexgendata/pixiv-tracker --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Pixiv Tracker",
        "version": "0.0",
        "x-build-id": "KSAIDbiSXXxJ6qJUI"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/nexgendata~pixiv-tracker/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-nexgendata-pixiv-tracker",
                "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/nexgendata~pixiv-tracker/runs": {
            "post": {
                "operationId": "runs-sync-nexgendata-pixiv-tracker",
                "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/nexgendata~pixiv-tracker/run-sync": {
            "post": {
                "operationId": "run-sync-nexgendata-pixiv-tracker",
                "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": {
                    "mode": {
                        "title": "Mode",
                        "enum": [
                            "ranking",
                            "search"
                        ],
                        "type": "string",
                        "description": "What to pull. 'ranking' returns the top SFW illustrations for the selected rankingMode (daily/weekly/monthly). 'search' returns SFW keyword-search results for 'query', optionally enriched with per-artwork view/bookmark/like counts.",
                        "default": "ranking"
                    },
                    "rankingMode": {
                        "title": "Ranking mode (ranking mode only)",
                        "enum": [
                            "daily",
                            "weekly",
                            "monthly",
                            "rookie",
                            "original"
                        ],
                        "type": "string",
                        "description": "Which SFW ranking board to pull when mode='ranking'. R18 boards are intentionally NOT offered — this actor is SFW / all-ages only.",
                        "default": "daily"
                    },
                    "query": {
                        "title": "Search query (search mode only)",
                        "type": "string",
                        "description": "Keyword / tag to search on Pixiv when mode='search'. Japanese tags give native-quality hits (e.g. '東方', '初音ミク', 'オリジナル') and English works too (e.g. 'touhou', 'landscape'). Ignored in ranking mode."
                    },
                    "enrichSearchCounts": {
                        "title": "Enrich search results with engagement counts",
                        "type": "boolean",
                        "description": "When ON (default), each search result is enriched with view / bookmark / like / comment counts via one extra request per artwork (slower, more accurate). Turn OFF for a faster, lighter search that returns titles, artists, tags and thumbnails only. Has no effect in ranking mode (ranking rows already include view + rating counts).",
                        "default": true
                    },
                    "maxItems": {
                        "title": "Max items",
                        "minimum": 1,
                        "maximum": 500,
                        "type": "integer",
                        "description": "Hard cap on the number of artworks returned per run.",
                        "default": 30
                    },
                    "notionConnector": {
                        "title": "Deliver to Notion (optional)",
                        "type": "string",
                        "description": "Optional. Connect your Notion workspace and a summary of the collected SFW artworks is also written as a Notion page in the same run — the Actor never sees your Notion credentials. Authorize a Notion MCP connector in Apify Console → Settings → API & Integrations, then select it here."
                    },
                    "notionParentId": {
                        "title": "Notion parent page ID (optional)",
                        "type": "string",
                        "description": "Optional. ID of a Notion page to nest the summary under. Leave blank to create a private top-level page in your workspace."
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Apify proxy configuration. Pixiv's public JSON endpoints are reachable directly, but a RESIDENTIAL proxy improves reliability and avoids occasional datacenter-IP throttling. Recommended for scheduled / high-volume runs.",
                        "default": {
                            "useApifyProxy": true,
                            "apifyProxyGroups": [
                                "RESIDENTIAL"
                            ]
                        }
                    },
                    "supabaseConnector": {
                        "title": "Deliver to Supabase (optional)",
                        "type": "string",
                        "description": "Optional. Connect your own Supabase project and the results are also inserted into a table in the same run — the Actor never sees your Supabase credentials. Authorize a write-scoped, project-scoped Supabase MCP connector in Apify Console (Settings -> Integrations), then select it here."
                    },
                    "supabaseTable": {
                        "title": "Supabase table name (optional)",
                        "type": "string",
                        "description": "Target table in the public schema (created if missing, with id, a jsonb data column, and a scraped_at timestamp). Default: nexgendata_leads.",
                        "default": "nexgendata_leads"
                    },
                    "supabaseProjectId": {
                        "title": "Supabase project ID (optional)",
                        "type": "string",
                        "description": "Your Supabase project reference (e.g. abcdefghijklmnop). Required unless your connector URL is already project-scoped. Find it in your project URL: supabase.com/dashboard/project/THIS_PART."
                    },
                    "deliveryDedup": {
                        "title": "Deduplicate deliveries across runs",
                        "type": "boolean",
                        "description": "When on (default), records already delivered in a previous run are not delivered again to the same destination — so scheduled runs only push new items. Turn off to deliver every record on every run.",
                        "default": true
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
