# Godot Asset Library Scraper (`crawlerbros/godot-asset-library-scraper`) Actor

Scrape the official Godot Engine Asset Library - 5,000+ free addons, shaders, tools, templates, projects and demos. Browse by category, engine version, support level and license, or search by keyword. No auth, no proxy.

- **URL**: https://apify.com/crawlerbros/godot-asset-library-scraper.md
- **Developed by:** [Crawler Bros](https://apify.com/crawlerbros) (community)
- **Categories:** Automation, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.00 / 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.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js/docs.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python/docs.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/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

## Godot Asset Library Scraper

Scrape the official [Godot Engine Asset Library](https://godotengine.org/asset-library/asset) — thousands of free addons, shaders, tools, scripts, templates, projects and demos for the Godot game engine. Search by keyword or browse by category, engine version, license and support level. HTTP-only via the public Asset Library API. No auth, no proxy required.

### What this actor does

- **Two modes:** `search` (keyword + filter browse) and `byIds` (direct asset ID lookup)
- **Full filter surface:** category (10), asset type (addons vs projects), support level, Godot engine version (2.0 through 4.7), license, author, sort order
- **Rich per-asset detail:** every record is enriched with the full asset detail payload (description, download URL, repo/issues links, preview images) — not just the summary listing row
- **Empty fields are omitted**

### Output per asset

- `assetId`, `title`, `description`
- `type` — `addon` or `project`
- `author`, `authorId`
- `category`, `categoryId`
- `godotVersion` — engine version compatibility
- `rating` (0-5), `license`, `supportLevel`
- `version`, `versionString`, `lastUpdated`
- `iconUrl`, `previewImages[]`
- `downloadUrl`, `downloadProvider`, `downloadCommit` (exact git commit/tag zipped for download, when the provider is GitHub), `browseUrl` (source repo), `issuesUrl`
- `sourceUrl` — Asset Library detail page
- `recordType: "asset"`, `scrapedAt`

### Input

| Field | Type | Default | Description |
|---|---|---|---|
| `mode` | string | `search` | `search` / `byIds` |
| `searchQuery` | string | – | Keyword search over titles |
| `category` | select | – | 2D Tools, 3D Tools, Shaders, Materials, Tools, Scripts, Misc, Templates, Projects, Demos |
| `assetType` | select | `any` | `any` / `addon` / `project` |
| `supportLevel` | select | – | `testing` / `community` / `featured` |
| `godotVersion` | select | – | 2.0 – 4.7, `unknown`, `custom_build` — matches assets compatible with *at least* this version (upstream semantics), not an exact-version match |
| `license` | select | – | 22 supported open-source licenses (MIT, GPLv3, Apache-2.0, CC0, …) |
| `authorUsername` | string | – | Restrict to one publisher |
| `sortBy` | select | `updated` | `updated` / `name` / `cost` — note: `updated` sorts newest-first by default upstream; set `reverse: true` for oldest-first |
| `reverse` | boolean | `false` | Flip sort order |
| `minRating` | integer | – | Drop assets rated below this (0-5) |
| `assetIds` | array | – | Asset IDs or full URLs (mode=byIds) |
| `maxItems` | integer | `20` | Hard cap (1-500) |
| `proxyConfiguration` | proxy | off | Optional AUTO-group fallback if rate-limited |

#### Example: browse recently updated 3D tools for Godot 4.x

```json
{
  "mode": "search",
  "category": "2",
  "godotVersion": "4.3",
  "sortBy": "updated",
  "reverse": true,
  "maxItems": 50
}
````

#### Example: keyword search

```json
{
  "mode": "search",
  "searchQuery": "platformer",
  "assetType": "project",
  "maxItems": 30
}
```

#### Example: lookup specific assets

```json
{
  "mode": "byIds",
  "assetIds": ["431", "5311"]
}
```

### Use cases

- **Game dev tooling discovery** — find shaders, editor plugins and character controllers for a Godot project
- **Ecosystem analytics** — track how many assets support each engine version or license
- **Curated lists** — build a "best Godot addons" roundup filtered by support level
- **Learning resources** — pull sample projects and demos by category
- **License auditing** — verify an asset's license before bundling it in a commercial project

### FAQ

**What's the Godot Asset Library?** The official, in-editor addon and project marketplace for the open-source Godot game engine, browsable at godotengine.org/asset-library.

**Is it free?** Yes — every asset on the Library is free and open-source; the `license` field tells you exactly which license applies.

**What's the difference between an addon and a project?** Addons are plugins/scripts/shaders you import into an existing project; projects are complete downloadable demos or templates you open directly in Godot.

**Why does `godotVersion: "4.3"` also return assets tagged `4.0`?** The Asset Library API filters by minimum compatible version, not exact match — this is upstream behavior, confirmed against the live API.

**Why is `rating` almost always 0?** The Asset Library's star-rating system currently sees very light community use — this is real upstream data, not a scraper bug.

**Why do `testing`/`featured` support-level filters sometimes return 0 results?** Those curation tiers are used sparingly by the Godot team at any given time; `community` covers the vast majority of listed assets.

**Can I get download links?** Yes — `downloadUrl` points directly at the asset's zip/archive, and `browseUrl` links to its source repository (usually GitHub).

**Why did category 8/9/10 (Templates/Projects/Demos) return 0 results when I also set `assetType: "addon"`?** Those three categories only ever contain `project`-type assets upstream (Templates/Projects/Demos are full downloadable projects, never addons), so narrowing to both `assetType: "addon"` and one of those categories is a contradictory combination that legitimately has zero matches. Leave `assetType` on its default (`any`) when picking one of those categories, or set `assetType: "project"`.

**How fresh is the data?** Real-time — every request hits the live Asset Library API, covering the full current catalog (~5,000+ assets across all engine versions).

# Actor input Schema

## `mode` (type: `string`):

What to fetch.

## `searchQuery` (type: `string`):

Free-text keyword search over asset titles (mode=search). Leave empty to browse by filters only.

## `category` (type: `string`):

Restrict to one Asset Library category.

## `assetType` (type: `string`):

Addons (plugins/scripts/shaders) vs full downloadable projects (templates/projects/demos).

## `supportLevel` (type: `string`):

Community-maintained, testing, or officially featured assets. Note: at present the overwhelming majority of listed assets are community-level; testing/featured may return 0 results depending on current curation.

## `godotVersion` (type: `string`):

Restrict to assets compatible with at least this Godot engine version (upstream API semantics: minimum version, not exact match — e.g. `4.3` also returns assets tagged `4.0`+).

## `license` (type: `string`):

Restrict to assets published under a specific license.

## `authorUsername` (type: `string`):

Restrict to assets published by a specific Asset Library username.

## `sortBy` (type: `string`):

Ordering applied by the Asset Library API.

## `reverse` (type: `boolean`):

Flip the sort order (e.g. oldest-updated first, Z-A).

## `minRating` (type: `integer`):

Drop assets rated below this (0-5). Most assets currently show a rating of 0 as the platform's rating system sees light use.

## `assetIds` (type: `array`):

Godot Asset Library numeric asset IDs, or full asset-library URLs.

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

Hard cap on emitted records.

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

Optional. The public API works without a proxy; this is only used as an automatic fallback if Apify's IPs get rate-limited (403/429). AUTO datacenter group only — no residential proxy is ever used.

## Actor input object example

```json
{
  "mode": "search",
  "searchQuery": "",
  "assetType": "any",
  "sortBy": "updated",
  "reverse": false,
  "assetIds": [],
  "maxItems": 20,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

## `assets` (type: `string`):

Dataset containing all scraped Godot Asset Library assets.

# 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 = {
    "mode": "search",
    "searchQuery": "",
    "assetType": "any",
    "sortBy": "updated",
    "reverse": false,
    "assetIds": [],
    "maxItems": 20
};

// Run the Actor and wait for it to finish
const run = await client.actor("crawlerbros/godot-asset-library-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 = {
    "mode": "search",
    "searchQuery": "",
    "assetType": "any",
    "sortBy": "updated",
    "reverse": False,
    "assetIds": [],
    "maxItems": 20,
}

# Run the Actor and wait for it to finish
run = client.actor("crawlerbros/godot-asset-library-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 '{
  "mode": "search",
  "searchQuery": "",
  "assetType": "any",
  "sortBy": "updated",
  "reverse": false,
  "assetIds": [],
  "maxItems": 20
}' |
apify call crawlerbros/godot-asset-library-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Godot Asset Library Scraper",
        "description": "Scrape the official Godot Engine Asset Library - 5,000+ free addons, shaders, tools, templates, projects and demos. Browse by category, engine version, support level and license, or search by keyword. No auth, no proxy.",
        "version": "1.0",
        "x-build-id": "rVlMAr1UIGseYeNhC"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/crawlerbros~godot-asset-library-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-crawlerbros-godot-asset-library-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/crawlerbros~godot-asset-library-scraper/runs": {
            "post": {
                "operationId": "runs-sync-crawlerbros-godot-asset-library-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/crawlerbros~godot-asset-library-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-crawlerbros-godot-asset-library-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "mode"
                ],
                "properties": {
                    "mode": {
                        "title": "Mode",
                        "enum": [
                            "search",
                            "byIds"
                        ],
                        "type": "string",
                        "description": "What to fetch.",
                        "default": "search"
                    },
                    "searchQuery": {
                        "title": "Search query",
                        "type": "string",
                        "description": "Free-text keyword search over asset titles (mode=search). Leave empty to browse by filters only.",
                        "default": ""
                    },
                    "category": {
                        "title": "Category",
                        "enum": [
                            "1",
                            "2",
                            "3",
                            "4",
                            "5",
                            "6",
                            "7",
                            "8",
                            "9",
                            "10"
                        ],
                        "type": "string",
                        "description": "Restrict to one Asset Library category."
                    },
                    "assetType": {
                        "title": "Asset type",
                        "enum": [
                            "any",
                            "addon",
                            "project"
                        ],
                        "type": "string",
                        "description": "Addons (plugins/scripts/shaders) vs full downloadable projects (templates/projects/demos).",
                        "default": "any"
                    },
                    "supportLevel": {
                        "title": "Support level",
                        "enum": [
                            "testing",
                            "community",
                            "featured"
                        ],
                        "type": "string",
                        "description": "Community-maintained, testing, or officially featured assets. Note: at present the overwhelming majority of listed assets are community-level; testing/featured may return 0 results depending on current curation."
                    },
                    "godotVersion": {
                        "title": "Godot engine version",
                        "enum": [
                            "2.0",
                            "2.1",
                            "2.2",
                            "3.0",
                            "3.1",
                            "3.2",
                            "3.3",
                            "3.4",
                            "3.5",
                            "3.6",
                            "4.0",
                            "4.1",
                            "4.2",
                            "4.3",
                            "4.4",
                            "4.5",
                            "4.6",
                            "4.7",
                            "unknown",
                            "custom_build"
                        ],
                        "type": "string",
                        "description": "Restrict to assets compatible with at least this Godot engine version (upstream API semantics: minimum version, not exact match — e.g. `4.3` also returns assets tagged `4.0`+)."
                    },
                    "license": {
                        "title": "License / cost",
                        "enum": [
                            "MIT",
                            "MPL-2.0",
                            "GPLv3",
                            "GPLv2",
                            "LGPLv3",
                            "LGPLv2.1",
                            "LGPLv2",
                            "AGPLv3",
                            "EUPL-1.2",
                            "Apache-2.0",
                            "CC0",
                            "CC-BY-4.0",
                            "CC-BY-3.0",
                            "CC-BY-SA-4.0",
                            "CC-BY-SA-3.0",
                            "BSD-2-Clause",
                            "BSD-3-Clause",
                            "BSL-1.0",
                            "ISC",
                            "Unlicense",
                            "Zlib",
                            "Proprietary"
                        ],
                        "type": "string",
                        "description": "Restrict to assets published under a specific license."
                    },
                    "authorUsername": {
                        "title": "Author username",
                        "type": "string",
                        "description": "Restrict to assets published by a specific Asset Library username."
                    },
                    "sortBy": {
                        "title": "Sort by",
                        "enum": [
                            "updated",
                            "name",
                            "cost",
                            "rating"
                        ],
                        "type": "string",
                        "description": "Ordering applied by the Asset Library API.",
                        "default": "updated"
                    },
                    "reverse": {
                        "title": "Reverse sort order",
                        "type": "boolean",
                        "description": "Flip the sort order (e.g. oldest-updated first, Z-A).",
                        "default": false
                    },
                    "minRating": {
                        "title": "Minimum rating",
                        "minimum": 0,
                        "maximum": 5,
                        "type": "integer",
                        "description": "Drop assets rated below this (0-5). Most assets currently show a rating of 0 as the platform's rating system sees light use."
                    },
                    "assetIds": {
                        "title": "Asset IDs (mode=byIds)",
                        "type": "array",
                        "description": "Godot Asset Library numeric asset IDs, or full asset-library URLs.",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxItems": {
                        "title": "Max items",
                        "minimum": 1,
                        "maximum": 500,
                        "type": "integer",
                        "description": "Hard cap on emitted records.",
                        "default": 20
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Optional. The public API works without a proxy; this is only used as an automatic fallback if Apify's IPs get rate-limited (403/429). AUTO datacenter group only — no residential proxy is ever used.",
                        "default": {
                            "useApifyProxy": false
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
