# 🇰🇷 Korea KRX Short Selling · 공매도 잔고 코스피 코스닥 (`nexgendata/korea-krx-short-selling-balances`) Actor

Stream net short selling balances for KOSPI & KOSDAQ stocks from KRX Data Marketplace — FSCMA Art.180-2 공매도 잔고. Filter by market, ticker, % threshold, date. Clean JSON: short volume, KRW value, % outstanding.

- **URL**: https://apify.com/nexgendata/korea-krx-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 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

## 📉 Korea KRX Short Selling Balances — KOSPI & KOSDAQ Disclosure

Stream **net short selling balances** for every stock on **KOSPI** and **KOSDAQ**, straight from the **Korea Exchange (KRX) Data Marketplace** — the official conduit for FSCMA Article 180-2 mandated short-position disclosure (개별종목 공매도 순보유잔고).

When KRX lifted the eight-month short selling ban on **March 31, 2025**, balance disclosure resumed. This actor surfaces the same end-of-day report institutional desks pay for through Bloomberg, KIS Pricing and CHECK — but as clean Apify dataset rows.

---

### 🎯 Why this actor

| You're trying to… | This actor gives you… |
|---|---|
| Track which KOSPI 200 names are getting shorted before earnings | Per-stock `short_balance_pct_of_outstanding` for every trading day |
| Build a short-interest reversal factor | Daily time-series — 일자별 잔고 — across the whole market |
| Spot 0.5%+ short-balance accumulations on KOSDAQ small-caps | Market filter + minimum-position-percent threshold |
| Feed a quant pipeline / dashboard | Stable JSON schema with KRW value + share count + ratio |

---

### 🚀 Quick start

```json
{
  "market": "KOSPI",
  "min_short_position_pct": 1.0,
  "date_from": "2025-12-01",
  "date_to": "2025-12-05",
  "max_records": 200
}
````

Returns up to 200 records — one per (stock, trading-day) — for KOSPI names with at least a 1.0% net short balance during early December 2025.

#### Track a single stock

```json
{
  "ticker_filter": "005930",
  "date_from": "2025-11-01",
  "date_to": "2025-12-05",
  "max_records": 60
}
```

Returns Samsung Electronics' (005930) net short balance for every trading day in the window. When `ticker_filter` is set the minimum-percent floor is ignored, so you see every reported day even at near-zero balances.

***

### 📦 Output schema

Every record is one stock on one trading day:

```json
{
  "market": "KOSPI",
  "ticker": "005930",
  "company_name": "삼성전자",
  "company_name_en": "삼성전자",
  "short_volume": 1234567,
  "short_value_KRW": 412345678900,
  "short_balance_pct_of_outstanding": 0.83,
  "outstanding_shares": 5969782550,
  "market_cap_KRW": 489214600000000,
  "report_date": "2025-12-01",
  "source_url": "https://data.krx.co.kr/contents/MDC/MDI/mdiLoader/index.cmd?menuId=MDC0203"
}
```

| Field | Korean | Description |
|---|---|---|
| `market` | 시장구분 | `KOSPI` or `KOSDAQ` |
| `ticker` | 종목코드 | 6-digit Korean ticker |
| `company_name` | 종목명 | Issuer short name (Korean) |
| `short_volume` | 공매도 잔고수량 | Reported short position in shares |
| `short_value_KRW` | 공매도 잔고금액 | Position value in KRW |
| `short_balance_pct_of_outstanding` | 공매도 잔고비율 | % of listed shares (0.01% disclosure threshold) |
| `outstanding_shares` | 상장주식수 | Total listed shares |
| `market_cap_KRW` | 시가총액 | Market cap in KRW |
| `report_date` | 보고일 | Trading day this balance was reported for |
| `source_url` | 출처 | KRX MDC0203 disclosure page |

***

### 💰 Pay-Per-Event pricing

| Event | Price |
|---|---|
| Actor start | $0.005 |
| Each short-balance record | $0.08 |

A typical KOSPI daily sweep returns ~150–250 records above the 0.5% threshold → **$12–20** per day. Cheaper than a single Bloomberg `EQS` save, and the rows are yours.

***

### 🛠 How it works

1. Bootstraps a session against `https://data.krx.co.kr/comm/srt/srtLoader/index.cmd?screenId=MDCSTAT305` to obtain the `JSESSIONID` cookie KRX requires.
2. POSTs to `https://data.krx.co.kr/comm/bldAttendant/getJsonData.cmd` with bld `dbms/MDC_OUT/STAT/srt/MDCSTAT30501_OUT` for each requested trading day, per market.
3. Normalises Korean field names (`BAL_QTY`, `BAL_RTO`, `BAL_AMT`, `MKTCAP`, …) into the schema above.
4. Iterates newest day first, so capping `max_records` low still surfaces the most recent disclosure.

The actor honours KRX rate-limits with a 600 ms gap between requests and is built without browser automation — pure async HTTP through `httpx`.

***

### 🇰🇷 한국어 안내 — KRX 공매도 잔고 데이터

이 액터는 **한국거래소(KRX) 정보데이터시스템**의 *개별종목 공매도 순보유잔고* (FSCMA 제180조의2 의무공시) 데이터를 자동 수집합니다.

#### 주요 항목

| 영문 필드 | 한국어 | 설명 |
|---|---|---|
| `market` | 시장구분 | KOSPI / KOSDAQ |
| `ticker` | 종목코드 | 6자리 종목코드 (예: 005930 = 삼성전자) |
| `company_name` | 종목명 | 종목 약명 |
| `short_volume` | 공매도 잔고수량 | 보고일 기준 누적 공매도 잔고 (주) |
| `short_value_KRW` | 공매도 잔고금액 | 잔고 평가금액 (원) |
| `short_balance_pct_of_outstanding` | 공매도 잔고비율 | 상장주식수 대비 잔고 비율 (%) |
| `outstanding_shares` | 상장주식수 | 보고일 기준 상장주식수 |
| `market_cap_KRW` | 시가총액 | 보고일 기준 시가총액 (원) |
| `report_date` | 보고일 | 잔고 보고 기준일 (YYYY-MM-DD) |

#### 사용 예시

```json
{
  "market": "KOSPI",
  "min_short_position_pct": 0.5,
  "date_from": "2025-11-01",
  "date_to": "2025-12-05",
  "max_records": 500
}
```

KOSPI 종목 중 **공매도 잔고비율 0.5% 이상**인 종목을 지정 기간 동안 조회합니다. 매매일이 아닌 날 (주말·공휴일)은 자동으로 건너뜁니다.

특정 종목만 추적하려면 `ticker_filter`에 6자리 종목코드를 입력하세요 (예: `"005930"` 삼성전자, `"373220"` LG에너지솔루션). 이 경우 잔고비율 하한값은 무시되어 보고된 모든 날짜가 출력됩니다.

#### 데이터 출처

- **공시 페이지:** [data.krx.co.kr/contents/MDC/MDI/mdiLoader/index.cmd?menuId=MDC0203](https://data.krx.co.kr/contents/MDC/MDI/mdiLoader/index.cmd?menuId=MDC0203)
- **법적 근거:** 자본시장과 금융투자업에 관한 법률 제180조의2 (공매도 순보유잔고 공시 의무)
- **갱신 주기:** KRX 영업일 마감 후 (T+2 일자별 누적 잔고)

***

### ⚖️ Legal posture

KRX publishes the source data under FSCMA Article 180-2, which mandates net short-position disclosure when a position reaches 0.01% of an issuer's outstanding shares. The Information Disclosure Service Terms permit non-real-time data redistribution for research and commercial use. This actor only consumes the publicly disclosed end-of-day balance — never live order-book or quote data.

The actor sends a standard browser User-Agent and respects KRX session timeouts; it does **not** scrape `kind.krx.co.kr/details.do` (Akamai-walled) and does **not** touch login-gated endpoints.

***

### 🇰🇷 Related Korea / APAC actors

- [Kospi & Kosdaq Stock Screener](https://apify.com/nexgendata/kospi-stock-screener) — full equity screener with sector enrichment for both Korean boards.
- [Japan EDINET Insider Filings](https://apify.com/nexgendata/japan-edinet-insider-filings) — TSE-side institutional disclosure tracker (the Japanese analogue of DART/KIND).
- [TSE Japan Stock Screener](https://apify.com/nexgendata/tse-japan-stock-screener) — Tokyo Stock Exchange equity screener.
- [APAC IPO Calendar Sweep](https://apify.com/nexgendata/apac-ipo-calendar-sweep) — pipeline of upcoming Korea + Japan + HK IPOs.

***

### 🆘 Troubleshooting

- **Empty output for recent dates** — KRX disclosure is T+2; balances for *today* aren't published until two business days later. Roll `date_from` back a week.
- **`short_balance_pct_of_outstanding` is 0.00 across a stock** — that stock simply has no reportable net short position (below the 0.01% disclosure floor). Filter at `min_short_position_pct > 0`.
- **Weekend / holiday gaps** — KRX is closed; the actor skips Mon–Fri automatically but Korean holidays are filtered server-side and return zero rows.
- **Login alert in stack trace** — KRX occasionally tightens session handling. Re-run; the actor re-bootstraps on each invocation.

***

Built by [NexGenData](https://nexgendata.com). Questions? Drop a message in the Apify Discord, tag `@nexgendata`.

`#korea #krx #shortselling #공매도 #잔고 #kospi #kosdaq #disclosure #fscma`

# Actor input Schema

## `market` (type: `string`):

Which Korean equity market to sweep. KOSPI = large-cap board; KOSDAQ = SME / growth board; 'all' covers both. KONEX is excluded by default (negligible short balance reporting).

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

Restrict output to one specific 6-digit Korean ticker (e.g. '005930' = Samsung Electronics, '373220' = LG Energy Solution). Leave blank to scan the whole market. When set, the min\_short\_position\_pct floor is ignored so every reported day is returned.

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

Skip stocks whose reported short balance ratio (잔고비율) is below this percent of outstanding shares. KRX requires disclosure when net short positions reach 0.01% of float, so 0.5%+ filters down to actively-shorted names. Set to 0 to keep everything.

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

Start date of the date range, ISO YYYY-MM-DD. Defaults to 30 calendar days before today. Only Korean trading days are queried (Mon–Fri, excluding KRX holidays — empty days are skipped).

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

End date of the date range, ISO YYYY-MM-DD. Defaults to today (UTC). The newest trading days are scraped first so a small max\_records cap surfaces the most recent balances.

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

Hard cap on the number of short-balance records to emit. Each record = one (stock, trading-day) pair after filters. Smoke tests run cheap at 5–20; production sweeps usually want 500–2000.

## Actor input object example

```json
{
  "market": "all",
  "ticker_filter": "",
  "min_short_position_pct": 1,
  "date_from": "2025-12-01",
  "date_to": "2025-12-05",
  "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 = {
    "market": "all",
    "ticker_filter": "",
    "min_short_position_pct": 1,
    "date_from": "2025-12-01",
    "date_to": "2025-12-05",
    "max_records": 200
};

// Run the Actor and wait for it to finish
const run = await client.actor("nexgendata/korea-krx-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 = {
    "market": "all",
    "ticker_filter": "",
    "min_short_position_pct": 1,
    "date_from": "2025-12-01",
    "date_to": "2025-12-05",
    "max_records": 200,
}

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

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "🇰🇷 Korea KRX Short Selling · 공매도 잔고 코스피 코스닥",
        "description": "Stream net short selling balances for KOSPI & KOSDAQ stocks from KRX Data Marketplace — FSCMA Art.180-2 공매도 잔고. Filter by market, ticker, % threshold, date. Clean JSON: short volume, KRW value, % outstanding.",
        "version": "0.0",
        "x-build-id": "yuA7EXJQovLjmYpIg"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/nexgendata~korea-krx-short-selling-balances/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-nexgendata-korea-krx-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~korea-krx-short-selling-balances/runs": {
            "post": {
                "operationId": "runs-sync-nexgendata-korea-krx-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~korea-krx-short-selling-balances/run-sync": {
            "post": {
                "operationId": "run-sync-nexgendata-korea-krx-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": {
                    "market": {
                        "title": "Market",
                        "enum": [
                            "KOSPI",
                            "KOSDAQ",
                            "all"
                        ],
                        "type": "string",
                        "description": "Which Korean equity market to sweep. KOSPI = large-cap board; KOSDAQ = SME / growth board; 'all' covers both. KONEX is excluded by default (negligible short balance reporting).",
                        "default": "all"
                    },
                    "ticker_filter": {
                        "title": "Ticker filter (optional)",
                        "type": "string",
                        "description": "Restrict output to one specific 6-digit Korean ticker (e.g. '005930' = Samsung Electronics, '373220' = LG Energy Solution). Leave blank to scan the whole market. When set, the min_short_position_pct floor is ignored so every reported day is returned.",
                        "default": ""
                    },
                    "min_short_position_pct": {
                        "title": "Minimum short position (% of outstanding)",
                        "minimum": 0,
                        "maximum": 50,
                        "type": "integer",
                        "description": "Skip stocks whose reported short balance ratio (잔고비율) is below this percent of outstanding shares. KRX requires disclosure when net short positions reach 0.01% of float, so 0.5%+ filters down to actively-shorted names. Set to 0 to keep everything.",
                        "default": 1
                    },
                    "date_from": {
                        "title": "Date from (inclusive, YYYY-MM-DD)",
                        "type": "string",
                        "description": "Start date of the date range, ISO YYYY-MM-DD. Defaults to 30 calendar days before today. Only Korean trading days are queried (Mon–Fri, excluding KRX holidays — empty days are skipped)."
                    },
                    "date_to": {
                        "title": "Date to (inclusive, YYYY-MM-DD)",
                        "type": "string",
                        "description": "End date of the date range, ISO YYYY-MM-DD. Defaults to today (UTC). The newest trading days are scraped first so a small max_records cap surfaces the most recent balances."
                    },
                    "max_records": {
                        "title": "Max records",
                        "minimum": 1,
                        "maximum": 2000,
                        "type": "integer",
                        "description": "Hard cap on the number of short-balance records to emit. Each record = one (stock, trading-day) pair after filters. Smoke tests run cheap at 5–20; production sweeps usually want 500–2000.",
                        "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
