# Indeed & Wellfound Job Scraper — 5 Platforms + Filters (`abdullahdilshad/indeed-wellfound-job-scraper`) Actor

Scrape Indeed, Wellfound, Remotive, RemoteOK & WeWorkRemotely in one run. Filter by location, job type & seniority. Auto-deduped, scored & outreach-ready.

- **URL**: https://apify.com/abdullahdilshad/indeed-wellfound-job-scraper.md
- **Developed by:** [Abdullah Dilshad](https://apify.com/abdullahdilshad) (community)
- **Categories:** Jobs, Automation, AI
- **Stats:** 2 total users, 0 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.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.

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

## 🌐 Universal Job Scraper — 5 Platforms, Any Role, Any Location

> Search **any job type** across 5 platforms in one run. Filter by location, job type, and experience level. Every result is scored and optionally paired with a personalised outreach message.

---

### What Makes This Different

Most job scrapers only hit **one platform** and dump raw data.  
This actor scrapes **5 platforms simultaneously**, deduplicates across them, scores every result, and remembers what you've already seen — so repeat runs only cost you for **new jobs**.

| Step | What happens |
|---|---|
| **Scrape** | Hits Remotive, RemoteOK, We Work Remotely, Wellfound & Indeed |
| **Filter** | Location, job type (remote/full-time/contract), experience level, custom keywords |
| **Deduplicate** | Removes cross-platform duplicates — exact + fuzzy matching |
| **Score** | Relevance Score (matches your keywords) + Opportunity Score (company signals) |
| **Outreach** | Optional: generates a personalised cold DM per job using Claude AI |
| **Incremental** | Remembers seen jobs — you only pay for **new results** on repeat runs |

---

### Platforms

| Platform | Method | Job Types |
|---|---|---|
| **Remotive** | JSON API — fast & free | Remote tech, marketing, design, sales |
| **RemoteOK** | JSON API — fast & free | Remote startup roles, any field |
| **We Work Remotely** | RSS — fast & free | Remote roles across all categories |
| **Wellfound** | Playwright | Startup roles, any function |
| **Indeed** | Playwright + Proxy | Broadest coverage — all types & locations |

> **Tip:** Start with the 3 API platforms (no proxy needed, lowest cost). Add Wellfound & Indeed for higher volume or non-remote roles.

---

### Input Options

| Field | Type | Default | Description |
|---|---|---|---|
| `queries` | string[] | `["software engineer"]` | Job titles or search terms |
| `location` | string | `""` | City, country, or "Remote". Blank = anywhere |
| `jobType` | select | `"any"` | `any` / `remote` / `full-time` / `part-time` / `contract` |
| `experienceLevel` | select | `"any"` | `any` / `entry` / `mid` / `senior` |
| `platforms` | string[] | API 3 | Which platforms to scrape |
| `maxResultsPerPlatform` | integer | `50` | Cap per platform (max 500) |
| `targetKeywords` | string[] | `[]` | Optional: only return jobs with these keywords |
| `excludePatterns` | string[] | `[]` | Optional: skip jobs containing these words |
| `enableScoring` | boolean | `true` | Compute Relevance + Opportunity scores |
| `enableOutreach` | boolean | `false` | Generate Claude AI outreach messages |
| `anthropicApiKey` | string | — | Required only for outreach |
| `proxyConfig` | object | Residential | For Wellfound & Indeed |

---

### Output Fields

| Field | Description |
|---|---|
| `title` | Job title |
| `company` | Company name |
| `location` | Location or "Remote" |
| `url` | Direct apply link |
| `salary` | Salary if listed |
| `tags` | Keywords matched from your filters |
| `datePosted` | Date posted |
| `source` | Which platform |
| `relevance_score` | **0–100** — how well the job matches your keywords |
| `opportunity_score` | **0–100** — company signals: startup stage, manual processes, growth |
| `outreach_message` | Ready-to-send personalised DM (if enabled) |

---

### Example Inputs

#### Remote software jobs anywhere
```json
{
  "queries": ["software engineer", "backend developer", "fullstack developer"],
  "platforms": ["remotive", "remoteok", "weworkremotely"],
  "jobType": "remote",
  "experienceLevel": "mid",
  "maxResultsPerPlatform": 100
}
````

#### Senior marketing roles in London

```json
{
  "queries": ["marketing manager", "growth manager", "head of marketing"],
  "platforms": ["indeed", "wellfound"],
  "location": "London",
  "jobType": "full-time",
  "experienceLevel": "senior",
  "excludePatterns": ["unpaid", "commission only"],
  "proxyConfig": { "useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"] }
}
```

#### Contract data roles with keyword filter

```json
{
  "queries": ["data analyst", "data engineer", "BI developer"],
  "platforms": ["remotive", "remoteok", "weworkremotely", "indeed"],
  "jobType": "contract",
  "targetKeywords": ["Python", "SQL", "dbt", "Snowflake"],
  "enableScoring": true
}
```

***

### Scoring Explained

#### Relevance Score (0–100)

How well the job matches your `targetKeywords`. Title matches score higher than description matches.\
If no keywords are set → score defaults to 50 (neutral).

#### Opportunity Score (0–100)

Universal company signals — applies to any industry:

- 🚀 Growth signals: Series A/B, seed round, scaling fast
- 🔧 Process signals: manual workflows, spreadsheets, bottlenecks
- 🔗 Integration signals: API, CRM, webhook, workflow mentions
- 👥 Team signals: startup, small team, early-stage, contractor

***

### Incremental Runs — Only Pay for New Jobs

The actor stores all processed job IDs in Apify's Key-Value Store.\
On repeat runs, **already-seen jobs are skipped** — you only process and pay for genuinely new listings.

**Recommended schedule:** Daily at 08:00 via Apify Schedules.

***

### Cost Estimate

| Mode | Compute Units / 1,000 results |
|---|---|
| API only (Remotive + RemoteOK + WWR) | ~2 CU |
| + Playwright (Wellfound / Indeed) | ~8–12 CU |
| + AI Outreach (Claude, billed separately) | ~12 CU + ~$0.01/job |

***

### Use Cases

- 🔍 **Job seekers** — daily multi-platform alerts, pre-filtered to your role & location
- 💼 **Recruiters** — source candidates across 5 boards in minutes, not hours
- 🤝 **Freelancers & consultants** — find companies actively hiring = warm leads
- 🛠️ **HR tech & job boards** — feed structured data into your product
- 📊 **Market researchers** — track hiring trends by role, location, company type

***

### FAQ

**Q: Do I need proxies?**\
Only for Wellfound and Indeed. The 3 API platforms work without any proxy.

**Q: Can I scrape any job type — not just tech?**\
Yes. Search for "nurse", "accountant", "sales rep", "chef" — any query works.

**Q: Do I need an Anthropic key?**\
Only if `enableOutreach: true`. The actor works fully without it.

**Q: How do I avoid duplicates across runs?**\
Automatically handled. The KV store remembers every job ID already pushed.

**Q: Can I run this on a schedule?**\
Yes — use Apify Schedules. Daily runs with incremental state = zero wasted compute.

***

### Support

Open an issue on the actor page or contact via Apify console. Response within 24 hours.

# Actor input Schema

## `queries` (type: `array`):

What jobs to search for. E.g. \['software engineer', 'product manager', 'data analyst'].

## `location` (type: `string`):

City, country, or 'Remote'. Leave blank to search everywhere.

## `jobType` (type: `string`):

Filter by employment type.

## `experienceLevel` (type: `string`):

Filter by seniority level in the job title.

## `platforms` (type: `array`):

Which job boards to search. Valid values: remotive, remoteok, weworkremotely, wellfound, indeed. API platforms are fastest and free.

## `maxResultsPerPlatform` (type: `integer`):

Cap on jobs fetched per platform per run. Hard limit: 500.

## `targetKeywords` (type: `array`):

Only return jobs containing at least one of these keywords. Leave empty to get all jobs matching your queries.

## `excludePatterns` (type: `array`):

Skip jobs containing any of these words. E.g. \['intern', 'unpaid', 'commission only'].

## `enableScoring` (type: `boolean`):

Score each job on Relevance (matches your keywords) and Opportunity (company signals like startup stage, manual processes).

## `enableOutreach` (type: `boolean`):

Generate a personalised cold outreach DM per job using Claude AI. Requires Anthropic API key.

## `anthropicApiKey` (type: `string`):

Required only when AI Outreach is enabled.

## `proxyConfig` (type: `object`):

Proxy settings. Residential proxy required for Indeed and Wellfound.

## Actor input object example

```json
{
  "queries": [
    "software engineer"
  ],
  "location": "",
  "jobType": "any",
  "experienceLevel": "any",
  "platforms": [
    "remotive",
    "remoteok",
    "weworkremotely"
  ],
  "maxResultsPerPlatform": 50,
  "targetKeywords": [],
  "excludePatterns": [],
  "enableScoring": true,
  "enableOutreach": false,
  "proxyConfig": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# Actor output Schema

## `jobListings` (type: `string`):

All scraped jobs with title, company, location, salary, scores and apply URL.

## `seenJobIds` (type: `string`):

Tracks all previously seen job IDs so repeat runs only return new jobs.

# 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 = {
    "proxyConfig": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("abdullahdilshad/indeed-wellfound-job-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 = { "proxyConfig": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    } }

# Run the Actor and wait for it to finish
run = client.actor("abdullahdilshad/indeed-wellfound-job-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 '{
  "proxyConfig": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call abdullahdilshad/indeed-wellfound-job-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Indeed & Wellfound Job Scraper — 5 Platforms + Filters",
        "description": "Scrape Indeed, Wellfound, Remotive, RemoteOK & WeWorkRemotely in one run. Filter by location, job type & seniority. Auto-deduped, scored & outreach-ready.",
        "version": "0.1",
        "x-build-id": "LtR5leqxaPNI1POOJ"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/abdullahdilshad~indeed-wellfound-job-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-abdullahdilshad-indeed-wellfound-job-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/abdullahdilshad~indeed-wellfound-job-scraper/runs": {
            "post": {
                "operationId": "runs-sync-abdullahdilshad-indeed-wellfound-job-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/abdullahdilshad~indeed-wellfound-job-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-abdullahdilshad-indeed-wellfound-job-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",
                "required": [
                    "queries",
                    "platforms"
                ],
                "properties": {
                    "queries": {
                        "title": "Job Titles / Search Queries",
                        "type": "array",
                        "description": "What jobs to search for. E.g. ['software engineer', 'product manager', 'data analyst'].",
                        "default": [
                            "software engineer"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "location": {
                        "title": "Location",
                        "type": "string",
                        "description": "City, country, or 'Remote'. Leave blank to search everywhere.",
                        "default": ""
                    },
                    "jobType": {
                        "title": "Job Type",
                        "enum": [
                            "any",
                            "remote",
                            "full-time",
                            "part-time",
                            "contract"
                        ],
                        "type": "string",
                        "description": "Filter by employment type.",
                        "default": "any"
                    },
                    "experienceLevel": {
                        "title": "Experience Level",
                        "enum": [
                            "any",
                            "entry",
                            "mid",
                            "senior"
                        ],
                        "type": "string",
                        "description": "Filter by seniority level in the job title.",
                        "default": "any"
                    },
                    "platforms": {
                        "title": "Platforms to Scrape",
                        "type": "array",
                        "description": "Which job boards to search. Valid values: remotive, remoteok, weworkremotely, wellfound, indeed. API platforms are fastest and free.",
                        "default": [
                            "remotive",
                            "remoteok",
                            "weworkremotely"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxResultsPerPlatform": {
                        "title": "Max Results Per Platform",
                        "minimum": 1,
                        "maximum": 500,
                        "type": "integer",
                        "description": "Cap on jobs fetched per platform per run. Hard limit: 500.",
                        "default": 50
                    },
                    "targetKeywords": {
                        "title": "Keyword Filter (optional)",
                        "type": "array",
                        "description": "Only return jobs containing at least one of these keywords. Leave empty to get all jobs matching your queries.",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "excludePatterns": {
                        "title": "Exclude Patterns (optional)",
                        "type": "array",
                        "description": "Skip jobs containing any of these words. E.g. ['intern', 'unpaid', 'commission only'].",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "enableScoring": {
                        "title": "Enable Scoring",
                        "type": "boolean",
                        "description": "Score each job on Relevance (matches your keywords) and Opportunity (company signals like startup stage, manual processes).",
                        "default": true
                    },
                    "enableOutreach": {
                        "title": "Enable AI Outreach Messages",
                        "type": "boolean",
                        "description": "Generate a personalised cold outreach DM per job using Claude AI. Requires Anthropic API key.",
                        "default": false
                    },
                    "anthropicApiKey": {
                        "title": "Anthropic API Key",
                        "type": "string",
                        "description": "Required only when AI Outreach is enabled."
                    },
                    "proxyConfig": {
                        "title": "Proxy Configuration",
                        "type": "object",
                        "description": "Proxy settings. Residential proxy required for Indeed and Wellfound."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
