# Crawl4AI Web to Markdown — URL to Clean Markdown for LLM & RAG (`bikram07/web-to-markdown-crawl4ai`) Actor

Convert any URL, sitemap, or whole website into clean Markdown for LLMs, RAG pipelines, and AI agents. Powered by the open-source Crawl4AI engine. Pay per page ($1/1,000), failed pages never charged. MCP-ready — call it from Claude or Cursor.

- **URL**: https://apify.com/bikram07/web-to-markdown-crawl4ai.md
- **Developed by:** [Bikram](https://apify.com/bikram07) (community)
- **Categories:** AI, Agents, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.00 / 1,000 page converteds

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

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

## Crawl4AI Web to Markdown — URL to Clean Markdown for LLM & RAG

Convert any URL to clean, LLM-ready Markdown — without installing or hosting anything. This Actor is a **hosted Crawl4AI**: it wraps the popular open-source [Crawl4AI](https://github.com/unclecode/crawl4ai) crawler (the most-starred LLM-friendly web crawler on GitHub) and runs it on Apify's infrastructure with a real Chromium browser, so JavaScript-heavy pages render correctly. Point it at a URL, a sitemap, or a whole site, and get back boilerplate-free Markdown ready for RAG pipelines, vector databases, fine-tuning datasets, or direct pasting into an LLM context window.

### Features

- **URL to Markdown in one call** — single pages, full sitemaps, or breadth-first site crawls (up to 1,000 pages per run)
- **Built on Crawl4AI** — the same `AsyncWebCrawler` + pruning content filter you'd run locally, with zero setup
- **Boilerplate removal** — navigation menus, footers, cookie banners and sidebars are stripped, leaving "fit markdown" optimized for token budgets
- **Real browser rendering** — Chromium via Playwright, so SPAs and JavaScript-rendered content convert correctly
- **Three output formats** — Markdown only, Markdown + cleaned HTML, or Markdown + metadata/links JSON
- **RAG-friendly dataset output** — each page is one dataset item with `url`, `title`, `markdown`, `wordCount`, `crawledAt`; export as JSON, CSV, or via API
- **Respects robots.txt** by default (configurable)
- **Fair pay-per-event pricing** — you are charged only for pages that convert successfully; failed pages are free
- **MCP-ready** — callable as a tool from Claude, Cursor, or any MCP client via Apify's MCP server

### Input example

```json
{
    "startUrls": [{ "url": "https://docs.crawl4ai.com" }],
    "crawlMode": "crawl",
    "maxPages": 50,
    "includeLinks": false,
    "outputFormat": "markdown",
    "removeBoilerplate": true,
    "respectRobotsTxt": true
}
````

| Field | Type | Default | Description |
|---|---|---|---|
| `startUrls` | array | — (required) | URLs to convert |
| `crawlMode` | string | `single` | `single` (only listed URLs), `sitemap` (pages from sitemap.xml), `crawl` (follow same-domain links) |
| `maxPages` | integer | `10` | Max pages per run (1–1000) |
| `includeLinks` | boolean | `false` | Keep hyperlinks in the Markdown |
| `outputFormat` | string | `markdown` | `markdown`, `markdown+html`, or `markdown+json` |
| `removeBoilerplate` | boolean | `true` | Strip navigation/footer/cookie-banner noise ("fit markdown") |
| `respectRobotsTxt` | boolean | `true` | Skip pages disallowed by robots.txt (not charged) |
| `proxyConfiguration` | object | none | Optional Apify Proxy / custom proxy settings |

### Output example

Each successfully converted page becomes one dataset item:

```json
{
    "url": "https://docs.crawl4ai.com/core/quickstart/",
    "title": "Quick Start - Crawl4AI Documentation",
    "markdown": "## Getting Started with Crawl4AI\n\nWelcome to Crawl4AI, an open-source LLM-friendly Web Crawler & Scraper...",
    "wordCount": 1183,
    "crawledAt": "2026-06-13T10:42:07.512345+00:00"
}
```

With `outputFormat: "markdown+json"`, items additionally contain `metadata` (description, og tags, etc.) and `links.internal` / `links.external` arrays. With `markdown+html`, items contain the `html` field with cleaned HTML.

### Pricing — about $1 per 1,000 pages

This Actor uses Apify's **pay-per-event** model with one simple event:

| Event | Price | When it's charged |
|---|---|---|
| `page-converted` | $0.001 | Once per page successfully converted to Markdown |

That's **$1 per 1,000 pages**, plus standard Apify platform usage for your runs (compute, proxy if enabled). Pages that fail to load, return an HTTP error, time out, or are blocked by robots.txt are **never charged**. You can also set a maximum cost per run in Apify Console — the Actor stops gracefully when your limit is reached.

Comparable webpage-to-markdown Actors on Apify Store charge up to $0.05 per page for the same job.

### Use from Claude, Cursor & other AI agents (MCP)

This Actor works as a tool over the [Model Context Protocol](https://mcp.apify.com). Add Apify's MCP server to your client and your agent can convert URLs to Markdown on demand:

```json
{
    "mcpServers": {
        "apify": {
            "url": "https://mcp.apify.com/sse?actors=bikram07/web-to-markdown-crawl4ai",
            "headers": {
                "Authorization": "Bearer YOUR_APIFY_TOKEN"
            }
        }
    }
}
```

Then ask your agent things like: *"Fetch https://example.com/blog as Markdown and summarize it"* — the agent calls this Actor, gets clean Markdown back, and works with it directly. This is ideal for agentic RAG: the agent decides what to read, this Actor handles rendering, extraction, and cleanup.

You can also call it from code via the [Apify API](https://docs.apify.com/api/v2):

```bash
curl -X POST "https://api.apify.com/v2/acts/bikram07~web-to-markdown-crawl4ai/run-sync-get-dataset-items?token=YOUR_APIFY_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"startUrls": [{"url": "https://example.com"}], "crawlMode": "single"}'
```

### Hosted vs. self-hosted Crawl4AI

Crawl4AI is open source — you can absolutely run it yourself. Self-hosting means managing a Python environment, Playwright browser binaries, OS dependencies, memory for Chromium, retries, and a server that's always on. This Actor is for the cases where that overhead isn't worth it: you pay roughly $1 per 1,000 pages, get an HTTPS API + MCP endpoint immediately, scale to parallel runs without provisioning anything, and your results land in queryable dataset storage. If you're converting millions of pages a month on dedicated hardware, self-hosting can be cheaper; for everything from prototypes to production RAG ingestion at moderate volume, hosted is simpler.

### FAQ

**How do I convert a website to Markdown for an LLM?**
Add the site URL to `startUrls`, pick `crawl` mode (or `sitemap` if the site has a sitemap.xml), set `maxPages`, and run. Each page becomes a dataset item with clean Markdown you can chunk and embed for RAG.

**Does it handle JavaScript-rendered pages and SPAs?**
Yes. Pages are rendered in headless Chromium via Playwright before conversion, so client-side rendered content is included — unlike simple HTML-to-markdown converters that only see the initial HTML.

**What's the difference between this and running crawl4ai locally?**
The conversion engine is the same library. The difference is operational: no Python/Playwright setup, no server to maintain, an instant REST API and MCP endpoint, parallel scaling, and dataset storage with JSON/CSV export. See the comparison section above.

**Am I charged for pages that fail?**
No. The `page-converted` event is only charged for pages that successfully convert. Timeouts, HTTP errors, and robots.txt-blocked pages are logged and free. You can also cap the maximum total cost per run in Apify Console.

**Can I keep links and raw HTML in the output?**
Yes. Set `includeLinks: true` to preserve hyperlinks in the Markdown, and `outputFormat: "markdown+html"` or `"markdown+json"` to additionally get cleaned HTML or metadata + link lists per page.

### Related searches this Actor answers

crawl4ai hosted · url to markdown · website to markdown for LLM · web scraping for RAG · html to markdown converter API · convert webpage to markdown for vector database · LLM-ready web content extraction

***

Built on [Crawl4AI](https://github.com/unclecode/crawl4ai) (Apache 2.0). This Actor is not affiliated with the Crawl4AI project; it packages the library as a hosted service.

# Actor input Schema

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

URLs to convert to Markdown. In <b>single</b> mode each URL is converted as-is. In <b>sitemap</b> mode each URL is treated as (or resolved to) a sitemap.xml. In <b>crawl</b> mode each URL is the starting point of a same-domain crawl.

## `crawlMode` (type: `string`):

<b>single</b> — convert only the listed URLs. <b>sitemap</b> — load each site's sitemap.xml and convert the pages it lists (up to Max pages). <b>crawl</b> — follow same-domain links from each start URL (breadth-first, up to Max pages).

## `maxPages` (type: `integer`):

Maximum number of pages to convert across the whole run. Hard limit: 1000. You are only charged for pages that convert successfully.

## `includeLinks` (type: `boolean`):

When enabled, hyperlinks are preserved in the Markdown output. Disable for cleaner text aimed at embeddings/RAG chunking.

## `outputFormat` (type: `string`):

<b>markdown</b> — Markdown only (smallest items). <b>markdown+html</b> — also include the cleaned HTML. <b>markdown+json</b> — also include page metadata and extracted link lists.

## `removeBoilerplate` (type: `boolean`):

Use Crawl4AI's pruning content filter to strip navigation, footers, cookie banners and other boilerplate, producing 'fit markdown' optimized for LLM context windows.

## `respectRobotsTxt` (type: `boolean`):

Skip pages disallowed by the site's robots.txt. Skipped pages are not charged.

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

Optionally route browser traffic through Apify Proxy or custom proxies. Not required for most public sites.

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://docs.crawl4ai.com"
    }
  ],
  "crawlMode": "single",
  "maxPages": 10,
  "includeLinks": false,
  "outputFormat": "markdown",
  "removeBoilerplate": true,
  "respectRobotsTxt": true,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# 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://docs.crawl4ai.com"
        }
    ],
    "proxyConfiguration": {
        "useApifyProxy": false
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("bikram07/web-to-markdown-crawl4ai").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://docs.crawl4ai.com" }],
    "proxyConfiguration": { "useApifyProxy": False },
}

# Run the Actor and wait for it to finish
run = client.actor("bikram07/web-to-markdown-crawl4ai").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://docs.crawl4ai.com"
    }
  ],
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}' |
apify call bikram07/web-to-markdown-crawl4ai --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=bikram07/web-to-markdown-crawl4ai",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Crawl4AI Web to Markdown — URL to Clean Markdown for LLM & RAG",
        "description": "Convert any URL, sitemap, or whole website into clean Markdown for LLMs, RAG pipelines, and AI agents. Powered by the open-source Crawl4AI engine. Pay per page ($1/1,000), failed pages never charged. MCP-ready — call it from Claude or Cursor.",
        "version": "0.1",
        "x-build-id": "cnJO0n1KE2WZiRU2e"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/bikram07~web-to-markdown-crawl4ai/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-bikram07-web-to-markdown-crawl4ai",
                "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/bikram07~web-to-markdown-crawl4ai/runs": {
            "post": {
                "operationId": "runs-sync-bikram07-web-to-markdown-crawl4ai",
                "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/bikram07~web-to-markdown-crawl4ai/run-sync": {
            "post": {
                "operationId": "run-sync-bikram07-web-to-markdown-crawl4ai",
                "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": [
                    "startUrls"
                ],
                "properties": {
                    "startUrls": {
                        "title": "Start URLs",
                        "type": "array",
                        "description": "URLs to convert to Markdown. In <b>single</b> mode each URL is converted as-is. In <b>sitemap</b> mode each URL is treated as (or resolved to) a sitemap.xml. In <b>crawl</b> mode each URL is the starting point of a same-domain crawl.",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "crawlMode": {
                        "title": "Crawl mode",
                        "enum": [
                            "single",
                            "sitemap",
                            "crawl"
                        ],
                        "type": "string",
                        "description": "<b>single</b> — convert only the listed URLs. <b>sitemap</b> — load each site's sitemap.xml and convert the pages it lists (up to Max pages). <b>crawl</b> — follow same-domain links from each start URL (breadth-first, up to Max pages).",
                        "default": "single"
                    },
                    "maxPages": {
                        "title": "Max pages",
                        "minimum": 1,
                        "maximum": 1000,
                        "type": "integer",
                        "description": "Maximum number of pages to convert across the whole run. Hard limit: 1000. You are only charged for pages that convert successfully.",
                        "default": 10
                    },
                    "includeLinks": {
                        "title": "Keep hyperlinks in Markdown",
                        "type": "boolean",
                        "description": "When enabled, hyperlinks are preserved in the Markdown output. Disable for cleaner text aimed at embeddings/RAG chunking.",
                        "default": false
                    },
                    "outputFormat": {
                        "title": "Output format",
                        "enum": [
                            "markdown",
                            "markdown+html",
                            "markdown+json"
                        ],
                        "type": "string",
                        "description": "<b>markdown</b> — Markdown only (smallest items). <b>markdown+html</b> — also include the cleaned HTML. <b>markdown+json</b> — also include page metadata and extracted link lists.",
                        "default": "markdown"
                    },
                    "removeBoilerplate": {
                        "title": "Remove boilerplate",
                        "type": "boolean",
                        "description": "Use Crawl4AI's pruning content filter to strip navigation, footers, cookie banners and other boilerplate, producing 'fit markdown' optimized for LLM context windows.",
                        "default": true
                    },
                    "respectRobotsTxt": {
                        "title": "Respect robots.txt",
                        "type": "boolean",
                        "description": "Skip pages disallowed by the site's robots.txt. Skipped pages are not charged.",
                        "default": true
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Optionally route browser traffic through Apify Proxy or custom proxies. Not required for most public sites."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
