# Orphanet Rare Diseases Scraper (`parseforge/orphanet-rare-diseases-scraper`) Actor

Pull rare disease records from Orphanet and Orphadata by ORPHAcode. Returns the preferred name, synonyms, disorder group, clinical definition, plus mappings to ICD-10, ICD-11, OMIM, UMLS, and MeSH. Useful for terminology mapping, health record enrichment, and rare disease research.

- **URL**: https://apify.com/parseforge/orphanet-rare-diseases-scraper.md
- **Developed by:** [ParseForge](https://apify.com/parseforge) (community)
- **Categories:** Developer tools, AI, Other
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $4.00 / 1,000 results

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

![ParseForge Banner](https://github.com/ParseForge/apify-assets/blob/ad35ccc13ddd068b9d6cba33f323962e39aed5b2/banner.jpg?raw=true)

## 🧬 Orphanet Rare Diseases Scraper

> 🚀 **Pull structured rare-disease records in seconds.** Turn Orphanet ORPHAcodes into clean rows with names, synonyms, definitions, and cross-references to ICD-10, ICD-11, OMIM, UMLS, MeSH, MedDRA, and MONDO.

> 🕒 **Last updated:** 2026-06-05 · **📊 18 fields** per record · 11,400+ ORPHAcodes available · 9 languages

Orphanet is the reference portal for rare diseases and orphan drugs, and Orphadata is its open data service. This Actor reads the keyless Orphadata cross-referencing API and returns one tidy record per rare disease, including every terminology mapping that Orphanet publishes for that code.

Coverage spans the full Orphanet nomenclature: more than 11,400 ORPHAcodes covering disorders, groups of disorders, and subtypes. Each record carries the preferred term, known synonyms, a clinical definition where available, the disorder group and typology, the last update date, and the cross-references that let you join Orphanet data to ICD-10, ICD-11, OMIM, UMLS, MeSH, MedDRA, and MONDO.

| 🎯 Target Audience | 💡 Primary Use Cases |
|---|---|
| Bioinformaticians and data scientists | Building rare-disease terminology maps |
| Health-tech and EHR teams | Enriching patient records with standard codes |
| Pharma and clinical research groups | Orphan-drug and indication research |
| Medical ontology and knowledge-graph builders | Linking ORPHAcodes across vocabularies |

### 📋 What the Orphanet Rare Diseases Scraper does

- Reads single ORPHAcodes you supply, or pulls the latest codes straight from the Orphadata list endpoint.
- Returns the preferred term, synonyms, disorder group, typology, and clinical definition.
- Extracts cross-references to ICD-10, ICD-11, OMIM, UMLS, MeSH, MedDRA, and MONDO.
- Keeps the full raw cross-reference list with mapping relations and ICD browser links.
- Works in nine languages for preferred terms, synonyms, and definitions.

### 🎬 Full Demo (_🚧 Coming soon_)

### ⚙️ Input

| Field | Type | Description |
|---|---|---|
| `orphaCodes` | array | Optional list of ORPHAcodes (for example `558`). Leave empty to pull codes automatically from the Orphadata list endpoint. |
| `language` | string | Language for terms, synonyms, and definitions. One of `en`, `fr`, `de`, `es`, `it`, `nl`, `pl`, `pt`, `cs`. |
| `maxItems` | integer | Maximum number of records to collect. Free plan is capped at 10. |

Scrape specific diseases by code:

```json
{
    "orphaCodes": ["558", "61", "141"],
    "language": "en",
    "maxItems": 3
}
````

Pull a batch of records automatically:

```json
{
    "language": "en",
    "maxItems": 25
}
```

> ⚠️ **Good to Know:** Orphadata publishes data under the Creative Commons Attribution 4.0 licence. Fields such as `mesh` or `medDRA` are present only when Orphanet has a validated mapping for that disease, so they may be empty on some records.

### 📊 Output

| Field | Description |
|---|---|
| 🔢 `orphaCode` | Orphanet identifier for the disease |
| 📌 `preferredTerm` | Official preferred name |
| 🧬 `disorderGroup` | Disorder, group of disorders, or subtype |
| 🧩 `typology` | Typology label (for example Disease) |
| 📖 `definition` | Clinical definition when available |
| 🔗 `url` | Orphanet record page |
| 📅 `lastUpdated` | Last update timestamp from Orphanet |
| 🏷 `synonyms` | Alternative names |
| 🩺 `icd10` | ICD-10 codes |
| 🩺 `icd11` | ICD-11 codes |
| 🧬 `omim` | OMIM references |
| 🔬 `umls` | UMLS concept IDs |
| 📚 `mesh` | MeSH descriptors |
| ⚠️ `medDRA` | MedDRA codes |
| 🔗 `mondo` | MONDO references |
| 🗂 `crossReferences` | Full mapping list with relation and ICD links |
| 🕒 `scrapedAt` | Collection timestamp |
| ❌ `error` | Null on success |

Real sample records:

```json
{
    "orphaCode": "166024",
    "preferredTerm": "Multiple epiphyseal dysplasia-macrocephaly-facial dysmorphism syndrome",
    "disorderGroup": "Disorder",
    "synonyms": ["Multiple epiphyseal dysplasia, Al-Gazali type"],
    "icd10": ["Q77.3"],
    "icd11": ["LD24.61"],
    "omim": ["607131"],
    "umls": ["C4304500"],
    "url": "http://www.orpha.net/consor/cgi-bin/OC_Exp.php?lng=en&Expert=166024"
}
```

```json
{
    "orphaCode": "58",
    "preferredTerm": "Alexander disease",
    "disorderGroup": "Disorder",
    "synonyms": ["AxD"],
    "icd10": ["G93.8"],
    "icd11": ["8A44.2"],
    "omim": ["203450"],
    "umls": ["C0270726"],
    "url": "http://www.orpha.net/consor/cgi-bin/OC_Exp.php?lng=en&Expert=58"
}
```

```json
{
    "orphaCode": "166032",
    "preferredTerm": "Multiple epiphyseal dysplasia-miniepiphyses syndrome",
    "disorderGroup": "Disorder",
    "synonyms": [],
    "icd10": ["Q77.3"],
    "icd11": ["LD24.61"],
    "omim": ["609325"],
    "umls": ["C5924992"],
    "url": "http://www.orpha.net/consor/cgi-bin/OC_Exp.php?lng=en&Expert=166032"
}
```

### ✨ Why choose this Actor

- Authoritative source. Data comes straight from the official Orphadata cross-referencing API.
- Vocabulary mappings included. Join Orphanet to ICD, OMIM, UMLS, MeSH, MedDRA, and MONDO out of the box.
- Multilingual. Nine language options for names and definitions.
- Clean shape. One flat record per disease, ready for analysis and knowledge graphs.

### 📈 How it compares to alternatives

| Approach | Cross-references | Multilingual | Maintenance |
|---|---|---|---|
| This Actor | All Orphanet mappings | 9 languages | None on your side |
| Manual portal lookups | One disease at a time | Limited | High |
| Raw XML downloads | Yes, but heavy parsing | Yes | You parse and maintain |

### 🚀 How to use

1. Sign up for a free Apify account with our [referral link](https://console.apify.com/sign-up?fpr=vmoqkp).
2. Open the Orphanet Rare Diseases Scraper.
3. Enter ORPHAcodes, or leave the list empty to pull records automatically.
4. Pick a language and set how many records you want.
5. Run the Actor and collect your dataset.

### 💼 Business use cases

**Health-tech and EHR enrichment**

| Need | Outcome |
|---|---|
| Standard codes on patient records | Map ORPHAcodes to ICD and OMIM |
| Consistent disease naming | Use preferred terms and synonyms |

**Pharma and clinical research**

| Need | Outcome |
|---|---|
| Orphan-drug indication research | Browse disorders by group and typology |
| Cohort definition | Link diseases across vocabularies |

**Knowledge graphs and ontologies**

| Need | Outcome |
|---|---|
| Cross-vocabulary linking | Use MONDO, UMLS, and MeSH references |
| Entity resolution | Match synonyms to a single ORPHAcode |

**Academic and epidemiology work**

| Need | Outcome |
|---|---|
| Rare-disease prevalence studies | Start from a clean code list |
| Multilingual datasets | Pull terms in nine languages |

### 🔌 Automating Orphanet Rare Diseases Scraper

Connect the Actor to Make, Zapier, Slack, Airbyte, GitHub, and Google Drive through the Apify API and integrations. Trigger runs on a schedule and push records into your warehouse, sheet, or messaging channel automatically.

### 🌟 Beyond business use cases

- **Research:** build reproducible rare-disease datasets for papers and reviews.
- **Personal:** explore the terminology behind a specific diagnosis.
- **Non-profit:** support patient-advocacy resources with standard codes.
- **Experimentation:** prototype medical chatbots and ontology tools.

### 🤖 Ask an AI assistant

Paste a record into [ChatGPT](https://chat.openai.com), [Claude](https://claude.ai), [Perplexity](https://www.perplexity.ai), or [Microsoft Copilot](https://copilot.microsoft.com) and ask it to summarize the disease, explain a mapping relation, or group records by disorder type.

### ❓ Frequently Asked Questions

**What is an ORPHAcode?**
A unique identifier assigned by Orphanet to each rare disease, group, or subtype.

**Where does the data come from?**
The official Orphadata cross-referencing API at api.orphadata.com.

**Do I need an API key?**
No. The Orphadata endpoints used here are keyless.

**Which vocabularies are covered?**
ICD-10, ICD-11, OMIM, UMLS, MeSH, MedDRA, and MONDO, when Orphanet provides a mapping.

**Why are some code fields empty?**
Orphanet only publishes validated mappings, so a disease may lack a MeSH or MedDRA code.

**Can I scrape specific diseases?**
Yes. Provide their ORPHAcodes in the input.

**What if I leave the code list empty?**
The Actor pulls codes from the Orphadata list endpoint up to your item limit.

**Which languages are supported?**
English, French, German, Spanish, Italian, Dutch, Polish, Portuguese, and Czech.

**How many records can I get?**
Free plans return up to 10. Paid plans go up to 1,000,000.

**Is the data licensed for reuse?**
Orphadata uses Creative Commons Attribution 4.0. Credit Orphanet when you publish.

**Does it return clinical definitions?**
Yes, when Orphanet provides one for the disease.

### 🔌 Integrate with any app

Use the Apify API to run the Actor and fetch results from your own code, or wire it into low-code platforms through the standard Apify integrations.

### 🔗 Recommended Actors

- ParseForge OurAirports Global Airport Database Scraper
- ParseForge PubMed Articles Scraper
- ParseForge ClinicalTrials Studies Scraper
- ParseForge WHO ICD Codes Scraper

> 💡 **Pro Tip:** browse the complete [ParseForge collection](https://apify.com/parseforge).

**🆘 Need Help?** [Open our contact form](https://tally.so/r/BzdKgA)

> **⚠️ Disclaimer:** independent tool, not affiliated with Orphanet or Orphadata. Only publicly available data collected.

# Actor input Schema

## `orphaCodes` (type: `array`):

Optional list of Orphanet ORPHAcodes to scrape (for example 558 for Marfan syndrome). Leave empty to automatically pull the latest rare-disease records from the Orphadata list endpoint.

## `language` (type: `string`):

Language for preferred terms, synonyms and definitions.

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

Free users: Limited to 10 items (preview). Paid users: Optional, max 1,000,000

## Actor input object example

```json
{
  "orphaCodes": [
    "558",
    "61",
    "141",
    "93",
    "118"
  ],
  "language": "en",
  "maxItems": 10
}
```

# Actor output Schema

## `results` (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 = {
    "orphaCodes": [
        "558",
        "61",
        "141",
        "93",
        "118"
    ],
    "maxItems": 10
};

// Run the Actor and wait for it to finish
const run = await client.actor("parseforge/orphanet-rare-diseases-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 = {
    "orphaCodes": [
        "558",
        "61",
        "141",
        "93",
        "118",
    ],
    "maxItems": 10,
}

# Run the Actor and wait for it to finish
run = client.actor("parseforge/orphanet-rare-diseases-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 '{
  "orphaCodes": [
    "558",
    "61",
    "141",
    "93",
    "118"
  ],
  "maxItems": 10
}' |
apify call parseforge/orphanet-rare-diseases-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Orphanet Rare Diseases Scraper",
        "description": "Pull rare disease records from Orphanet and Orphadata by ORPHAcode. Returns the preferred name, synonyms, disorder group, clinical definition, plus mappings to ICD-10, ICD-11, OMIM, UMLS, and MeSH. Useful for terminology mapping, health record enrichment, and rare disease research.",
        "version": "0.1",
        "x-build-id": "FBlae77c0JuoZPLv3"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/parseforge~orphanet-rare-diseases-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-parseforge-orphanet-rare-diseases-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/parseforge~orphanet-rare-diseases-scraper/runs": {
            "post": {
                "operationId": "runs-sync-parseforge-orphanet-rare-diseases-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/parseforge~orphanet-rare-diseases-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-parseforge-orphanet-rare-diseases-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": {
                    "orphaCodes": {
                        "title": "ORPHAcodes",
                        "type": "array",
                        "description": "Optional list of Orphanet ORPHAcodes to scrape (for example 558 for Marfan syndrome). Leave empty to automatically pull the latest rare-disease records from the Orphadata list endpoint.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "language": {
                        "title": "Language",
                        "enum": [
                            "en",
                            "fr",
                            "de",
                            "es",
                            "it",
                            "nl",
                            "pl",
                            "pt",
                            "cs"
                        ],
                        "type": "string",
                        "description": "Language for preferred terms, synonyms and definitions.",
                        "default": "en"
                    },
                    "maxItems": {
                        "title": "Max Items",
                        "minimum": 1,
                        "maximum": 1000000,
                        "type": "integer",
                        "description": "Free users: Limited to 10 items (preview). Paid users: Optional, max 1,000,000"
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
