# SEC Form 13F Holdings Tracker (`nexgendata/sec-form-13f-holdings-tracker`) Actor

Track every SEC Form 13F-HR holding — filer + CIK, period, issuer, CUSIP, value (USD), shares, position type (SH/PRN/CALL/PUT), investment discretion, voting authority. Quiver / WhaleWisdom alternative for retail traders, quant funds, M\&A bankers, journalism.

- **URL**: https://apify.com/nexgendata/sec-form-13f-holdings-tracker.md
- **Developed by:** [Stephan Corbeil](https://apify.com/nexgendata) (community)
- **Categories:** Business, Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $100.00 / 1,000 13f holdings

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

## 📊 SEC Form 13F Holdings Tracker — Hedge Fund & Institutional Investors

**Track every quarterly holding of every $100M+ institutional investment manager — directly from SEC EDGAR. One dataset row per position. No paywall, no API key needed, fresh on the day filings post.**

A Quiver Quantitative / WhaleWisdom / Stockzoa alternative built on the official SEC `13F-HR` filings feed. Every quarter (mid-Feb / mid-May / mid-Aug / mid-Nov), institutional investment managers — Berkshire Hathaway, Renaissance Technologies, Bridgewater, Citadel, Two Sigma, every hedge fund + RIA + insurance company over $100M AUM — disclose every long equity position they hold. This Actor turns those raw `infotable.xml` filings into clean structured rows ready for your spreadsheet, BI tool, vector DB, or alpha-research notebook.

### What you get (per holding row)

- `filer_name` + `filer_cik` — institutional manager (display + numeric CIK)
- `filing_form` — `13F-HR` or `13F-HR/A` (amendment)
- `filing_date`, `period_ending` — when filed and the as-of quarter
- `accession_number` — the unique SEC filing ID
- `issuer_name`, `title_of_class`, `cusip` — what was held
- `value_usd` — position market value in USD (post-2022 reporting)
- `shares_or_principal_amount` + `shares_or_principal_amount_type` (SH/PRN)
- `put_call` — populated for derivative legs (Put / Call)
- `investment_discretion` — SOLE / SHARED / DEFINED (DFND)
- `voting_authority_sole` / `_shared` / `_none`
- `infotable_url`, `filing_index_url` — direct links back to SEC.gov

### Six high-leverage use cases

1. **Track Berkshire / Renaissance / Bridgewater** — set `filerCik` to one of `0001067983`, `0001037389`, `0001350694` and pull every position they hold the moment the filing posts.
2. **"Who owns ticker X?"** — set `tickers: ["APPLE"]` (substring match against issuer name) and snapshot all institutional holders in a window.
3. **New positions vs prior quarter** — run two windows (e.g. Q3 vs Q4) side-by-side, then diff on `(filer_cik, cusip)` to surface new buys + complete exits.
4. **Detect activist accumulation** — Schedule 13D crosses 5%, but 13F holdings reveal pre-disclosure stake building one quarter at a time.
5. **Build a long/short factor** — group by issuer, sum position values, compute "smart-money concentration" weights for backtesting.
6. **M&A target screening** — issuers held heavily by activist funds (Pershing Square, Elliott, Engaged Capital) are statistically over-represented in subsequent buyout announcements.

### JSON quick start (Apify API)

```json
{
  "dateFrom": "2024-11-15",
  "dateTo": "2024-11-30",
  "filerCik": "0001067983",
  "maxFilings": 5
}
````

POST to `https://api.apify.com/v2/acts/nexgendata~sec-form-13f-holdings-tracker/runs?token=YOUR_TOKEN`.

### Python SDK example

```python
from apify_client import ApifyClient

client = ApifyClient("YOUR_TOKEN")
run = client.actor("nexgendata/sec-form-13f-holdings-tracker").call(
    run_input={
        "dateFrom": "2024-11-15",
        "dateTo": "2024-11-30",
        "filerCik": "0001067983",
        "maxFilings": 5,
    }
)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item["filer_name"], item["issuer_name"], item["value_usd"])
```

### cURL one-liner

```bash
curl -X POST "https://api.apify.com/v2/acts/nexgendata~sec-form-13f-holdings-tracker/runs?token=$APIFY_TOKEN" \
  -H "content-type: application/json" \
  -d '{"dateFrom":"2024-11-15","dateTo":"2024-11-30","filerCik":"0001067983","maxFilings":5}'
```

### Pipe the output anywhere

- **Zapier** — `Apify → New Items in Dataset → Google Sheets / Slack / Airtable / Notion`
- **Make.com** — `Apify Watch Run → Data Store / Webhook / Sheets`
- **n8n** — built-in Apify trigger node; route holdings into your warehouse
- **DBT / Airflow / Dagster** — daily/weekly cron via `/runs?token=...&waitForFinish=120`

### Pricing — pay only for what you get

| Event | Cost |
|---|---|
| Actor start | $0.00005 (one-time per run, scaled by GB-RAM) |
| Each 13F holding row | **$0.10** |

A typical Berkshire 13F has ~40 positions → ~$4.00 to pull the entire portfolio. A full quarterly snapshot of 100 hedge funds × 50 positions average → ~$500. Compare to WhaleWisdom Premium ($1,200/yr) or Quiver Pro ($600/yr) — and you own the raw data forever.

**Cost calculator:** `holdings × $0.10 + $0.00005 × memoryGB`. No subscription, no minimum, no surprise overage charges.

### FAQ

**Q. Are amendments (`13F-HR/A`) included?**
A. Yes. Amendments share the same archive structure; the `filing_form` field tells you which is which.

**Q. Why don't I see tickers on holdings?**
A. SEC Form 13F infotables only require CUSIP, not tickers. Use the CUSIP for downstream lookups (your prime broker, Bloomberg, OpenFIGI), or substring-match `issuer_name` against the company name.

**Q. How fresh is the data?**
A. The Actor reads SEC EDGAR live. Filings appear 45 days after quarter-end (the SEC filing deadline). Confidential-treatment positions are redacted by SEC and won't appear.

**Q. What about short positions?**
A. 13F covers long equity, options, and convertibles only. Shorts are NOT reported on 13F. For shorts, look at FINRA's monthly short-interest data.

**Q. Does it work for the very largest filers (e.g. Vanguard, BlackRock)?**
A. Yes — those filings have 5,000–10,000+ positions. Use `maxHoldingsPerFiling` to cap if you only want the top N.

**Q. Is the data official?**
A. Yes. Source is `https://www.sec.gov/Archives/edgar/data/{cik}/{accession}/infotable.xml` — the canonical SEC filing.

### Related actors from the same author

- **[SEC Form 4 Insider Trading Scraper](https://apify.com/nexgendata/sec-form-4-insider-trading-scraper)** — officer/director trades + derivative legs, $0.10/filing.
- **[SEC Form 8-K Material Events Scraper](https://apify.com/nexgendata/sec-form-8k-material-events-scraper)** — M\&A, exec changes, bankruptcy, cyber events.
- **[SEC Form D Scraper](https://apify.com/nexgendata/sec-form-d-scraper)** — private offering disclosures (Reg D filings) for VC/PE intel.

### Try the full nexgendata fleet

[Browse 170+ scrapers](https://apify.com/nexgendata?fpr=2ayu9b) — SEC EDGAR, government contracts, ATS jobs, FEC, court records, real estate, MCP servers and more. Get $5 free Apify credit when you sign up via that link.

***

Built and maintained by the [nexgendata](https://apify.com/nexgendata) team. Bug reports & feature requests welcome via Apify Console messaging.

# Actor input Schema

## `dateFrom` (type: `string`):

Inclusive start date for the 13F-HR filing-date range. Form 13F is filed quarterly; new filings appear in mid-Feb (Q4), mid-May (Q1), mid-Aug (Q2), and mid-Nov (Q3) for the prior quarter.

## `dateTo` (type: `string`):

Inclusive end date for the filing-date range. Set to the same calendar quarter window as dateFrom (e.g. 2024-11-15 to 2024-11-30 captures most Q3 2024 filings).

## `filerCik` (type: `string`):

10-digit CIK of a single institutional filer to restrict to (e.g. 0001067983 = BERKSHIRE HATHAWAY INC, 0001037389 = RENAISSANCE TECHNOLOGIES). Look up at https://www.sec.gov/cgi-bin/browse-edgar?action=getcompany.

## `tickers` (type: `array`):

Filter to only holdings whose issuer name contains one of these tokens (e.g. \['APPLE','MICROSOFT']). 13F infotables do NOT include tickers, so this is a substring match against nameOfIssuer (uppercase). Leave empty for the full universe.

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

SEC full-text search query passed verbatim. Useful for filtering by filer name (e.g. 'BERKSHIRE'). See https://efts.sec.gov/LATEST/search-index?q=BERKSHIRE\&forms=13F-HR.

## `maxFilings` (type: `integer`):

Maximum number of 13F-HR filings to load. Each filing typically yields 50–2,000+ holdings (one dataset row per holding).

## `maxHoldingsPerFiling` (type: `integer`):

Optional cap on how many holdings to emit per individual filing. 0 = unlimited (default). Useful for keeping smoke-test costs predictable.

## Actor input object example

```json
{
  "dateFrom": "2024-12-01",
  "dateTo": "2024-12-15",
  "tickers": [],
  "maxFilings": 5,
  "maxHoldingsPerFiling": 0
}
```

# 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 = {
    "dateFrom": "2024-12-01",
    "dateTo": "2024-12-15",
    "filerCik": "",
    "tickers": [],
    "query": "",
    "maxFilings": 5,
    "maxHoldingsPerFiling": 0
};

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

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

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

```

## Python example

```python
from apify_client import ApifyClient

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

# Prepare the Actor input
run_input = {
    "dateFrom": "2024-12-01",
    "dateTo": "2024-12-15",
    "filerCik": "",
    "tickers": [],
    "query": "",
    "maxFilings": 5,
    "maxHoldingsPerFiling": 0,
}

# Run the Actor and wait for it to finish
run = client.actor("nexgendata/sec-form-13f-holdings-tracker").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{
  "dateFrom": "2024-12-01",
  "dateTo": "2024-12-15",
  "filerCik": "",
  "tickers": [],
  "query": "",
  "maxFilings": 5,
  "maxHoldingsPerFiling": 0
}' |
apify call nexgendata/sec-form-13f-holdings-tracker --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "SEC Form 13F Holdings Tracker",
        "description": "Track every SEC Form 13F-HR holding — filer + CIK, period, issuer, CUSIP, value (USD), shares, position type (SH/PRN/CALL/PUT), investment discretion, voting authority. Quiver / WhaleWisdom alternative for retail traders, quant funds, M&A bankers, journalism.",
        "version": "0.0",
        "x-build-id": "w3BAedrGeXr9Y2h12"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/nexgendata~sec-form-13f-holdings-tracker/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-nexgendata-sec-form-13f-holdings-tracker",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/nexgendata~sec-form-13f-holdings-tracker/runs": {
            "post": {
                "operationId": "runs-sync-nexgendata-sec-form-13f-holdings-tracker",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/nexgendata~sec-form-13f-holdings-tracker/run-sync": {
            "post": {
                "operationId": "run-sync-nexgendata-sec-form-13f-holdings-tracker",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "dateFrom",
                    "dateTo"
                ],
                "properties": {
                    "dateFrom": {
                        "title": "Filing date — from (YYYY-MM-DD)",
                        "type": "string",
                        "description": "Inclusive start date for the 13F-HR filing-date range. Form 13F is filed quarterly; new filings appear in mid-Feb (Q4), mid-May (Q1), mid-Aug (Q2), and mid-Nov (Q3) for the prior quarter."
                    },
                    "dateTo": {
                        "title": "Filing date — to (YYYY-MM-DD)",
                        "type": "string",
                        "description": "Inclusive end date for the filing-date range. Set to the same calendar quarter window as dateFrom (e.g. 2024-11-15 to 2024-11-30 captures most Q3 2024 filings)."
                    },
                    "filerCik": {
                        "title": "Filer CIK (optional)",
                        "type": "string",
                        "description": "10-digit CIK of a single institutional filer to restrict to (e.g. 0001067983 = BERKSHIRE HATHAWAY INC, 0001037389 = RENAISSANCE TECHNOLOGIES). Look up at https://www.sec.gov/cgi-bin/browse-edgar?action=getcompany."
                    },
                    "tickers": {
                        "title": "Issuer-name filter (optional)",
                        "type": "array",
                        "description": "Filter to only holdings whose issuer name contains one of these tokens (e.g. ['APPLE','MICROSOFT']). 13F infotables do NOT include tickers, so this is a substring match against nameOfIssuer (uppercase). Leave empty for the full universe.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "query": {
                        "title": "Free-text query (optional)",
                        "type": "string",
                        "description": "SEC full-text search query passed verbatim. Useful for filtering by filer name (e.g. 'BERKSHIRE'). See https://efts.sec.gov/LATEST/search-index?q=BERKSHIRE&forms=13F-HR."
                    },
                    "maxFilings": {
                        "title": "Max filings",
                        "minimum": 1,
                        "maximum": 500,
                        "type": "integer",
                        "description": "Maximum number of 13F-HR filings to load. Each filing typically yields 50–2,000+ holdings (one dataset row per holding).",
                        "default": 30
                    },
                    "maxHoldingsPerFiling": {
                        "title": "Max holdings per filing",
                        "minimum": 0,
                        "maximum": 50000,
                        "type": "integer",
                        "description": "Optional cap on how many holdings to emit per individual filing. 0 = unlimited (default). Useful for keeping smoke-test costs predictable.",
                        "default": 0
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
