# Cadremploi.fr Scraper (`unfenced-group/cadremploi-scraper`) Actor

Scrape job listings from Cadremploi.fr — France's leading executive and management job board. Full job details including salary range, company info & LLM-ready descriptions in HTML, text and Markdown. daysOld filtering & repost detection. No API key required.

- **URL**: https://apify.com/unfenced-group/cadremploi-scraper.md
- **Developed by:** [Unfenced Group](https://apify.com/unfenced-group) (community)
- **Categories:** Jobs, Automation, Developer tools
- **Stats:** 4 total users, 2 monthly users, 33.3% runs succeeded, 2 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.50 / 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

## Cadremploi.fr Scraper

![Cadremploi.fr Scraper](https://i.imgur.com/NYNgjns.png)

Extract structured job listings from **Cadremploi.fr** — France's leading executive and managerial job board with 24,000+ active listings. No API key required. Output includes salary data, company profiles, and job descriptions in three formats (HTML, plain text, Markdown).

---

### Why use this scraper?

- **Structured data from France's #1 executive job board** — titles, salaries, company info, location, and contract types in one consistent schema
- **Three description formats** — HTML, plain text, and Markdown for direct use in LLM pipelines, RAG applications, and job aggregators
- **Salary extraction** — minimum, maximum, currency, and pay period parsed from structured job data where published
- **Cross-run repost detection** — 90-day memory flags republished listings across automated runs
- **Flexible input** — keyword and location post-filters, contract type selection, age filter, and custom `startUrls` for targeted scraping
- **Ready for automation** — consistent schema, ISO 8601 dates, and flat JSON output compatible with any downstream pipeline

---

### Input parameters

| Parameter | Type | Description |
|---|---|---|
| `startUrls` | Array | Direct job URLs or list page URLs from Cadremploi.fr. If omitted, scrapes the latest 50 jobs from the site feed. |
| `keywords` | String | Post-filter: only return jobs matching this keyword in title, description, sector, or company name. |
| `location` | String | Post-filter: only return jobs in this city or region (e.g. `Paris`, `Lyon`, `Ile-de-France`). |
| `contractTypes` | Array | Filter by contract type: `Full-time`, `Part-time`, `Freelance`, `Temporary`, `Internship`. |
| `maxResults` | Integer | Maximum number of results to return. Default: 100. |
| `daysOld` | Integer | Only return jobs posted within the last N days. Set to 0 to disable. Default: 30. |
| `skipReposts` | Boolean | Skip jobs already seen in previous runs. Requires persistent storage across runs. Default: false. |
| `proxyConfiguration` | Object | Proxy settings. Defaults to the built-in proxy pool — no changes needed for standard use. |

#### Input example

```json
{
  "keywords": "directeur marketing",
  "location": "Paris",
  "contractTypes": ["Full-time"],
  "maxResults": 200,
  "daysOld": 14,
  "skipReposts": true
}
````

#### Using startUrls

Paste a direct offer URL to scrape a specific listing:

```json
{
  "startUrls": [
    { "url": "https://www.cadremploi.fr/emploi/detail_offre?offreId=156513591941990131" }
  ]
}
```

Or paste a list page URL to scrape a custom result set:

```json
{
  "startUrls": [
    { "url": "https://www.cadremploi.fr/emploi/liste_offres" }
  ],
  "maxResults": 100
}
```

***

### Output

Each result is a flat JSON object:

| Field | Type | Description |
|---|---|---|
| `id` | String | Unique offer ID |
| `url` | String | Direct link to the offer |
| `title` | String | Job title |
| `companyName` | String | Hiring company or agency |
| `companyLogo` | String | Company logo URL |
| `companyUrl` | String | Company website URL |
| `companyDescription` | String | Company profile text |
| `location` | String | Full location (city, region, country) |
| `city` | String | City |
| `postalCode` | String | Postal code |
| `region` | String | French region |
| `country` | String | Country code (`FR`) |
| `contractType` | String | Normalised contract type |
| `sector` | String | Industry or occupational category |
| `description` | String | Job description in HTML |
| `descriptionText` | String | Job description in plain text |
| `descriptionMarkdown` | String | Job description in Markdown |
| `salaryMin` | Number | Minimum annual salary (EUR) — null if not published |
| `salaryMax` | Number | Maximum annual salary (EUR) — null if not published |
| `salaryPeriod` | String | Pay period (e.g. `YEAR`) |
| `salaryCurrency` | String | Currency code (`EUR`) |
| `experienceRequired` | String | Required experience (e.g. `3 à 5 ans`) |
| `directApply` | Boolean | True if application is handled on Cadremploi directly |
| `publishDateISO` | String | Publish date in ISO 8601 (UTC) |
| `validThrough` | String | Listing expiry date in ISO 8601 (UTC) |
| `isRepost` | Boolean | True if seen in a previous run |
| `originalPublishDate` | String | First seen date (reposts only) |
| `originalUrl` | String | Original URL (reposts only) |
| `source` | String | Always `cadremploi.fr` |
| `scrapedAt` | String | Scrape timestamp (ISO 8601 UTC) |
| `contentHash` | String | MD5 fingerprint for deduplication |

#### Output example

```json
{
  "id": "156530425728993983",
  "url": "https://www.cadremploi.fr/emploi/detail_offre?offreId=156530425728993983",
  "title": "Collaborateur comptable H/F",
  "companyName": "LEA Recrutement",
  "companyLogo": "https://imagedelivery.net/BN-U87wrUjbdYBHZwNH6NA/xxx/public",
  "companyUrl": null,
  "companyDescription": "Cabinet de recrutement spécialisé...",
  "location": "Montpellier, Languedoc-Roussillon, FR",
  "city": "Montpellier",
  "postalCode": "34000",
  "region": "Languedoc-Roussillon",
  "country": "FR",
  "contractType": "Full-time",
  "sector": "Cabinet Comptable - Audit",
  "description": "<div class=\"job-description\">...</div>",
  "descriptionText": "Nous recherchons un collaborateur comptable...",
  "descriptionMarkdown": "Nous recherchons un collaborateur comptable...",
  "salaryMin": 32000,
  "salaryMax": 38000,
  "salaryPeriod": "YEAR",
  "salaryCurrency": "EUR",
  "experienceRequired": null,
  "directApply": true,
  "publishDateISO": "2026-03-17T12:00:39.000Z",
  "validThrough": "2026-04-17T00:00:00.000Z",
  "isRepost": false,
  "originalPublishDate": null,
  "originalUrl": null,
  "source": "cadremploi.fr",
  "scrapedAt": "2026-03-30T09:15:22.000Z",
  "contentHash": "7ee5c94a3964"
}
```

***

### Pricing

| Volume | Cost |
|---|---|
| 1,000 results | **$1.50** |
| 10,000 results | **$15.00** |
| 50,000 results | **$75.00** |

Billed at **$1.50 per 1,000 results** — pay only for what you use. No subscription, no minimum.

Flat-rate job data services typically charge $50–$200/month regardless of usage. At 5,000–20,000 results per month, this actor costs 70–90% less.

***

### Performance

| Scenario | Speed | Memory |
|---|---|---|
| 50 latest jobs (default) | ~60 seconds | 256 MB |
| 200 jobs with keyword filter | ~4 minutes | 256 MB |
| 1,000 jobs via startUrls | ~20 minutes | 256 MB |

***

### Known limitations

- **Default discovery is capped at ~50 listings per run** — the scraper reads the Cadremploi.fr list page, which displays the 50 most recent jobs server-side. For broader coverage, supply `startUrls` with specific search result page URLs copied from your browser.
- **Keyword and location filters are applied as post-filters** — results are fetched first, then filtered. A keyword filter on a default run of 50 jobs will only match jobs that happen to appear in that set. For targeted keyword searches, use `startUrls`.
- **Salary is not always published** — `salaryMin` and `salaryMax` are `null` when the employer has not disclosed salary information.
- **Apply URL not available** — Cadremploi's application flow is rendered client-side. Use `directApply` to determine whether applications are handled on-site or via employer redirect.

***

### Technical details

Built on the Apify platform using server-rendered HTML scraping. Structured data is extracted from schema.org `JobPosting` JSON-LD blocks present in every offer detail page. No browser automation required — runs at 256 MB memory.

***

### Additional services

Need a custom scraper, scheduled data feed, or integration with your HR platform or ATS? Contact us at **info@unfencedgroup.nl** — we build and maintain job board scrapers across France, Belgium, the Netherlands, Germany, Switzerland, and the UK.

***

*Built by [unfenced-group](https://apify.com/unfenced-group) · [All actors](https://apify.com/unfenced-group)*

# Actor input Schema

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

List of Cadremploi.fr URLs to scrape. Accepts direct job offer URLs (detail\_offre) or list page URLs. If omitted, the scraper fetches the latest 50 jobs from the homepage feed.

## `keywords` (type: `string`):

Filter results by keyword. Matched against job title, description, sector, and company name. Applied as a post-filter after fetching results.

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

Filter results by location (city or region). Applied as a post-filter after fetching results.

## `contractTypes` (type: `array`):

Filter by employment type. Leave empty to include all types.

## `maxResults` (type: `integer`):

Maximum number of job listings to return. Defaults to 100.

## `daysOld` (type: `integer`):

Only return jobs posted within the last N days. Set to 0 to disable this filter.

## `skipReposts` (type: `boolean`):

Skip jobs that have been seen in previous runs (cross-run deduplication with a 90-day memory).

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

Optional. Used to access the jobs listing page when the direct connection is blocked. Defaults to Apify residential proxy (France). Detail pages work without a proxy.

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://www.cadremploi.fr/emploi/liste_offres"
    }
  ],
  "contractTypes": [],
  "maxResults": 10,
  "skipReposts": false,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "FR"
  }
}
```

# Actor output Schema

## `title` (type: `string`):

The job title

## `companyName` (type: `string`):

Hiring company name

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

City, region and country

## `contractType` (type: `string`):

Employment type

## `publishDateISO` (type: `string`):

ISO 8601 publish date

## `url` (type: `string`):

Direct link to the offer

# 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 = {
    "startUrls": [
        {
            "url": "https://www.cadremploi.fr/emploi/liste_offres"
        }
    ],
    "keywords": "",
    "location": "",
    "contractTypes": [],
    "maxResults": 10,
    "daysOld": 0,
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ],
        "apifyProxyCountry": "FR"
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("unfenced-group/cadremploi-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 = {
    "startUrls": [{ "url": "https://www.cadremploi.fr/emploi/liste_offres" }],
    "keywords": "",
    "location": "",
    "contractTypes": [],
    "maxResults": 10,
    "daysOld": 0,
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "FR",
    },
}

# Run the Actor and wait for it to finish
run = client.actor("unfenced-group/cadremploi-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 '{
  "startUrls": [
    {
      "url": "https://www.cadremploi.fr/emploi/liste_offres"
    }
  ],
  "keywords": "",
  "location": "",
  "contractTypes": [],
  "maxResults": 10,
  "daysOld": 0,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "FR"
  }
}' |
apify call unfenced-group/cadremploi-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Cadremploi.fr Scraper",
        "description": "Scrape job listings from Cadremploi.fr — France's leading executive and management job board. Full job details including salary range, company info & LLM-ready descriptions in HTML, text and Markdown. daysOld filtering & repost detection. No API key required.",
        "version": "0.0",
        "x-build-id": "9lexWrp36TQEgsef3"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/unfenced-group~cadremploi-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-unfenced-group-cadremploi-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/unfenced-group~cadremploi-scraper/runs": {
            "post": {
                "operationId": "runs-sync-unfenced-group-cadremploi-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/unfenced-group~cadremploi-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-unfenced-group-cadremploi-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": {
                    "startUrls": {
                        "title": "Start URLs",
                        "type": "array",
                        "description": "List of Cadremploi.fr URLs to scrape. Accepts direct job offer URLs (detail_offre) or list page URLs. If omitted, the scraper fetches the latest 50 jobs from the homepage feed.",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "keywords": {
                        "title": "Keywords",
                        "type": "string",
                        "description": "Filter results by keyword. Matched against job title, description, sector, and company name. Applied as a post-filter after fetching results."
                    },
                    "location": {
                        "title": "Location",
                        "type": "string",
                        "description": "Filter results by location (city or region). Applied as a post-filter after fetching results."
                    },
                    "contractTypes": {
                        "title": "Contract Types",
                        "type": "array",
                        "description": "Filter by employment type. Leave empty to include all types.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxResults": {
                        "title": "Max Results",
                        "minimum": 1,
                        "maximum": 10000,
                        "type": "integer",
                        "description": "Maximum number of job listings to return. Defaults to 100."
                    },
                    "daysOld": {
                        "title": "Maximum Age (days)",
                        "minimum": 0,
                        "maximum": 365,
                        "type": "integer",
                        "description": "Only return jobs posted within the last N days. Set to 0 to disable this filter."
                    },
                    "skipReposts": {
                        "title": "Skip Reposts",
                        "type": "boolean",
                        "description": "Skip jobs that have been seen in previous runs (cross-run deduplication with a 90-day memory).",
                        "default": false
                    },
                    "proxyConfiguration": {
                        "title": "Proxy Configuration",
                        "type": "object",
                        "description": "Optional. Used to access the jobs listing page when the direct connection is blocked. Defaults to Apify residential proxy (France). Detail pages work without a proxy."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
