# SEO Audit Tool (`scrapier/seo-audit-tool`) Actor

🔎 SEO Audit Tool analyzes your website for technical issues, on-page SEO, keywords, and backlinks to boost rankings. 📈 Get actionable insights, prioritize fixes, and track improvements fast. 🚀 Perfect for marketers & developers.

- **URL**: https://apify.com/scrapier/seo-audit-tool.md
- **Developed by:** [Scrapier](https://apify.com/scrapier) (community)
- **Categories:** SEO tools, Developer tools, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $5.99 / 1,000 results

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

## 🔍 SEO Audit Tool

Crawl any website and get a **page-by-page technical & on-page SEO audit** — titles, meta descriptions, headings, links, images, content length, technical tags, broken links/images, and structured data — all saved live to a clean, sectioned dataset.

Point it at one URL or **hundreds**. Each site is crawled independently, scored against industry SEO heuristics, and exported as structured rows you can push to a sheet, BI tool, or your own pipeline.

### ✨ Why choose this actor?

- **🌐 Bulk-friendly** — audit many websites in a single run.
- **🛡️ Self-healing networking** — starts direct, then auto-falls-back to Datacenter and Residential proxies *only if the site blocks us*. No wasted proxy spend on friendly sites.
- **⚡ Browser-grade requests** — uses [`impit`](https://github.com/apify/impit) browser impersonation (real TLS/HTTP fingerprints) instead of fragile raw HTTP.
- **💾 Live results** — every page is saved the moment it's analyzed; a long crawl never loses progress.
- **📊 Organized output** — results split into focused views: Overview, Title & Meta, Headings, Links, Images, Content, Technical, Broken Links, Structured Data.

### 🧪 Key features

| Category | What it checks |
|---|---|
| **Title & Meta** | Title presence & length, meta description presence & length |
| **Headings** | H1 presence, single-H1 rule, extracted H1 text, H2 presence |
| **Links** | Total links, link-count threshold, internal `nofollow` links |
| **Images** | Missing `alt` (unoptimized) images, broken images |
| **Content** | Word count & content-length threshold |
| **Technical** | Doctype, charset, viewport, AMP, iframe, robots.txt, favicon, Google Analytics |
| **Broken** | Broken internal & external links (with URL lists) |
| **Structured data** | JSON-LD & Microdata extraction |

### 📥 Input

| Field | Type | Description |
|---|---|---|
| `startUrls` *(required)* | array | Website URLs to audit (bulk supported). |
| `proxyConfiguration` | object | Proxy used for fallback. Crawl always starts direct. |
| `maxRequestsPerCrawl` | integer | Max pages per site (empty = unlimited). |
| `maxDepth` | integer | Internal-link crawl depth (empty = unlimited). |
| `userAgent` | string | Custom User-Agent. |
| `viewPortWidth` / `viewPortHeight` | integer | Viewport client hints. |
| `pageTimeout` | integer | Page navigation timeout (ms). |
| `maxRequestRetries` | integer | Retries per failed request. |
| `handlePageTimeoutSecs` | integer | Per-page processing budget (s). |
| `seoParams` | object | Override SEO thresholds. |

```json
{
  "startUrls": [{ "url": "https://apify.com" }],
  "proxyConfiguration": { "useApifyProxy": false },
  "maxRequestsPerCrawl": 10,
  "maxDepth": 2
}
````

### 📤 Output

One record per crawled page. Example (trimmed):

```json
{
  "url": "https://apify.com/",
  "title": "Apify: Full-stack web scraping and data extraction platform",
  "isLoaded": true,
  "isMetaDescription": true,
  "metaDescription": "Cloud platform for web scraping...",
  "isH1": true,
  "h1": "Get real-time web data for your AI",
  "isH1OnlyOne": true,
  "linksCount": 88,
  "internalNoFollowLinks": ["https://mcp.apify.com/"],
  "wordsCount": 1532,
  "isViewport": true,
  "robotsFileExists": true,
  "faviconExists": true,
  "brokenLinksCount": 1,
  "brokenLinks": ["https://apify.com/contact-sales/demo"],
  "externalBrokenLinksCount": 7,
  "externalBrokenLinks": ["https://x.com/apify"],
  "jsonLd": { "isJsonLd": false, "jsonLdData": {} },
  "microdata": { "isMicrodata": false, "microdata": [] }
}
```

Every boolean flag (`isTitle`, `isViewport`, `isDoctype`, …), count (`linksCount`, `wordsCount`, …), and list (`brokenLinks`, `notOptimizedImages`, …) is available per page.

### 🚀 How to use (Apify Console)

1. Log in at [console.apify.com](https://console.apify.com) → **Actors**.
2. Open **SEO Audit Tool**.
3. Add one or more URLs under **🌐 Website URLs to audit**.
4. (Optional) Set max pages / depth and proxy.
5. Click **Start** and watch the live log.
6. Open the **Output** tab — switch between the section views.
7. Export to JSON / CSV / XLSX.

### 🤖 Use via API

```bash
curl -X POST "https://api.apify.com/v2/acts/<ACTOR_ID>/run-sync-get-dataset-items?token=$APIFY_TOKEN" \
     -H "Content-Type: application/json" \
     -d '{"startUrls":[{"url":"https://apify.com"}],"maxRequestsPerCrawl":10}'
```

### 🎯 Best use cases

- Site-wide SEO audits before a redesign or migration.
- Finding broken links & images at scale.
- Verifying title/meta/heading hygiene across many pages.
- Checking structured-data (JSON-LD / Microdata) coverage.
- Monitoring competitor sites for technical SEO posture.

### 💳 Pricing

This actor uses the **Pay-per-event** model:

- **`row_result`** — charged once per page successfully audited and saved.

You only pay for results you receive. The crawl stops cleanly when your charge limit is reached.

### ❓ FAQ

**Does it run JavaScript?** No — it audits the server-rendered HTML using fast browser-impersonating HTTP. This is ideal for SEO (search engines weigh server HTML heavily) and keeps runs cheap.

**Will it get blocked?** It starts direct and automatically escalates to Datacenter then Residential proxies if a site pushes back, then sticks with the working tier.

**Can I audit multiple sites at once?** Yes — add as many URLs as you like; each is crawled independently with its own page/depth budget.

### 🛟 Support & feedback

Found an issue or want a new check? Open an issue on the actor's **Issues** tab.

### ⚖️ Legal

Only public pages are crawled. You are responsible for complying with target sites' Terms of Service and applicable laws (GDPR/CCPA, etc.). `robots.txt` and reasonable rate limits are respected.

# Actor input Schema

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

One or more website URLs to crawl & audit. Supports bulk input — paste a list, upload a file, or add them one by one. Each URL is crawled independently as its own site.

## `maxRequestsPerCrawl` (type: `integer`):

Maximum number of pages to crawl per website. Leave empty for unlimited.

## `maxDepth` (type: `integer`):

How deep to follow internal links from each start URL (0 = only the start page). Leave empty for unlimited.

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

Crawling starts WITHOUT a proxy (direct). If the target blocks us, the actor automatically falls back to a Datacenter proxy, then to a Residential proxy. Configure the proxy used for fallback here.

## `userAgent` (type: `string`):

Custom User-Agent to test desktop vs mobile rendering.

## `viewPortWidth` (type: `integer`):

Viewport width (px) sent as client hints to trigger responsive breakpoints.

## `viewPortHeight` (type: `integer`):

Viewport height (px) sent as client hints.

## `pageTimeout` (type: `integer`):

How long to wait for each page to respond, in milliseconds.

## `maxRequestRetries` (type: `integer`):

How many times to retry a failed page request before giving up.

## `handlePageTimeoutSecs` (type: `integer`):

Maximum seconds allowed to fully process a single page (fetch + link checks).

## `seoParams` (type: `object`):

Override the internal SEO thresholds (title/meta lengths, link & word limits, working status codes, output links).

## Actor input object example

```json
{
  "startUrls": [
    "https://apify.com"
  ],
  "maxRequestsPerCrawl": 10,
  "maxDepth": 2,
  "proxyConfiguration": {
    "useApifyProxy": false
  },
  "userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36",
  "viewPortWidth": 1440,
  "viewPortHeight": 900,
  "pageTimeout": 30000,
  "maxRequestRetries": 2,
  "handlePageTimeoutSecs": 60,
  "seoParams": {
    "maxTitleLength": 70,
    "minTitleLength": 10,
    "maxMetaDescriptionLength": 140,
    "maxLinksCount": 3000,
    "maxWordsCount": 350,
    "outputLinks": false,
    "workingStatusCodes": [
      200,
      301,
      302,
      304
    ]
  }
}
```

# 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": [
        "https://apify.com"
    ],
    "maxRequestsPerCrawl": 10,
    "maxDepth": 2,
    "proxyConfiguration": {
        "useApifyProxy": false
    },
    "seoParams": {
        "maxTitleLength": 70,
        "minTitleLength": 10,
        "maxMetaDescriptionLength": 140,
        "maxLinksCount": 3000,
        "maxWordsCount": 350,
        "outputLinks": false,
        "workingStatusCodes": [
            200,
            301,
            302,
            304
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("scrapier/seo-audit-tool").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": ["https://apify.com"],
    "maxRequestsPerCrawl": 10,
    "maxDepth": 2,
    "proxyConfiguration": { "useApifyProxy": False },
    "seoParams": {
        "maxTitleLength": 70,
        "minTitleLength": 10,
        "maxMetaDescriptionLength": 140,
        "maxLinksCount": 3000,
        "maxWordsCount": 350,
        "outputLinks": False,
        "workingStatusCodes": [
            200,
            301,
            302,
            304,
        ],
    },
}

# Run the Actor and wait for it to finish
run = client.actor("scrapier/seo-audit-tool").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": [
    "https://apify.com"
  ],
  "maxRequestsPerCrawl": 10,
  "maxDepth": 2,
  "proxyConfiguration": {
    "useApifyProxy": false
  },
  "seoParams": {
    "maxTitleLength": 70,
    "minTitleLength": 10,
    "maxMetaDescriptionLength": 140,
    "maxLinksCount": 3000,
    "maxWordsCount": 350,
    "outputLinks": false,
    "workingStatusCodes": [
      200,
      301,
      302,
      304
    ]
  }
}' |
apify call scrapier/seo-audit-tool --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=scrapier/seo-audit-tool",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "SEO Audit Tool",
        "description": "🔎 SEO Audit Tool analyzes your website for technical issues, on-page SEO, keywords, and backlinks to boost rankings. 📈 Get actionable insights, prioritize fixes, and track improvements fast. 🚀 Perfect for marketers & developers.",
        "version": "0.1",
        "x-build-id": "J1k0uzCWdXTDnHwUL"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/scrapier~seo-audit-tool/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-scrapier-seo-audit-tool",
                "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/scrapier~seo-audit-tool/runs": {
            "post": {
                "operationId": "runs-sync-scrapier-seo-audit-tool",
                "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/scrapier~seo-audit-tool/run-sync": {
            "post": {
                "operationId": "run-sync-scrapier-seo-audit-tool",
                "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": "🌐 Website URLs to audit",
                        "type": "array",
                        "description": "One or more website URLs to crawl & audit. Supports bulk input — paste a list, upload a file, or add them one by one. Each URL is crawled independently as its own site.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxRequestsPerCrawl": {
                        "title": "📄 Max pages per site",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum number of pages to crawl per website. Leave empty for unlimited."
                    },
                    "maxDepth": {
                        "title": "🔗 Max crawl depth",
                        "minimum": 0,
                        "type": "integer",
                        "description": "How deep to follow internal links from each start URL (0 = only the start page). Leave empty for unlimited."
                    },
                    "proxyConfiguration": {
                        "title": "🛡️ Proxy Configuration",
                        "type": "object",
                        "description": "Crawling starts WITHOUT a proxy (direct). If the target blocks us, the actor automatically falls back to a Datacenter proxy, then to a Residential proxy. Configure the proxy used for fallback here.",
                        "default": {
                            "useApifyProxy": false
                        }
                    },
                    "userAgent": {
                        "title": "🧭 User Agent",
                        "type": "string",
                        "description": "Custom User-Agent to test desktop vs mobile rendering.",
                        "default": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36"
                    },
                    "viewPortWidth": {
                        "title": "↔️ Viewport width",
                        "type": "integer",
                        "description": "Viewport width (px) sent as client hints to trigger responsive breakpoints.",
                        "default": 1440
                    },
                    "viewPortHeight": {
                        "title": "↕️ Viewport height",
                        "type": "integer",
                        "description": "Viewport height (px) sent as client hints.",
                        "default": 900
                    },
                    "pageTimeout": {
                        "title": "⏱️ Page navigation timeout (ms)",
                        "minimum": 1000,
                        "type": "integer",
                        "description": "How long to wait for each page to respond, in milliseconds.",
                        "default": 30000
                    },
                    "maxRequestRetries": {
                        "title": "🔁 Max request retries",
                        "minimum": 0,
                        "type": "integer",
                        "description": "How many times to retry a failed page request before giving up.",
                        "default": 2
                    },
                    "handlePageTimeoutSecs": {
                        "title": "🧮 Per-page processing budget (s)",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum seconds allowed to fully process a single page (fetch + link checks).",
                        "default": 60
                    },
                    "seoParams": {
                        "title": "🎚️ SEO scoring parameters",
                        "type": "object",
                        "description": "Override the internal SEO thresholds (title/meta lengths, link & word limits, working status codes, output links)."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
