# SEC 13F Institutional Holdings Change Report (`taroyamada/sec-13f-institutional-holdings-change-report`) Actor

Compare bounded institutional manager watchlists using official SEC EDGAR 13F XML filings. Receive source-linked holding change alerts, descriptive portfolio change reports, and compact exports. No API key or login is required; a descriptive SEC User-Agent is required.

- **URL**: https://apify.com/taroyamada/sec-13f-institutional-holdings-change-report.md
- **Developed by:** [naoki anzai](https://apify.com/taroyamada) (community)
- **Categories:** Business
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $6.00 / 1,000 sec 13f holding rows

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 web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
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/docs.md):

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

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python/docs.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/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

## SEC 13F Institutional Holdings Change Report

For institutional research, public-markets operations, and portfolio-monitoring teams, this Actor accepts a bounded list of manager CIKs or official tickers. It reads official SEC EDGAR submissions and 13F information-table XML, then returns source-linked holding changes, a descriptive portfolio report, and a compact evidence export.

The input is a manager watchlist with optional CUSIP, issuer-keyword, and minimum-value filters. The output is a periodic comparison of reported holdings between SEC 13F report periods. No API key or login is required, but a descriptive SEC User-Agent is required.

### Store Quickstart

1. Run once with `initialRunMode: "baseline_only"`. The current selected portfolio is stored and the first run returns zero rows and zero charges.
2. Schedule the same input after a later 13F filing. Only new, exited, or changed holdings produce alerts and the report/export value events.
3. Use `generateReport: true` and `emitExport: true` for the report-first workflow. Keep `emitRawRows: false` unless individual holding rows are needed.

This Actor reports what a public Form 13F information table says at a point in time. It does not reconstruct a real-time portfolio or evaluate an investment.

### Run the next report

- Compare filing-level material disclosures with [SEC EDGAR Material Disclosure Watch](https://apify.com/taroyamada/sec-edgar-material-disclosure-watch-scraper).
- Track source-linked beneficial ownership changes with [SEC 13D & 13G Beneficial Ownership Change Report](https://apify.com/taroyamada/sec-13d-13g-beneficial-ownership-change-report).
- Track public regulatory obligations with [Regulatory Obligation Change Impact Report](https://apify.com/taroyamada/regulatory-obligation-change-impact-report).

### Input Examples

#### 1. Manager CIK watch

```json
{
  "watchlists": [{
    "id": "manager-watch",
    "managers": [{ "cik": "0001166559", "label": "Institutional manager" }],
    "maxHoldingsPerManager": 100,
    "maxAlertsPerManager": 25
  }],
  "userAgent": "your-company-13f-watch/1.0 ops@yourcompany.com",
  "initialRunMode": "baseline_only",
  "generateReport": true,
  "emitExport": true
}
````

#### 2. Filtered portfolio watch

```json
{
  "watchlists": [{
    "id": "healthcare-positions",
    "managers": [{ "cik": "0001166559" }],
    "issuerKeywords": ["health"],
    "minValueUsd": 5000000,
    "maxHoldingsPerManager": 50,
    "maxAlertsPerManager": 10
  }],
  "lookbackFilings": 2,
  "userAgent": "your-company-13f-watch/1.0 ops@yourcompany.com",
  "initialRunMode": "baseline_only"
}
```

#### 3. First report backfill

```json
{
  "watchlists": [{
    "id": "cusip-watch",
    "managers": [{ "cik": "0001166559" }, { "ticker": "EXAMPLE" }],
    "cusips": ["000000000"],
    "maxHoldingsPerManager": 25,
    "maxAlertsPerManager": 10
  }],
  "userAgent": "your-company-13f-watch/1.0 https://example.com/13f-contact",
  "initialRunMode": "emit_backfill",
  "generateReport": true,
  "emitRawRows": true,
  "emitExport": true,
  "maxChargeUsd": 40
}
```

Use a real manager CIK for production. The ticker example only demonstrates the schema and requires a matching official SEC ticker index entry.

### Output Contract

The output uses four fixed row types:

- `sec_13f_holding_row`: `watchId`, `manager`, `holding`, and `sourceUrl`.
- `sec_13f_holdings_change_alert`: `watchId`, `manager`, `changeType`, `holding`, and `sourceUrl`.
- `sec_13f_portfolio_change_report`: `watchIds`, `report`, and `sourceUrls`/`sourceUrl`.
- `sec_13f_export`: `holdingCount`, `holdings`, and `sourceUrls`/`sourceUrl`.

The report and export are the primary deliverables. Each holding retains CUSIP, issuer, class, reported value, shares, discretion, voting fields, filing period, accession number, and the exact SEC XML source URL.

### Pricing

| Event | Price | Use |
| --- | ---: | --- |
| `sec-13f-holding-row` | $0.006 | Optional compact holding detail |
| `sec-13f-holdings-change-alert` | $0.25 | New, exited, increased, decreased, or changed position |
| `sec-13f-portfolio-change-report` | $12.00 | Descriptive report across selected managers |
| `sec-13f-export` | $8.00 | JSON evidence export with filing links |

Baseline-only runs and unchanged runs are free. A per-run `maxChargeUsd` cap fails closed before delivery. A first `emit_backfill` run can produce many alerts, so keep the watchlist and cap small until the expected charge is understood.

### Compliance Guardrails

- Only official SEC `data.sec.gov/submissions` JSON, SEC EDGAR archive `index.json`, official SEC filing XML, and the official SEC ticker index are used.
- No API key, login, browser session, private data, contact extraction, filing bypass, CAPTCHA handling, or non-official mirror is used.
- Keep the User-Agent descriptive, include a real production contact, use bounded managers and request caps, and retain the default pacing.
- A Form 13F is periodic public disclosure. It does not show short positions, every asset, current intraperiod activity, or investment intent.
- The output is descriptive evidence only. It is not investment advice, a buy/sell/hold signal, a valuation, a forecast, a risk score, or a guarantee.

### State and Billing Safety

State is written only after all billable rows are delivered successfully. A state read/write failure stops the run. An unchanged run emits zero rows and zero charges. Unknown billing events, missing `chargedCount`, charge-cap violations, invalid SEC URLs, malformed XML, and missing information tables fail closed. The delivery audit is written locally as `sec-13f-delivery-audit.json` and to the Apify key-value store as `PHASE89_DELIVERY_AUDIT`.

### See Also

- [SEC EDGAR Material Disclosure Watch](https://apify.com/taroyamada/sec-edgar-material-disclosure-watch-scraper) for filing-level disclosure candidate monitoring.
- [SEC 13D & 13G Beneficial Ownership Change Report](https://apify.com/taroyamada/sec-13d-13g-beneficial-ownership-change-report) for issuer-level beneficial ownership changes.
- [Regulatory Obligation Change Impact Report](https://apify.com/taroyamada/regulatory-obligation-change-impact-report) for source-linked regulatory change analysis.

### Limitations

13F holdings are periodic and may be amended. CUSIP/class identity, manager names, reported value units, and voting fields should be reviewed against the linked filing. The Actor does not infer performance, intent, ownership economics, or future behavior.

# Actor input Schema

## `watchlists` (type: `array`):

Each watchlist contains one or more manager CIKs or official tickers plus optional holding filters.

## `lookbackFilings` (type: `integer`):

Bounded number of latest 13F report periods inspected. Two periods are needed for a change comparison.

## `monitorKey` (type: `string`):

Stable state namespace for a recurring institutional holdings portfolio.

## `userAgent` (type: `string`):

Required descriptive value, for example your-company-13f-watch/1.0 ops@yourcompany.com. Replace the example contact with your own application contact before production use.

## `initialRunMode` (type: `string`):

baseline\_only stores the first current portfolio with zero rows; emit\_backfill emits selected current holdings as a first paid report.

## `generateReport` (type: `boolean`):

Emit one report-first descriptive portfolio change report when selected holdings change.

## `emitRawRows` (type: `boolean`):

Optional low-priced holding detail rows for the selected changed or backfilled positions.

## `emitExport` (type: `boolean`):

Emit a compact JSON export of selected holdings and change evidence.

## `emitUnchanged` (type: `boolean`):

Accepted for compatibility, but unchanged holdings remain free and emit zero rows and zero charges.

## `maxRequests` (type: `integer`):

Hard per-run request bound including ticker lookup, submissions, filing indexes, and XML documents.

## `requestIntervalMs` (type: `integer`):

Minimum delay between official SEC requests. Keep a conservative interval and respect SEC access guidance.

## `maxChargeUsd` (type: `number`):

Fail closed before delivery if planned PPE charges exceed this cap.

## `dryRun` (type: `boolean`):

Return deterministic representative rows for all event types without SEC requests, state writes, or charges.

## Actor input object example

```json
{
  "watchlists": [
    {
      "id": "sample-managers",
      "managers": [
        {
          "cik": "0001166559",
          "label": "Sample institutional manager"
        }
      ],
      "issuerKeywords": [],
      "cusips": [],
      "minValueUsd": 0,
      "maxHoldingsPerManager": 100,
      "maxAlertsPerManager": 25
    }
  ],
  "lookbackFilings": 2,
  "monitorKey": "sec-13f-institutional-watch",
  "userAgent": "taroyamada-sec-13f-institutional-holdings-change-report/1.0 https://apify.com/taroyamada/sec-13f-institutional-holdings-change-report",
  "initialRunMode": "baseline_only",
  "generateReport": true,
  "emitRawRows": false,
  "emitExport": false,
  "emitUnchanged": false,
  "maxRequests": 20,
  "requestIntervalMs": 1100,
  "maxChargeUsd": 40,
  "dryRun": false
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("taroyamada/sec-13f-institutional-holdings-change-report").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("taroyamada/sec-13f-institutional-holdings-change-report").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call taroyamada/sec-13f-institutional-holdings-change-report --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=taroyamada/sec-13f-institutional-holdings-change-report",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "SEC 13F Institutional Holdings Change Report",
        "description": "Compare bounded institutional manager watchlists using official SEC EDGAR 13F XML filings. Receive source-linked holding change alerts, descriptive portfolio change reports, and compact exports. No API key or login is required; a descriptive SEC User-Agent is required.",
        "version": "0.1",
        "x-build-id": "1rrS8MmfLX8GZQDTv"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/taroyamada~sec-13f-institutional-holdings-change-report/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-taroyamada-sec-13f-institutional-holdings-change-report",
                "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/taroyamada~sec-13f-institutional-holdings-change-report/runs": {
            "post": {
                "operationId": "runs-sync-taroyamada-sec-13f-institutional-holdings-change-report",
                "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/taroyamada~sec-13f-institutional-holdings-change-report/run-sync": {
            "post": {
                "operationId": "run-sync-taroyamada-sec-13f-institutional-holdings-change-report",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "watchlists",
                    "userAgent"
                ],
                "properties": {
                    "watchlists": {
                        "title": "Institutional manager watchlists",
                        "type": "array",
                        "description": "Each watchlist contains one or more manager CIKs or official tickers plus optional holding filters.",
                        "default": [
                            {
                                "id": "sample-managers",
                                "managers": [
                                    {
                                        "cik": "0001166559",
                                        "label": "Sample institutional manager"
                                    }
                                ],
                                "issuerKeywords": [],
                                "cusips": [],
                                "minValueUsd": 0,
                                "maxHoldingsPerManager": 100,
                                "maxAlertsPerManager": 25
                            }
                        ]
                    },
                    "lookbackFilings": {
                        "title": "Filings to inspect per manager",
                        "minimum": 1,
                        "maximum": 4,
                        "type": "integer",
                        "description": "Bounded number of latest 13F report periods inspected. Two periods are needed for a change comparison.",
                        "default": 2
                    },
                    "monitorKey": {
                        "title": "Monitor key",
                        "type": "string",
                        "description": "Stable state namespace for a recurring institutional holdings portfolio.",
                        "default": "sec-13f-institutional-watch"
                    },
                    "userAgent": {
                        "title": "SEC User-Agent",
                        "type": "string",
                        "description": "Required descriptive value, for example your-company-13f-watch/1.0 ops@yourcompany.com. Replace the example contact with your own application contact before production use.",
                        "default": "taroyamada-sec-13f-institutional-holdings-change-report/1.0 https://apify.com/taroyamada/sec-13f-institutional-holdings-change-report"
                    },
                    "initialRunMode": {
                        "title": "Initial run mode",
                        "enum": [
                            "baseline_only",
                            "emit_backfill"
                        ],
                        "type": "string",
                        "description": "baseline_only stores the first current portfolio with zero rows; emit_backfill emits selected current holdings as a first paid report.",
                        "default": "baseline_only"
                    },
                    "generateReport": {
                        "title": "Generate portfolio change report",
                        "type": "boolean",
                        "description": "Emit one report-first descriptive portfolio change report when selected holdings change.",
                        "default": true
                    },
                    "emitRawRows": {
                        "title": "Emit holding rows",
                        "type": "boolean",
                        "description": "Optional low-priced holding detail rows for the selected changed or backfilled positions.",
                        "default": false
                    },
                    "emitExport": {
                        "title": "Generate evidence export",
                        "type": "boolean",
                        "description": "Emit a compact JSON export of selected holdings and change evidence.",
                        "default": false
                    },
                    "emitUnchanged": {
                        "title": "Emit unchanged holdings",
                        "type": "boolean",
                        "description": "Accepted for compatibility, but unchanged holdings remain free and emit zero rows and zero charges.",
                        "default": false
                    },
                    "maxRequests": {
                        "title": "Maximum SEC requests",
                        "minimum": 1,
                        "maximum": 120,
                        "type": "integer",
                        "description": "Hard per-run request bound including ticker lookup, submissions, filing indexes, and XML documents.",
                        "default": 20
                    },
                    "requestIntervalMs": {
                        "title": "Request interval milliseconds",
                        "minimum": 100,
                        "maximum": 5000,
                        "type": "integer",
                        "description": "Minimum delay between official SEC requests. Keep a conservative interval and respect SEC access guidance.",
                        "default": 1100
                    },
                    "maxChargeUsd": {
                        "title": "Maximum charge USD",
                        "minimum": 0.005,
                        "maximum": 250,
                        "type": "number",
                        "description": "Fail closed before delivery if planned PPE charges exceed this cap.",
                        "default": 40
                    },
                    "dryRun": {
                        "title": "Dry run",
                        "type": "boolean",
                        "description": "Return deterministic representative rows for all event types without SEC requests, state writes, or charges.",
                        "default": false
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
