# 🇯🇵 Japan JPX Short Selling · 空売り残高 JPX 金融庁 (`nexgendata/japan-jpx-short-selling-balances`) Actor

Daily FSA-mandated short-selling balance disclosure (>=0.5% positions) from the Japan Exchange Group (JPX). Per-record: ticker, company name (JP + EN), short holder, position size, % of shares outstanding, report date.

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

## Pricing

from $100.00 / 1,000 short position records

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

## Japan JPX Short Selling Balances — FSA-Mandated Disclosure

Daily short-selling balance disclosure from the **Japan Exchange Group (JPX)**, published under the FSA's **Cabinet Office Ordinance on Disclosure of Information Concerning Securities Transactions, Etc. (Article 26)**. Every short position held in a Japanese-listed security at **>=0.5% of shares outstanding** must be reported by the holder to the exchange and is published the next business day.

This actor reads JPX's daily Excel disclosure files at [`https://www.jpx.co.jp/markets/public/short-selling/`](https://www.jpx.co.jp/markets/public/short-selling/), parses every row, and returns clean structured records.

---

### What you get

Each record returned by the actor contains:

| Field | Type | Description |
|---|---|---|
| `ticker` | string | 4-digit Japanese securities code (e.g. `7203` for Toyota) |
| `company_name` | string | Issuer name (Japanese, e.g. `トヨタ自動車　普通株式`) |
| `company_name_en` | string | Issuer name (English, e.g. `Toyota Motor Corporation`) |
| `short_holder_name` | string | Reporting short holder (e.g. `Citadel Equity Fund Ltd`, `Goldman Sachs International`) |
| `short_holder_address` | string | Registered address of short holder |
| `discretionary_investment_contractor` | string | Counterparty under discretionary investment contract (if any) |
| `investment_fund_name` | string | Trust / fund name (where applicable) |
| `short_position_pct_of_outstanding` | number | Short position as % of shares outstanding (e.g. `0.96` = 0.96%) |
| `short_position_shares` | integer | Number of shares short |
| `short_position_trading_units` | integer | Number of trading units short |
| `report_date` | string (ISO date) | Calculation date of the position |
| `previous_calculation_date` | string (ISO date) | Most recent prior calculation date for the same holder/ticker (if reported) |
| `source_url` | string | Source JPX Excel file URL |

---

### Use cases

- **Event-driven trading** — monitor short build-ups on TOPIX 500 issuers ahead of earnings, M&A, or capital-markets events. New entries above 1% are watch-list signals.
- **Hedge-fund position tracking** — filter by `short_holder_filter` (e.g. `"Citadel"`, `"Citron"`, `"Hindenburg"`, `"Goldman"`) to track specific holders' Japan books.
- **Squeeze monitoring** — daily backfill builds a per-ticker short-balance time series; spikes + falling float = squeeze setup.
- **Cross-border arb** — combine with `japan-edinet-insider-filings` to cross-reference short positions against insider selling for activist-target identification.

---

### Example input

```json
{
  "ticker_filter": "1360",
  "short_holder_filter": "",
  "min_short_position_pct": 0.5,
  "date_from": "2026-05-20",
  "date_to": "2026-05-29",
  "max_records": 50
}
````

### Example output (one record)

```json
{
  "ticker": "1360",
  "company_name": "日経平均ベア２倍上場投信　受益証券",
  "company_name_en": "Nikkei225 Bear -2x ETF",
  "short_holder_name": "GOLDMAN SACHS INTERNATIONAL",
  "short_holder_address": "Plumtree Court 25 Shoe Lane London",
  "discretionary_investment_contractor": "",
  "investment_fund_name": "",
  "short_position_pct_of_outstanding": 2.31,
  "short_position_shares": 11961700,
  "short_position_trading_units": 1196170,
  "report_date": "2026-05-29",
  "previous_calculation_date": "2026-05-28",
  "source_url": "https://www.jpx.co.jp/markets/public/short-selling/t13vrt000001emea-att/20260529_Short_Positions.xls"
}
```

***

### Integration — Apify Python client

```python
from apify_client import ApifyClient

client = ApifyClient("YOUR_APIFY_TOKEN")
run = client.actor("nexgendata/japan-jpx-short-selling-balances").call(run_input={
    "min_short_position_pct": 1.0,
    "date_from": "2026-05-15",
    "date_to": "2026-05-29",
    "max_records": 500,
})
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item["ticker"], item["short_holder_name"], item["short_position_pct_of_outstanding"])
```

### Integration — cURL

```bash
curl -X POST "https://api.apify.com/v2/acts/nexgendata~japan-jpx-short-selling-balances/run-sync-get-dataset-items?token=YOUR_APIFY_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"ticker_filter":"7203","date_from":"2026-05-01","date_to":"2026-05-29","max_records":100}'
```

### Integration — MCP (Model Context Protocol)

Use this actor inside any MCP-capable LLM client (Claude Desktop, Cursor, OpenAI agents) by configuring NexGenData's MCP server. The actor exposes a `japan-jpx-short-selling-balances` tool with the same input schema; the LLM can then answer questions like *"which hedge funds are short Toyota right now?"* against live JPX data.

***

### Legal & data source notes

- **Source-of-record:** JPX (Japan Exchange Group), the parent of Tokyo Stock Exchange, Osaka Exchange, and the Tokyo Commodity Exchange.
- **Legal mandate:** Cabinet Office Ordinance on Disclosure of Information Concerning Securities Transactions, Etc. (有価証券の取引等の規制に関する内閣府令) Article 26, enforced by the **Financial Services Agency (FSA)**.
- **Disclosure threshold:** Only positions at **>=0.5% of shares outstanding** are reported. Smaller positions are not disclosed.
- **Frequency:** Daily, published the next business day at JST morning.
- **Retention:** JPX retains roughly the most recent **30 business days** on the landing index — older dates are removed by JPX and are not retrievable from this endpoint.
- **No PII:** Disclosure contains entity-level reporting (institutional fund / firm), not individual data.
- **User-Agent:** This actor identifies itself politely per Japanese open-data convention with a contact endpoint, and throttles at 1 request/sec to JPX.

***

### FAQ

**Q: Why does my run return zero results?**
A: Most commonly: (1) `date_from` is older than ~30 business days — JPX rotates daily files off the index and older ones are no longer downloadable; (2) `min_short_position_pct` is set above the largest disclosed short of the day; (3) `ticker_filter` or `short_holder_filter` matches nothing in the requested window. Widen `date_from` and lower `min_short_position_pct`.

**Q: How does this differ from `japan-edinet-insider-filings`?**
A: EDINET captures **issuer disclosures** (financial statements, large-shareholder reports, insider-sale reports). JPX short balance captures **short-seller positions** (who is short what, at what size). Both are FSA-mandated but cover different sides of the disclosure regime — pair them for full positioning intelligence.

**Q: Are positions below 0.5% available?**
A: No. The 0.5% threshold is the FSA reporting floor under Cabinet Office Ordinance Article 26. Sub-threshold positions are not collected by JPX and are not retrievable from any public source.

**Q: How fresh is the data?**
A: JPX publishes the prior business day's balance file each morning (JST). Run this actor any time after ~09:00 JST to get the prior-day file.

**Q: Why are some `company_name_en` fields blank?**
A: JPX populates the English name for most listed securities, but some recently-listed names and trust units default to Japanese-only. The Japanese name in `company_name` is always present.

**Q: What does `previous_calculation_date` mean?**
A: When a short holder updates their position (e.g. from 1.5% to 1.8%), JPX records both the new calculation date and the prior one. This lets you compute position deltas day-over-day without sourcing prior files.

***

### 日本語の説明

このアクターは、**日本取引所グループ（JPX）** が金融庁の「有価証券の取引等の規制に関する内閣府令」第26条に基づき毎営業日公表している**空売り残高**情報を取得します。

**データソース:** [`https://www.jpx.co.jp/markets/public/short-selling/`](https://www.jpx.co.jp/markets/public/short-selling/)

#### 取得できる主な項目

- **銘柄コード** — 4桁の証券コード（例：`7203` = トヨタ自動車）
- **銘柄名（日本語／英語）**
- **空売り残高報告者** — ヘッジファンド名、外資系証券会社名など
- **空売り残高割合** — 発行済株式数に対する空売り残高の比率（％）
- **空売り残高数量** — 株数
- **報告日（計算年月日）**

#### 主な利用シーン

1. **イベント駆動型投資戦略** — 決算発表前のTOPIX500銘柄に対する空売り残高の急増を監視
2. **特定ファンドのポジション追跡** — `short_holder_filter` でCitadel、Goldman、Barclays等の特定ファンドの空売り残高を追跡
3. **ショートスクイーズの早期発見** — 銘柄ごとの空売り残高の時系列推移を取得し、踏み上げ相場の予兆を検出
4. **アクティビスト分析** — `japan-edinet-insider-filings` と組み合わせて、空売り対象企業のインサイダー取引と内閣府令第26条の報告内容を照合

#### 重要なキーワード

- **空売り残高** — Short selling positions outstanding
- **銘柄** — Stock / security
- **報告日** — Reporting date
- **発行済株式数** — Shares outstanding
- **金融庁** — Financial Services Agency (FSA)
- **内閣府令** — Cabinet Office Ordinance

#### 注意事項

- 残高割合が **0.5%以上** のもののみが報告対象です（内閣府令第26条の閾値）。
- JPXは直近 **約30営業日分** のみをインデックスページで公開しており、それ以前のデータは取得できません。
- 当アクターは日本のオープンデータ慣行に従い、**識別可能なBot User-Agent** で1秒間隔のレート制限を設けて公正にアクセスしています。

***

### Related Actors

- [`japan-edinet-insider-filings`](https://apify.com/nexgendata/japan-edinet-insider-filings) — EDINET filings (large-shareholder reports, insider sales, business reports) for the same Japanese listed universe. Pair with this actor to combine **issuer-side disclosures** (EDINET) with **short-seller positioning** (this actor).
- [`tse-japan-stock-screener`](https://apify.com/nexgendata/tse-japan-stock-screener) — Tokyo Stock Exchange equity screener with market cap, sector, and price filters. Use to identify the universe of TOPIX 500 / Prime / Standard / Growth tickers before pulling their short balances.

***

*Operated by NexGenData. Reach out at `hello@thenextgennexus.com` for custom pulls, MCP integration, or data-licensing arrangements.*

# Actor input Schema

## `ticker_filter` (type: `string`):

Optional. 4-digit Japanese securities code (e.g. '7203' for Toyota). Leave blank to return all tickers.

## `short_holder_filter` (type: `string`):

Optional. Filter to short positions held by a specific fund / firm (substring match, case-insensitive). E.g. 'Goldman', 'Citadel', 'Barclays'. Leave blank for all holders.

## `min_short_position_pct` (type: `integer`):

Minimum short position ratio (percent) to include. JPX only discloses positions >=0.5%, so this is the lower bound. Use 1.0 for >=1% disclosures, 5.0 for high-conviction shorts.

## `date_from` (type: `string`):

Start of date window (inclusive). JPX retains roughly the most recent 30 business days on the landing index — older dates have been removed by JPX and are not retrievable.

## `date_to` (type: `string`):

End of date window (inclusive). Defaults to today.

## `max_records` (type: `integer`):

Hard cap on records pushed to the dataset. JPX publishes ~700-900 positions per business day; widen this for multi-day backfills.

## Actor input object example

```json
{
  "min_short_position_pct": 1,
  "date_from": "2026-05-01",
  "date_to": "2026-05-31",
  "max_records": 200
}
```

# 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 = {
    "ticker_filter": "",
    "short_holder_filter": "",
    "min_short_position_pct": 1,
    "date_from": "2026-05-01",
    "date_to": "2026-05-31",
    "max_records": 200
};

// Run the Actor and wait for it to finish
const run = await client.actor("nexgendata/japan-jpx-short-selling-balances").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 = {
    "ticker_filter": "",
    "short_holder_filter": "",
    "min_short_position_pct": 1,
    "date_from": "2026-05-01",
    "date_to": "2026-05-31",
    "max_records": 200,
}

# Run the Actor and wait for it to finish
run = client.actor("nexgendata/japan-jpx-short-selling-balances").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 '{
  "ticker_filter": "",
  "short_holder_filter": "",
  "min_short_position_pct": 1,
  "date_from": "2026-05-01",
  "date_to": "2026-05-31",
  "max_records": 200
}' |
apify call nexgendata/japan-jpx-short-selling-balances --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "🇯🇵 Japan JPX Short Selling · 空売り残高 JPX 金融庁",
        "description": "Daily FSA-mandated short-selling balance disclosure (>=0.5% positions) from the Japan Exchange Group (JPX). Per-record: ticker, company name (JP + EN), short holder, position size, % of shares outstanding, report date.",
        "version": "0.0",
        "x-build-id": "A2xcji4pNyjHDpujv"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/nexgendata~japan-jpx-short-selling-balances/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-nexgendata-japan-jpx-short-selling-balances",
                "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~japan-jpx-short-selling-balances/runs": {
            "post": {
                "operationId": "runs-sync-nexgendata-japan-jpx-short-selling-balances",
                "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~japan-jpx-short-selling-balances/run-sync": {
            "post": {
                "operationId": "run-sync-nexgendata-japan-jpx-short-selling-balances",
                "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": {
                    "ticker_filter": {
                        "title": "Ticker filter (4-digit JP securities code)",
                        "type": "string",
                        "description": "Optional. 4-digit Japanese securities code (e.g. '7203' for Toyota). Leave blank to return all tickers."
                    },
                    "short_holder_filter": {
                        "title": "Short holder filter",
                        "type": "string",
                        "description": "Optional. Filter to short positions held by a specific fund / firm (substring match, case-insensitive). E.g. 'Goldman', 'Citadel', 'Barclays'. Leave blank for all holders."
                    },
                    "min_short_position_pct": {
                        "title": "Minimum short position % of shares outstanding",
                        "minimum": 0,
                        "maximum": 100,
                        "type": "integer",
                        "description": "Minimum short position ratio (percent) to include. JPX only discloses positions >=0.5%, so this is the lower bound. Use 1.0 for >=1% disclosures, 5.0 for high-conviction shorts.",
                        "default": 1
                    },
                    "date_from": {
                        "title": "Date from (ISO YYYY-MM-DD)",
                        "type": "string",
                        "description": "Start of date window (inclusive). JPX retains roughly the most recent 30 business days on the landing index — older dates have been removed by JPX and are not retrievable."
                    },
                    "date_to": {
                        "title": "Date to (ISO YYYY-MM-DD)",
                        "type": "string",
                        "description": "End of date window (inclusive). Defaults to today."
                    },
                    "max_records": {
                        "title": "Maximum records to return",
                        "minimum": 1,
                        "maximum": 2000,
                        "type": "integer",
                        "description": "Hard cap on records pushed to the dataset. JPX publishes ~700-900 positions per business day; widen this for multi-day backfills.",
                        "default": 200
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
