# Finance News Scraper (`junipr/finance-news-scraper`) Actor

Scrape financial news from top sources — CNBC, MarketWatch, Seeking Alpha, Google News. Filter by keywords, tickers, sectors. Detect stock mentions and sentiment.

- **URL**: https://apify.com/junipr/finance-news-scraper.md
- **Developed by:** [junipr](https://apify.com/junipr) (community)
- **Categories:** News, Developer tools
- **Stats:** 2 total users, 2 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

$3.90 / 1,000 article scrapeds

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

## Finance News Scraper

Scrape financial news articles from Yahoo Finance, MarketWatch, Bloomberg, Reuters, and CNBC. Filter by stock ticker, company name, sector, or keyword. Returns full article text, auto-detected ticker mentions, and structured metadata — ready for financial analysis pipelines.

### Why Use This Actor?

| Feature | This Actor | Polygon.io News | Alpha Vantage | Benzinga Pro |
|---------|-----------|-----------------|---------------|--------------|
| Price | $3.90/1K (PPE) | $29-199/mo | Free (limited) | $99-199/mo |
| Pay-per-use | Yes | No (subscription) | No | No |
| Full article text | Yes | Snippet only | Snippet only | Yes (premium) |
| Financial sources | 5 major | 20+ aggregated | 50+ headlines | Benzinga only |
| Ticker extraction | Yes | Built-in | Built-in | Built-in |
| Zero-config | Yes | API key required | API key required | Account required |

No subscription, no API key, no commitment. Pay only for articles you scrape.

### How to Use

**Latest financial news (default):**
```json
{
  "keywords": ["stock market"]
}
````

**Ticker-specific news:**

```json
{
  "tickers": ["AAPL", "TSLA"],
  "dateRange": "7d"
}
```

**Sector research:**

```json
{
  "sectors": ["healthcare"],
  "dateRange": "30d",
  "maxArticlesTotal": 200
}
```

**Daily portfolio monitor (schedule daily):**

```json
{
  "tickers": ["AAPL", "MSFT", "GOOGL", "AMZN"],
  "dateRange": "1d",
  "sources": ["yahoo_finance", "reuters", "cnbc"]
}
```

### Input Configuration

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `tickers` | string\[] | `[]` | Stock ticker symbols (e.g. `["AAPL", "TSLA"]`) |
| `companies` | string\[] | `[]` | Company names to search for |
| `keywords` | string\[] | `["stock market"]` | General keywords |
| `sectors` | string\[] | `[]` | Market sectors: technology, healthcare, finance, energy... |
| `sources` | string\[] | all 4 | `yahoo_finance`, `marketwatch`, `bloomberg`, `reuters`, `cnbc` |
| `maxArticlesPerSource` | integer | `25` | Articles per source (max 200) |
| `maxArticlesTotal` | integer | `100` | Total cap (max 1000) |
| `dateRange` | string | `"7d"` | `1d`, `3d`, `7d`, `14d`, `30d` |
| `includeFullText` | boolean | `true` | Full article body. Set false for headlines-only |
| `extractTickers` | boolean | `true` | Auto-detect stock tickers in articles |
| `deduplicateArticles` | boolean | `true` | Remove cross-source duplicates |

### Output Format

```json
{
  "title": "Apple Reports Record Q4 Revenue",
  "url": "https://finance.yahoo.com/news/...",
  "source": "yahoo_finance",
  "sourceDomain": "finance.yahoo.com",
  "author": "John Smith",
  "publishedAt": "2026-03-11T09:30:00.000Z",
  "category": "Earnings",
  "sector": "technology",
  "articleText": "Apple Inc. reported record fourth quarter revenue...",
  "articleSnippet": "Apple Inc. reported record fourth quarter revenue of $124.3 billion...",
  "wordCount": 854,
  "tickers": ["AAPL", "MSFT"],
  "isOpinion": false,
  "isPremium": false,
  "scrapedAt": "2026-03-11T12:00:00.000Z"
}
```

### Tips and Advanced Usage

**Combine with Sentiment Analyzer** for market signal detection:

1. Run Finance News Scraper with `tickers: ["AAPL"]`
2. Pipe `articleText` fields into Sentiment Analyzer
3. Get sentiment scores for every article mentioning AAPL

**Daily scheduled monitoring:** Set up an Apify scheduled run with `dateRange: "1d"` to get fresh articles every morning.

**Bloomberg articles:** Set `proxyConfiguration` to residential proxy for better Bloomberg coverage.

**Not financial advice:** Article data is for research purposes only. Verify information against primary sources before making financial decisions.

### Pricing

**Pay-Per-Event:** $0.0039 per article scraped ($3.90 per 1,000 articles)

Pricing includes all platform compute costs — no hidden fees.

| Scenario | Articles | Cost |
|----------|----------|------|
| Daily portfolio check (20 articles) | 20 | $0.08 |
| Weekly market roundup (100) | 100 | $0.39 |
| Daily monitoring × 30 days | 3,000 | $11.70 |
| AI training dataset (10,000) | 10,000 | $39.00 |

### Integration Examples

**Export to Google Sheets for daily reporting:**
Use the Apify Google Sheets integration to automatically append new articles to a spreadsheet each day. Combine with scheduled runs for a hands-free morning briefing.

**Feed into LLM-based analysis:**
Pipe `articleText` into OpenAI, Claude, or any LLM to generate summaries, extract key financial metrics, or classify articles by impact level. The structured output format makes it easy to batch-process articles programmatically.

**Multi-ticker alerting:**
Run with a list of portfolio tickers and use Apify webhooks to trigger Slack/email notifications when new articles match your holdings. Combined with sentiment analysis, you can filter for high-impact negative coverage only.

### Related Actors

- [News Sentiment Analyzer](https://apify.com/junipr/news-sentiment-analyzer) — NLP-powered sentiment scoring for financial articles
- [Google News Scraper](https://apify.com/junipr/google-news-scraper) — Broader news monitoring across all topics
- [Earnings Call Scraper](https://apify.com/junipr/earnings-call-scraper) — SEC EDGAR transcripts and financial filings

### FAQ

#### Which financial news sources are supported?

Yahoo Finance, MarketWatch, Bloomberg (public articles), Reuters, and CNBC. RSS feeds are used for discovery.

#### Can I get historical articles from months ago?

The actor fetches current articles from RSS feeds. Use `dateFrom` / `dateTo` parameters for custom date ranges within the RSS feed's history (typically 30-90 days).

#### How does ticker detection work?

Tickers are detected by `$TICKER` prefix and by context (adjacent to stock-related words like "shares", "stock", "Inc"). Common words are filtered to reduce false positives.

#### Does it handle paywalled articles?

Yes — paywalled articles are flagged with `isPremium: true` and `articleText: null`. Metadata (title, author, date) is still extracted.

#### Can I filter out opinion pieces?

Yes — all articles have `isOpinion: boolean`. Filter your results by `isOpinion: false` for hard news only.

# Actor input Schema

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

Stock ticker symbols to filter by (e.g. \["AAPL", "TSLA"]). Articles mentioning any of these tickers are included.

## `companies` (type: `array`):

Company names to search for. Used alongside or instead of tickers.

## `keywords` (type: `array`):

General keywords to search for. Combined with ticker/company filters via OR logic.

## `sectors` (type: `array`):

Filter by market sector: technology, healthcare, finance, energy, consumer, industrials, real\_estate, materials, utilities, communications.

## `sources` (type: `array`):

Financial news sources to scrape: google\_news, marketwatch, seekingalpha, cnbc, businessinsider.

## `maxArticlesPerSource` (type: `integer`):

Maximum articles to scrape per source. Min: 1, Max: 200.

## `maxArticlesTotal` (type: `integer`):

Total article cap across all sources. Min: 1, Max: 1000.

## `dateRange` (type: `string`):

Time range for articles: 1d, 3d, 7d, 14d, 30d.

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

Override dateRange — only include articles from this date (ISO 8601).

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

Override dateRange — only include articles up to this date (ISO 8601).

## `includeFullText` (type: `boolean`):

Include full article body text. Set to false for headlines-only mode.

## `extractTickers` (type: `boolean`):

Auto-detect mentioned stock tickers in article text.

## `extractEntities` (type: `boolean`):

Extract named entities (people, companies, products) from articles.

## `deduplicateArticles` (type: `boolean`):

Remove duplicate articles that appear across multiple sources.

## `minArticleLength` (type: `integer`):

Minimum article body length in characters. Filters wire stubs.

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

Proxy settings. Datacenter proxy works for most sources.

## Actor input object example

```json
{
  "keywords": [
    "stock market"
  ],
  "sources": [
    "google_news",
    "marketwatch",
    "seekingalpha",
    "cnbc"
  ],
  "maxArticlesPerSource": 25,
  "maxArticlesTotal": 100,
  "dateRange": "7d",
  "includeFullText": true,
  "extractTickers": true,
  "extractEntities": false,
  "deduplicateArticles": true,
  "minArticleLength": 200,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `results` (type: `string`):

Individual news article records scraped from financial news sources.

# 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("junipr/finance-news-scraper").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("junipr/finance-news-scraper").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 junipr/finance-news-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Finance News Scraper",
        "description": "Scrape financial news from top sources — CNBC, MarketWatch, Seeking Alpha, Google News. Filter by keywords, tickers, sectors. Detect stock mentions and sentiment.",
        "version": "1.0",
        "x-build-id": "nBGkN8aehvCxjXgUX"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/junipr~finance-news-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-junipr-finance-news-scraper",
                "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/junipr~finance-news-scraper/runs": {
            "post": {
                "operationId": "runs-sync-junipr-finance-news-scraper",
                "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/junipr~finance-news-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-junipr-finance-news-scraper",
                "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": {
                    "tickers": {
                        "title": "Stock Tickers",
                        "type": "array",
                        "description": "Stock ticker symbols to filter by (e.g. [\"AAPL\", \"TSLA\"]). Articles mentioning any of these tickers are included.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "companies": {
                        "title": "Company Names",
                        "type": "array",
                        "description": "Company names to search for. Used alongside or instead of tickers.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "keywords": {
                        "title": "Keywords",
                        "type": "array",
                        "description": "General keywords to search for. Combined with ticker/company filters via OR logic.",
                        "items": {
                            "type": "string"
                        },
                        "default": [
                            "stock market"
                        ]
                    },
                    "sectors": {
                        "title": "Sectors",
                        "type": "array",
                        "description": "Filter by market sector: technology, healthcare, finance, energy, consumer, industrials, real_estate, materials, utilities, communications.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "sources": {
                        "title": "News Sources",
                        "type": "array",
                        "description": "Financial news sources to scrape: google_news, marketwatch, seekingalpha, cnbc, businessinsider.",
                        "items": {
                            "type": "string"
                        },
                        "default": [
                            "google_news",
                            "marketwatch",
                            "seekingalpha",
                            "cnbc"
                        ]
                    },
                    "maxArticlesPerSource": {
                        "title": "Max Articles Per Source",
                        "minimum": 1,
                        "maximum": 200,
                        "type": "integer",
                        "description": "Maximum articles to scrape per source. Min: 1, Max: 200.",
                        "default": 25
                    },
                    "maxArticlesTotal": {
                        "title": "Max Articles Total",
                        "minimum": 1,
                        "maximum": 1000,
                        "type": "integer",
                        "description": "Total article cap across all sources. Min: 1, Max: 1000.",
                        "default": 100
                    },
                    "dateRange": {
                        "title": "Date Range",
                        "enum": [
                            "1d",
                            "3d",
                            "7d",
                            "14d",
                            "30d"
                        ],
                        "type": "string",
                        "description": "Time range for articles: 1d, 3d, 7d, 14d, 30d.",
                        "default": "7d"
                    },
                    "dateFrom": {
                        "title": "Date From",
                        "type": "string",
                        "description": "Override dateRange — only include articles from this date (ISO 8601)."
                    },
                    "dateTo": {
                        "title": "Date To",
                        "type": "string",
                        "description": "Override dateRange — only include articles up to this date (ISO 8601)."
                    },
                    "includeFullText": {
                        "title": "Include Full Article Text",
                        "type": "boolean",
                        "description": "Include full article body text. Set to false for headlines-only mode.",
                        "default": true
                    },
                    "extractTickers": {
                        "title": "Extract Tickers",
                        "type": "boolean",
                        "description": "Auto-detect mentioned stock tickers in article text.",
                        "default": true
                    },
                    "extractEntities": {
                        "title": "Extract Named Entities",
                        "type": "boolean",
                        "description": "Extract named entities (people, companies, products) from articles.",
                        "default": false
                    },
                    "deduplicateArticles": {
                        "title": "Deduplicate Articles",
                        "type": "boolean",
                        "description": "Remove duplicate articles that appear across multiple sources.",
                        "default": true
                    },
                    "minArticleLength": {
                        "title": "Min Article Length (chars)",
                        "minimum": 0,
                        "maximum": 5000,
                        "type": "integer",
                        "description": "Minimum article body length in characters. Filters wire stubs.",
                        "default": 200
                    },
                    "proxyConfiguration": {
                        "title": "Proxy Configuration",
                        "type": "object",
                        "description": "Proxy settings. Datacenter proxy works for most sources.",
                        "default": {
                            "useApifyProxy": true
                        }
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
