# Disease Outbreak News Scraper (`automation-lab/disease-outbreak-news-scraper`) Actor

Scrape WHO Disease Outbreak News notices for public-health, travel-risk, insurance, NGO, pharma, and OSINT monitoring workflows.

- **URL**: https://apify.com/automation-lab/disease-outbreak-news-scraper.md
- **Developed by:** [Stas Persiianenko](https://apify.com/automation-lab) (community)
- **Categories:** News
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per event

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

## Disease Outbreak News Scraper

Scrape the latest World Health Organization (WHO) Disease Outbreak News notices for public-health monitoring, travel-risk alerts, insurance workflows, NGO dashboards, OSINT pipelines, and epidemiology research.

The actor extracts structured WHO Disease Outbreak News (DON) records including publication date, title, country/region, disease or hazard, canonical URL, summary, risk assessment, WHO advice, and optional full article text.

### What does Disease Outbreak News Scraper do?

Disease Outbreak News Scraper monitors the official WHO Disease Outbreak News source at `who.int` and turns public outbreak notices into clean dataset rows.

It can:

- 🦠 collect the latest WHO outbreak notices
- 🌍 infer countries and regions from WHO titles
- 📅 filter by publication date range
- 🔎 filter by disease or hazard keyword
- 📄 include full article text for NLP and search indexing
- 🧭 extract WHO advice and risk assessment sections when present
- 🔗 preserve canonical WHO source URLs for auditability

### Who is it for?

This actor is designed for teams that need reliable outbreak signals from an authoritative source.

- 🏥 Public-health analysts tracking new WHO notices
- ✈️ Travel risk and duty-of-care teams monitoring destinations
- 🛡️ Security and OSINT teams building early warning feeds
- 🧬 Pharma, clinical operations, and supply-chain teams watching health events
- 🤝 NGOs and humanitarian teams monitoring operational risk
- 🧾 Insurers and assistance companies triaging health advisories
- 📊 Data teams feeding dashboards, alerts, or knowledge bases

### Why use this actor?

WHO Disease Outbreak News pages are public, but analysts often need structured and scheduled data rather than manually checking a website.

This actor gives you:

- repeatable scheduled runs
- API-ready JSON output
- direct export to CSV, Excel, JSON, XML, RSS, or Parquet through Apify datasets
- stable dedupe keys via WHO URLs and DON identifiers
- optional article text for downstream classification

### Data extracted

| Field | Description |
| --- | --- |
| `title` | WHO Disease Outbreak News title |
| `url` | Canonical WHO detail page URL |
| `outbreakId` | DON identifier parsed from the URL |
| `publishedDate` | ISO publication timestamp from WHO |
| `formattedDate` | WHO display date |
| `countries` | Countries or regions inferred from the title |
| `disease` | Disease or hazard inferred from the title |
| `summary` | First detail-page paragraph |
| `situationAtAGlance` | WHO situation-at-a-glance section when available |
| `riskAssessment` | WHO risk assessment section when available |
| `whoAdvice` | WHO advice or public-health advice section |
| `articleText` | Optional full article text |
| `source` | Source label |
| `scrapedAt` | Time the row was scraped |

### How much does it cost to scrape WHO disease outbreak news?

This actor uses pay-per-event pricing.

You pay a small run-start charge plus a per-record charge for each saved WHO outbreak notice. The input prefill is intentionally small so the first run is inexpensive. Increase `maxItems` for scheduled monitoring or historical backfills.

### How to use Disease Outbreak News Scraper

1. Open the actor on Apify.
2. Set `maxItems` to the number of notices you need.
3. Optionally add `fromDate` and `toDate`.
4. Optionally add disease keywords such as `cholera`, `mpox`, `yellow fever`, `Ebola`, or `Nipah`.
5. Optionally add country/region keywords such as `India`, `Uganda`, `Global`, or `Democratic Republic of the Congo`.
6. Enable `includeArticleText` if you need full text.
7. Run the actor and export the dataset.

### Input options

#### Maximum outbreak notices

`maxItems` controls how many WHO notices are saved. Use a low number for alerts and a higher number for historical collection.

#### From date and to date

Use `fromDate` and `toDate` in `YYYY-MM-DD` format to restrict notices by publication date.

#### Countries or regions

Use `countries` to match geography in WHO titles. Examples:

- `Global`
- `India`
- `Uganda`
- `Democratic Republic of the Congo`

#### Diseases or hazards

Use `diseases` to match disease or hazard keywords in WHO titles. Examples:

- `yellow fever`
- `cholera`
- `Ebola`
- `mpox`
- `Nipah`

#### Include full article text

Set `includeArticleText` to `true` when you need the full article for NLP, semantic search, compliance review, or data enrichment.

### Output example

```json
{
  "title": "Yellow fever - Global",
  "url": "https://www.who.int/emergencies/disease-outbreak-news/item/2026-DON610",
  "outbreakId": "2026-DON610",
  "publishedDate": "2026-06-24T18:00:00Z",
  "formattedDate": "24 June 2026",
  "countries": ["Global"],
  "disease": "Yellow fever",
  "summary": "Globally, in 2025 and early 2026...",
  "riskAssessment": "...",
  "whoAdvice": "...",
  "source": "WHO Disease Outbreak News",
  "scrapedAt": "2026-06-27T00:00:00.000Z"
}
````

### Tips for best results

- Use scheduled runs for alert monitoring.
- Keep `maxItems` small for frequent monitoring.
- Enable full article text only when needed.
- Use disease filters for focused dashboards.
- Use date filters for incremental collection.
- Store the WHO URL or `outbreakId` as your dedupe key.

### Integrations

Disease Outbreak News Scraper works well with:

- Slack or email alerts for new notices
- Google Sheets or Airtable outbreak trackers
- Snowflake, BigQuery, or S3 data lakes
- OSINT dashboards and security monitoring tools
- RAG pipelines and vector databases
- Travel-risk and duty-of-care workflows
- Insurance triage and claims risk workflows

### API usage

#### Node.js

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

const client = new ApifyClient({ token: process.env.APIFY_TOKEN });
const run = await client.actor('automation-lab/disease-outbreak-news-scraper').call({
  maxItems: 25,
  diseases: ['yellow fever'],
  includeArticleText: false
});
console.log(run.defaultDatasetId);
```

#### Python

```python
from apify_client import ApifyClient

client = ApifyClient('YOUR_APIFY_TOKEN')
run = client.actor('automation-lab/disease-outbreak-news-scraper').call(run_input={
    'maxItems': 25,
    'countries': ['Global'],
})
print(run['defaultDatasetId'])
```

#### cURL

```bash
curl "https://api.apify.com/v2/acts/automation-lab~disease-outbreak-news-scraper/runs?token=$APIFY_TOKEN" \
  -H 'Content-Type: application/json' \
  -d '{"maxItems":25,"includeArticleText":false}'
```

### MCP usage

Use this actor from Apify MCP tools in Claude Code or Claude Desktop.

MCP endpoint:

`https://mcp.apify.com/?tools=automation-lab/disease-outbreak-news-scraper`

Claude Code setup:

```bash
claude mcp add apify-who-outbreaks https://mcp.apify.com/?tools=automation-lab/disease-outbreak-news-scraper
```

Claude Desktop JSON config:

```json
{
  "mcpServers": {
    "apify-who-outbreaks": {
      "url": "https://mcp.apify.com/?tools=automation-lab/disease-outbreak-news-scraper"
    }
  }
}
```

Example prompts:

- "Run the WHO disease outbreak news scraper for the latest 20 notices and summarize new global risks."
- "Scrape WHO Disease Outbreak News for Ebola notices and return country, date, risk assessment, and advice."
- "Monitor WHO outbreak notices since last week and identify items relevant to travel security."

### Scheduling and monitoring

For alert monitoring, create a scheduled Apify task with:

- `maxItems`: 10 to 25
- `fromDate`: recent date when appropriate
- disease or country filters for your workflow
- `includeArticleText`: false unless full text is required

Export or webhook the dataset into your alerting system.

### Common workflows

#### Public-health dashboard

Run daily, collect the latest notices, dedupe by `outbreakId`, and chart counts by disease and region.

#### Travel-risk alerting

Run every few hours with destination country filters and send new rows to Slack or email.

#### Clinical operations monitoring

Track disease keywords that may affect trial sites, supply chains, or field operations.

#### OSINT enrichment

Send full article text into a classifier, vector database, or entity extraction pipeline.

### FAQ

#### Can I schedule this WHO outbreak scraper?

Yes. Create an Apify task and schedule it hourly, daily, or weekly depending on your alerting needs.

#### Does this actor scrape private or restricted medical data?

No. It extracts public WHO Disease Outbreak News pages and preserves WHO source URLs for citation.

### Troubleshooting

#### I got fewer results than `maxItems`

Filters may exclude many notices. Remove country, disease, or date filters and try again.

#### Country fields look inferred

WHO titles are not a formal country taxonomy. The actor infers countries and regions from title text and preserves the original title and URL for verification.

#### Risk assessment or WHO advice is empty

Not every WHO notice uses the same section headings. The actor fills these fields when matching sections are present on the detail page.

### Data freshness

The actor reads the current WHO public endpoint and detail pages at run time. Use Apify schedules for continuous monitoring.

### Legality and ethics

This actor collects public WHO web content. Always respect WHO terms, cite WHO as the source when redistributing analysis, and use the data responsibly for public-health, risk, research, and monitoring workflows.

### Related scrapers

Explore related Automation Lab actors at:

- https://apify.com/automation-lab
- https://apify.com/automation-lab/google-news-scraper
- https://apify.com/automation-lab/website-contact-finder

### Limitations

- Countries and diseases are inferred from title text.
- Historical archive pages outside the current WHO endpoint are not separately crawled in this version.
- The actor does not provide medical advice; it structures source material for monitoring and analysis.

### Changelog

Initial version extracts WHO Disease Outbreak News records with filters, summaries, risk/advice sections, and optional full text.

### Support

If you need additional WHO fields, historical archive coverage, or a specific alert workflow, open an issue on Apify and include your input JSON and expected output.

# Actor input Schema

## `maxItems` (type: `integer`):

Maximum number of WHO Disease Outbreak News records to save.

## `fromDate` (type: `string`):

Only include notices published on or after this date (YYYY-MM-DD). Leave empty for no lower bound.

## `toDate` (type: `string`):

Only include notices published on or before this date (YYYY-MM-DD). Leave empty for no upper bound.

## `countries` (type: `array`):

Optional country/region keywords to match in the WHO notice title, such as India, Uganda, Global, or Democratic Republic of the Congo.

## `diseases` (type: `array`):

Optional disease/hazard keywords to match in the WHO notice title, such as yellow fever, cholera, mpox, Nipah, or Ebola.

## `includeArticleText` (type: `boolean`):

When enabled, saves the full text from each WHO detail page. Disable for cheaper alert-monitoring runs.

## `startUrls` (type: `array`):

Optional list of specific WHO Disease Outbreak News detail URLs to process instead of the latest listing.

## Actor input object example

```json
{
  "maxItems": 20,
  "countries": [
    "Global"
  ],
  "includeArticleText": false
}
```

# Actor output Schema

## `overview` (type: `string`):

No description

# 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 = {
    "maxItems": 20,
    "countries": [
        "Global"
    ],
    "includeArticleText": false
};

// Run the Actor and wait for it to finish
const run = await client.actor("automation-lab/disease-outbreak-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 = {
    "maxItems": 20,
    "countries": ["Global"],
    "includeArticleText": False,
}

# Run the Actor and wait for it to finish
run = client.actor("automation-lab/disease-outbreak-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 '{
  "maxItems": 20,
  "countries": [
    "Global"
  ],
  "includeArticleText": false
}' |
apify call automation-lab/disease-outbreak-news-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Disease Outbreak News Scraper",
        "description": "Scrape WHO Disease Outbreak News notices for public-health, travel-risk, insurance, NGO, pharma, and OSINT monitoring workflows.",
        "version": "0.1",
        "x-build-id": "3GjGCih33SkRwj2oB"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/automation-lab~disease-outbreak-news-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-automation-lab-disease-outbreak-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/automation-lab~disease-outbreak-news-scraper/runs": {
            "post": {
                "operationId": "runs-sync-automation-lab-disease-outbreak-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/automation-lab~disease-outbreak-news-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-automation-lab-disease-outbreak-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": {
                    "maxItems": {
                        "title": "Maximum outbreak notices",
                        "minimum": 1,
                        "maximum": 1000,
                        "type": "integer",
                        "description": "Maximum number of WHO Disease Outbreak News records to save.",
                        "default": 100
                    },
                    "fromDate": {
                        "title": "From date",
                        "type": "string",
                        "description": "Only include notices published on or after this date (YYYY-MM-DD). Leave empty for no lower bound."
                    },
                    "toDate": {
                        "title": "To date",
                        "type": "string",
                        "description": "Only include notices published on or before this date (YYYY-MM-DD). Leave empty for no upper bound."
                    },
                    "countries": {
                        "title": "Countries or regions",
                        "type": "array",
                        "description": "Optional country/region keywords to match in the WHO notice title, such as India, Uganda, Global, or Democratic Republic of the Congo.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "diseases": {
                        "title": "Diseases or hazards",
                        "type": "array",
                        "description": "Optional disease/hazard keywords to match in the WHO notice title, such as yellow fever, cholera, mpox, Nipah, or Ebola.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "includeArticleText": {
                        "title": "Include full article text",
                        "type": "boolean",
                        "description": "When enabled, saves the full text from each WHO detail page. Disable for cheaper alert-monitoring runs.",
                        "default": false
                    },
                    "startUrls": {
                        "title": "Specific WHO DON URLs",
                        "type": "array",
                        "description": "Optional list of specific WHO Disease Outbreak News detail URLs to process instead of the latest listing.",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL",
                                    "description": "WHO Disease Outbreak News detail URL."
                                }
                            }
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
