# Yu-Gi-Oh! Card Database Scraper (`parseforge/yugioh-card-database-scraper`) Actor

Pull Yu-Gi-Oh! card data from YGOProDeck. Returns card name, type, description, ATK/DEF, level/rank/link, attribute, race, archetype, ban list status (TCG/OCG/Goat), card images, sets, prices on TCGPlayer/CardMarket/eBay. Search by name, type, race, attribute, or archetype.

- **URL**: https://apify.com/parseforge/yugioh-card-database-scraper.md
- **Developed by:** [ParseForge](https://apify.com/parseforge) (community)
- **Categories:** Games, Other, Education
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $12.00 / 1,000 result items

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
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.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

![ParseForge Banner](https://github.com/ParseForge/apify-assets/blob/ad35ccc13ddd068b9d6cba33f323962e39aed5b2/banner.jpg?raw=true)

## 🃏 Yu-Gi-Oh! Card Database Scraper

> 🚀 **Pull Yu-Gi-Oh! cards with attack, defense, level, type, attribute, race, archetype, ban list status, set listings, and prices across 5 markets.**

> 🕒 **Last updated:** 2026-05-08 · **📊 28+ fields** per record · **13K+ Yu-Gi-Oh! cards** · 30 card types · 8 attributes · 34 races · 638 archetypes · TCG / OCG / Goat ban lists · prices on Cardmarket, TCGPlayer, eBay, Amazon, Coolstuffinc

The **Yu-Gi-Oh! Card Database Scraper** pulls full card metadata from the YGOProDeck open community database. Output includes card image (full + small + cropped + gallery for alternate arts), card ID, name, type, typeline, frame type, description, attack / defense / level / link value / link markers / pendulum scale, race, attribute, archetype, ban list status (TCG / OCG / Goat), set listings (set name + code + rarity + price), and prices across 5 markets: Cardmarket, TCGPlayer, eBay, Amazon, Coolstuffinc.

Filter by name, type, race, attribute, archetype, or ban list. The race + archetype fields are full enums (34 races + 638 archetypes), so the schema validates input and the user gets dropdowns instead of free-text guessing.

| 🎯 Target Audience | 💡 Primary Use Cases |
|---|---|
| TCG players, deck-builders, card-shop owners, ML researchers, fan-app developers, content creators | Deck-builder UIs, price-tracking tools, fan-app card databases, archetype-discovery, ML on card art and stats |

---

### 📋 What the Yu-Gi-Oh! Card Database Scraper does

Five filtering workflows in a single run:

- 🔍 **Filter by name.** Substring or full-name match.
- 🏷️ **Filter by type.** 30 card types: Effect Monster, Spell Card, Trap Card, Synchro, XYZ, Link, etc.
- ⚔️ **Filter by attribute or race.** 8 attributes (DARK / LIGHT / WATER / FIRE / EARTH / WIND / DIVINE) and 34 races (Dragon, Spellcaster, Warrior, etc) as full enums.
- 🏷️ **Filter by archetype.** 638 archetypes as a full enum (Blue-Eyes, Dark Magician, Six Samurai, etc).
- ⚖️ **Filter by ban list.** TCG (Western), OCG (Asian), or Goat Format.

> 💡 **Why it matters:** clean, server-side filtering and fresh data on every run.

---
### 🎬 Full Demo

_🚧 Coming soon: a 3-minute walkthrough showing how to go from sign-up to a downloaded dataset._

---

### ⚙️ Input

<table>
<thead>
<tr><th>Input</th><th>Type</th><th>Default</th><th>Behavior</th></tr>
</thead>
<tbody>
<tr><td><code>maxItems</code></td><td>integer</td><td><code>10</code></td><td>Records to return. Free plan caps at 10, paid plan up to 1,000,000.</td></tr>
<tr><td><code>name</code></td><td>string</td><td><code>""</code></td><td>Card name substring or full match. Empty = any.</td></tr>
<tr><td><code>type</code></td><td>string</td><td><code>""</code></td><td>Card type enum (30 values). Empty = any.</td></tr>
<tr><td><code>race</code></td><td>string</td><td><code>""</code></td><td>Race enum (34 monster races + spell / trap kinds). Empty = any.</td></tr>
<tr><td><code>attribute</code></td><td>string</td><td><code>""</code></td><td>Attribute enum (DARK, LIGHT, EARTH, WATER, FIRE, WIND, DIVINE). Empty = any.</td></tr>
<tr><td><code>archetype</code></td><td>string</td><td><code>""</code></td><td>Archetype enum (638 values: Blue-Eyes, Dark Magician, Six Samurai, etc). Empty = any.</td></tr>
<tr><td><code>banlist</code></td><td>string</td><td><code>""</code></td><td>Ban list (tcg, ocg, goat). Empty = any.</td></tr>
</tbody>
</table>

**Example: every Blue-Eyes card.**

```json
{
    "maxItems": 100,
    "archetype": "Blue-Eyes"
}
````

**Example: all DARK Synchro Monsters.**

```json
{
    "maxItems": 100,
    "type": "Synchro Monster",
    "attribute": "DARK"
}
```

***

### 📊 Output

Each record contains **28+ fields**. Download as CSV, Excel, JSON, or XML.

#### 🧾 Schema

| Field | Type | Example |
|---|---|---|
| 🖼️ `imageUrl` | string | `"https://images.ygoprodeck.com/images/cards/46986414.jpg"` |
| 🖼️ `imageUrlSmall` | string | `"https://images.ygoprodeck.com/images/cards_small/46986414.jpg"` |
| 🆔 `cardId` | number | `46986414` |
| 📛 `name` | string | `"Dark Magician"` |
| 🏷️ `type` | string | `"Normal Monster"` |
| 🏷️ `typeline` | array | `["Spellcaster","Normal"]` |
| 📜 `description` | string | `"The ultimate wizard in terms of attack and defense."` |
| ⚔️ `atk` | number | `2500` |
| 🛡️ `def` | number | `2100` |
| ⭐ `level` | number | `7` |
| 🌐 `race` | string | `"Spellcaster"` |
| 🌌 `attribute` | string | `"DARK"` |
| 🏷️ `archetype` | string | `"Dark Magician"` |
| ⚖️ `banlistTcg` | string | `"Unlimited"` |
| ⚖️ `banlistOcg` | string | `"Unlimited"` |
| 📦 `sets` | array of objects | `[{"name":"Legend of Blue Eyes White Dragon","code":"LOB-005","rarity":"Ultra Rare","rarityCode":"(UR)","price":"42.00"}]` |
| 📊 `setCount` | number | `124` |
| 💰 `cardmarketPrice` | number | `2.45` |
| 💰 `tcgplayerPrice` | number | `3.21` |
| 💰 `ebayPrice` | number | `4.99` |
| 💰 `amazonPrice` | number | `5.50` |
| 💰 `coolstuffincPrice` | number | `3.99` |
| 🌐 `ygoproUrl` | string | `"https://db.ygoprodeck.com/card/?search=Dark%20Magician"` |

#### 📦 Sample records

<details>
<summary><strong>🃏 Dark Magician</strong></summary>

```json
{"cardId":46986414,"name":"Dark Magician","type":"Normal Monster","atk":2500,"def":2100,"level":7,"attribute":"DARK","archetype":"Dark Magician","setCount":124,"cardmarketPrice":2.45}
```

</details>

<details>
<summary><strong>🃏 Blue-Eyes White Dragon</strong></summary>

```json
{"name":"Blue-Eyes White Dragon","atk":3000,"def":2500,"level":8,"attribute":"LIGHT","archetype":"Blue-Eyes","banlistTcg":"Unlimited"}
```

</details>

***

### ✨ Why choose this Actor

| | Capability |
|---|---|
| 🏷️ | **Full enums.** Race (34) and archetype (638) are dropdowns - no guessing slugs. |
| 💰 | **5-market prices.** Cardmarket, TCGPlayer, eBay, Amazon, Coolstuffinc all in one record. |
| 📦 | **Full set history.** Every printing with set name, code, rarity, and price. |
| ⚖️ | **Triple ban list.** TCG, OCG, and Goat Format status side-by-side. |
| 🆓 | **No auth.** YGOProDeck is open. |

***

### 📈 How it compares to alternatives

| Approach | Cost | Coverage | Refresh | Filters | Setup |
|---|---|---|---|---|---|
| **⭐ This Actor** | $5 free credit | **13K+ cards** | Live per run | 6 filters | ⚡ 1 min |
| YGOProDeck API | Free | Same | Live | DIY | 🐢 Code |
| yugiohprices | Free | Same | Live | Limited | 🐢 Account |
| Manual scraping | Free | All | Live | DIY | 🐢 Days |

***

### 🚀 How to use

1. 📝 **Sign up.** [Create a free account with $5 credit](https://console.apify.com/sign-up?fpr=vmoqkp) (takes 2 minutes).
2. 🌐 **Open the Actor.** Find the Yu-Gi-Oh! Card Database Scraper on the Apify Store.
3. 🎯 **Set input.** Pick filters and `maxItems`.
4. 🚀 **Run it.** Click **Start**.
5. 📥 **Download.** Grab results in the **Dataset** tab as CSV, Excel, JSON, or XML.

> ⏱️ Total time from signup to dataset: **3-5 minutes.** No coding required.

***

### 💼 Business use cases

<table>
<tr>
<td width="50%" valign="top">

#### 🃏 Deck-Building + Apps

- Deck-builder UIs with filters
- Card-search engines
- Fan-app databases
- Trade evaluators

</td>
<td width="50%" valign="top">

#### 💰 Price Tracking + Investing

- Price-tracking dashboards
- Multi-market arbitrage
- Investment portfolios
- Card-shop inventory

</td>
</tr>
<tr>
<td width="50%" valign="top">

#### 📊 Analytics + Research

- Archetype meta analysis
- Ban-list-evolution studies
- Stat-distribution charts
- Top-card historical tracking

</td>
<td width="50%" valign="top">

#### 🎨 Content + Community

- Yu-Gi-Oh! blogs and YouTube
- Card-art galleries
- Tournament-prep guides
- Fan-fiction databases

</td>
</tr>
</table>

***

### 🔌 Automating Yu-Gi-Oh! Card Database Scraper

Control the scraper programmatically:

- 🟢 **Node.js.** Install the `apify-client` NPM package.
- 🐍 **Python.** Use the `apify-client` PyPI package.
- 📚 See the [Apify API documentation](https://docs.apify.com/api/v2) for full details.

The [Apify Schedules feature](https://docs.apify.com/platform/schedules) lets you trigger this Actor on any cron interval.

***

### 🌟 Beyond business use cases

Data like this powers more than commercial workflows.

<table>
<tr>
<td width="50%">

#### 🎓 Research and academia

- TCG game-design studies
- Reproducible card snapshots
- Stat-meta evolution
- ML on card art

</td>
<td width="50%">

#### 🎨 Personal and creative

- Personal collection trackers
- Custom deck builders
- Side projects with TCG data
- Fan-art catalogs

</td>
</tr>
<tr>
<td width="50%">

#### 🤝 Non-profit and civic

- Library card-game programs
- Free TCG-education content
- Community tournaments
- Heritage card preservation

</td>
<td width="50%">

#### 🧪 Experimentation

- Train deck-recommendation
- Prototype price-prediction
- Build archetype-discovery tools
- Test ban-list classifiers

</td>
</tr>
</table>

***

### 🤖 Ask an AI assistant about this scraper

Open a ready-to-send prompt in the AI of your choice:

- 💬 [**ChatGPT**](https://chat.openai.com/?q=How%20do%20I%20use%20the%20Yu-Gi-Oh%21%20Card%20Database%20Scraper%20by%20ParseForge%20on%20Apify%3F%20Show%20me%20input%20examples%2C%20output%20fields%2C%20common%20use%20cases%2C%20and%20how%20to%20integrate%20it%20into%20a%20workflow.)
- 🧠 [**Claude**](https://claude.ai/new?q=How%20do%20I%20use%20the%20Yu-Gi-Oh%21%20Card%20Database%20Scraper%20by%20ParseForge%20on%20Apify%3F%20Show%20me%20input%20examples%2C%20output%20fields%2C%20common%20use%20cases%2C%20and%20how%20to%20integrate%20it%20into%20a%20workflow.)
- 🔍 [**Perplexity**](https://perplexity.ai/search?q=How%20do%20I%20use%20the%20Yu-Gi-Oh%21%20Card%20Database%20Scraper%20by%20ParseForge%20on%20Apify%3F%20Show%20me%20input%20examples%2C%20output%20fields%2C%20common%20use%20cases%2C%20and%20how%20to%20integrate%20it%20into%20a%20workflow.)
- 🅒 [**Copilot**](https://copilot.microsoft.com/?q=How%20do%20I%20use%20the%20Yu-Gi-Oh%21%20Card%20Database%20Scraper%20by%20ParseForge%20on%20Apify%3F%20Show%20me%20input%20examples%2C%20output%20fields%2C%20common%20use%20cases%2C%20and%20how%20to%20integrate%20it%20into%20a%20workflow.)

***

### ❓ Frequently Asked Questions

#### 🧩 How does it work?

Set one or more filters (name, type, race, attribute, archetype, ban list). The Actor calls YGOProDeck and emits one record per matching card.

#### 📊 How many fields per record?

28 base, expanding with image gallery and image IDs when alternate arts exist.

#### 🏷️ Are race and archetype really enums?

Yes. 34 races and 638 archetypes, the schema validates input as a dropdown.

#### 💰 How many price markets?

5: Cardmarket (EU), TCGPlayer (US), eBay, Amazon, Coolstuffinc.

#### 📦 What about set listings?

Every printing is included as a structured object with set name, code, rarity, rarity code, and per-set price.

#### ⚖️ How are ban lists represented?

Three string fields: banlistTcg, banlistOcg, banlistGoat. Values: Unlimited, Limited, Semi-Limited, Forbidden.

#### 🆓 Do I need an API key?

No. YGOProDeck is free and open.

#### 🔁 Can I schedule runs?

Yes. Schedule weekly to track price changes and ban-list updates.

#### ⚖️ Is this data free to use?

YGOProDeck data is publicly available. Card art, names, and effects are property of Konami.

#### 💳 Do I need a paid Apify plan?

No. The free plan covers preview runs (10 records).

***

### 🔌 Integrate with any app

Yu-Gi-Oh! Card Database Scraper connects to any cloud service via [Apify integrations](https://apify.com/integrations):

- [**Make**](https://docs.apify.com/platform/integrations/make) - Automate multi-step workflows
- [**Zapier**](https://docs.apify.com/platform/integrations/zapier) - Connect with 5,000+ apps
- [**Slack**](https://docs.apify.com/platform/integrations/slack) - Get run notifications
- [**Airbyte**](https://docs.apify.com/platform/integrations/airbyte) - Pipe data into your warehouse
- [**GitHub**](https://docs.apify.com/platform/integrations/github) - Trigger runs from commits
- [**Google Drive**](https://docs.apify.com/platform/integrations/drive) - Export datasets to Sheets

***

### 🔗 Recommended Actors

- [**🧠 Open Trivia DB Questions**](https://apify.com/parseforge/opentdb-trivia-scraper) - Trivia questions across 24 categories with answers
- [**🍳 Meal Recipes**](https://apify.com/parseforge/themealdb-recipes-scraper) - Recipes with ingredients, instructions, image, video
- [**🍹 Cocktail Drinks**](https://apify.com/parseforge/thecocktaildb-drinks-scraper) - Cocktail recipes with ingredients, glass, IBA, image
- [**📚 Wikipedia Article Summary**](https://apify.com/parseforge/wikipedia-rest-summaries-scraper) - Pull Wikipedia summaries with thumbnail, extract, geo and Wikidata link
- [**🌍 REST Countries Reference Data**](https://apify.com/parseforge/rest-countries-scraper) - Every country with flag, capital, currency, languages

> 💡 **Pro Tip:** browse the complete [ParseForge collection](https://apify.com/parseforge) for more reference-data scrapers.

***

**🆘 Need Help?** [**Open our contact form**](https://tally.so/r/BzdKgA) to request a new scraper, propose a custom data project, or report an issue.

***

> **⚠️ Disclaimer:** this Actor is an independent tool and is not affiliated with, endorsed by, or sponsored by Konami, Studio Dice / Shueisha, TV Tokyo, YGOProDeck, or any official Yu-Gi-Oh! organization. All trademarks mentioned are the property of their respective owners. Only publicly available open data is collected.

# Actor input Schema

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

Free users: Limited to 10 items (preview). Paid users: Optional, max 1,000,000

## `name` (type: `string`):

Match card name (full or partial). Empty = any.

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

Specific card type filter.

## `race` (type: `string`):

Monster race (Dragon, Spellcaster, Warrior, etc.) or Spell/Trap kind (Continuous, Quick-Play, Counter, etc.). Empty = any.

## `attribute` (type: `string`):

Monster attribute.

## `archetype` (type: `string`):

Card archetype (e.g. Blue-Eyes, Dark Magician, Six Samurai). Empty = any.

## `banlist` (type: `string`):

Filter to cards in a specific ban list.

## Actor input object example

```json
{
  "maxItems": 10,
  "name": "Dark Magician",
  "type": "",
  "race": "",
  "attribute": "",
  "archetype": "",
  "banlist": ""
}
```

# Actor output Schema

## `overview` (type: `string`):

No description

# 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 = {
    "maxItems": 10,
    "name": "Dark Magician",
    "type": "",
    "race": "",
    "attribute": "",
    "archetype": "",
    "banlist": ""
};

// Run the Actor and wait for it to finish
const run = await client.actor("parseforge/yugioh-card-database-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 = {
    "maxItems": 10,
    "name": "Dark Magician",
    "type": "",
    "race": "",
    "attribute": "",
    "archetype": "",
    "banlist": "",
}

# Run the Actor and wait for it to finish
run = client.actor("parseforge/yugioh-card-database-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 '{
  "maxItems": 10,
  "name": "Dark Magician",
  "type": "",
  "race": "",
  "attribute": "",
  "archetype": "",
  "banlist": ""
}' |
apify call parseforge/yugioh-card-database-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Yu-Gi-Oh! Card Database Scraper",
        "description": "Pull Yu-Gi-Oh! card data from YGOProDeck. Returns card name, type, description, ATK/DEF, level/rank/link, attribute, race, archetype, ban list status (TCG/OCG/Goat), card images, sets, prices on TCGPlayer/CardMarket/eBay. Search by name, type, race, attribute, or archetype.",
        "version": "1.0",
        "x-build-id": "8a7cK9C7F78xweFJo"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/parseforge~yugioh-card-database-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-parseforge-yugioh-card-database-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/parseforge~yugioh-card-database-scraper/runs": {
            "post": {
                "operationId": "runs-sync-parseforge-yugioh-card-database-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/parseforge~yugioh-card-database-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-parseforge-yugioh-card-database-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "maxItems": {
                        "title": "Max Items",
                        "minimum": 1,
                        "maximum": 1000000,
                        "type": "integer",
                        "description": "Free users: Limited to 10 items (preview). Paid users: Optional, max 1,000,000"
                    },
                    "name": {
                        "title": "Card name (substring or full)",
                        "type": "string",
                        "description": "Match card name (full or partial). Empty = any."
                    },
                    "type": {
                        "title": "Card type",
                        "enum": [
                            "",
                            "Effect Monster",
                            "Flip Effect Monster",
                            "Flip Tuner Effect Monster",
                            "Gemini Monster",
                            "Normal Monster",
                            "Normal Tuner Monster",
                            "Pendulum Effect Monster",
                            "Pendulum Effect Ritual Monster",
                            "Pendulum Flip Effect Monster",
                            "Pendulum Normal Monster",
                            "Pendulum Tuner Effect Monster",
                            "Ritual Effect Monster",
                            "Ritual Monster",
                            "Skill Card",
                            "Spell Card",
                            "Spirit Monster",
                            "Toon Monster",
                            "Trap Card",
                            "Tuner Monster",
                            "Union Effect Monster",
                            "Fusion Monster",
                            "Link Monster",
                            "Pendulum Effect Fusion Monster",
                            "Synchro Monster",
                            "Synchro Pendulum Effect Monster",
                            "Synchro Tuner Monster",
                            "XYZ Monster",
                            "XYZ Pendulum Effect Monster",
                            "Token"
                        ],
                        "type": "string",
                        "description": "Specific card type filter.",
                        "default": ""
                    },
                    "race": {
                        "title": "Monster race / spell-trap kind",
                        "enum": [
                            "",
                            "Aqua",
                            "Beast",
                            "Beast-Warrior",
                            "Creator-God",
                            "Cyberse",
                            "Dinosaur",
                            "Divine-Beast",
                            "Dragon",
                            "Fairy",
                            "Fiend",
                            "Fish",
                            "Illusion",
                            "Insect",
                            "Machine",
                            "Plant",
                            "Psychic",
                            "Pyro",
                            "Reptile",
                            "Rock",
                            "Sea Serpent",
                            "Spellcaster",
                            "Thunder",
                            "Warrior",
                            "Winged Beast",
                            "Wyrm",
                            "Zombie",
                            "Normal",
                            "Field",
                            "Equip",
                            "Continuous",
                            "Quick-Play",
                            "Ritual",
                            "Counter"
                        ],
                        "type": "string",
                        "description": "Monster race (Dragon, Spellcaster, Warrior, etc.) or Spell/Trap kind (Continuous, Quick-Play, Counter, etc.). Empty = any.",
                        "default": ""
                    },
                    "attribute": {
                        "title": "Attribute",
                        "enum": [
                            "",
                            "DARK",
                            "LIGHT",
                            "EARTH",
                            "WATER",
                            "FIRE",
                            "WIND",
                            "DIVINE"
                        ],
                        "type": "string",
                        "description": "Monster attribute.",
                        "default": ""
                    },
                    "archetype": {
                        "title": "Archetype",
                        "enum": [
                            "",
                            "-Eyes Dragon",
                            "\"C\"",
                            "@Ignister",
                            "/Assault Mode",
                            "25th Anniversary Monsters",
                            "A-to-Z",
                            "A.I.",
                            "ABC",
                            "Abyss Actor",
                            "Abyss Script",
                            "Abyss-",
                            "Adamancipator",
                            "Advanced Crystal Beast",
                            "Adventurer",
                            "Adventurer Token",
                            "Aesir",
                            "Aether",
                            "Albaz Dragon",
                            "Aleister",
                            "Alien",
                            "Alligator",
                            "Allure Queen",
                            "Ally of Justice",
                            "Altergeist",
                            "Amazement",
                            "Amazoness",
                            "Amorphage",
                            "Ancient Fairy Dragon",
                            "Ancient Gear",
                            "Ancient Treasure",
                            "Ancient Warriors",
                            "Anotherverse",
                            "Anti",
                            "Apophis",
                            "Apoqliphort",
                            "Appliancer",
                            "Aqua Jet",
                            "Aquaactress",
                            "Aquamirror",
                            "Arcana Force",
                            "Archfiend",
                            "Argostars",
                            "Armed Dragon",
                            "Aroma",
                            "Artifact",
                            "Artmage",
                            "Ashened",
                            "Assault Blackwing",
                            "Assault Mode",
                            "Atlantean",
                            "Attraction",
                            "Attribute Summoner",
                            "Azamina",
                            "B.E.S.",
                            "Bamboo Sword",
                            "Barbaros",
                            "Barian's",
                            "Batteryman",
                            "Battleguard",
                            "Battlewasp",
                            "Battlin' Boxer",
                            "Battlin' Boxing",
                            "Beetrooper",
                            "Black Luster Soldier",
                            "Blackwing",
                            "Blaze Accelerator",
                            "Blitzclique",
                            "Blue Tears",
                            "Blue-Eyes",
                            "Bonding",
                            "Book of",
                            "Boot-Up",
                            "Borrel",
                            "Bounzer",
                            "Branded",
                            "Broken World",
                            "Bugroth",
                            "Bujin",
                            "Burning Abyss",
                            "Butterfly",
                            "Butterspy",
                            "Bystial",
                            "Call of the Haunted",
                            "Cataclysmic",
                            "Celebration",
                            "Celtic Guard",
                            "Centur-Ion",
                            "Change",
                            "Chaos",
                            "Chaos Phantom",
                            "Charmer",
                            "Chemicritter",
                            "Chimera",
                            "Chronomaly",
                            "Chrysalis",
                            "Cipher",
                            "Circular",
                            "Clear",
                            "Clear Wing",
                            "Cloudian",
                            "Clown Crew",
                            "Code Talker",
                            "Codebreaker",
                            "Constellar",
                            "Contact",
                            "Corn",
                            "Cosmic Synchro Monster",
                            "Counter Fairy",
                            "Crusadia",
                            "Crystal",
                            "Crystal Beast",
                            "Crystron",
                            "Cubic",
                            "Cupid",
                            "Curse of Dragon",
                            "CXyz",
                            "Cyber",
                            "Cyber Angel",
                            "Cyber Dragon",
                            "Cyberdark",
                            "Cyclone",
                            "Cynet",
                            "D.D.",
                            "D/D",
                            "Danger!",
                            "Dark Contract",
                            "Dark counterpart",
                            "Dark Magician",
                            "Dark Scorpion",
                            "Dark Tuner",
                            "Dark World",
                            "Darklord",
                            "Deep Sea",
                            "Demise",
                            "Deskbot",
                            "Despia",
                            "Destiny HERO",
                            "Destruction Sword",
                            "Diabell",
                            "Diabellstar",
                            "Dice",
                            "Digital Bug",
                            "Dinomist",
                            "Dinomorphia",
                            "Dinowrestler",
                            "Divine Dragon",
                            "Djinn",
                            "Dododo",
                            "Dogmatika",
                            "Doll",
                            "Doll Monster",
                            "Dominus",
                            "Doodle Beast",
                            "Doodlebook",
                            "DoomZ",
                            "Doriado",
                            "Draconia",
                            "Dracoslayer",
                            "Dracotail",
                            "Dracoverlord",
                            "Dragon Mech",
                            "Dragon Ruler",
                            "Dragonmaid",
                            "Dragunity",
                            "Dream Mirror",
                            "Drytron",
                            "Dual Avatar",
                            "Duston",
                            "Earthbound",
                            "Ecclesia",
                            "Edge Imp",
                            "Egyptian God",
                            "Eldlich",
                            "Eldlixir",
                            "Elemental HERO",
                            "Elemental Lord",
                            "Elementsaber",
                            "Elfnote",
                            "Elvennotes",
                            "Emblema",
                            "Empower",
                            "Empowered Warrior",
                            "End of the World",
                            "Endymion",
                            "Enneacraft",
                            "Evil Eye",
                            "Evil HERO",
                            "Evil★Twin",
                            "Evol",
                            "Evolsaur",
                            "Evoltile",
                            "Evolzar",
                            "Exchange of the Spirit",
                            "Exodd",
                            "Exodia",
                            "Exosister",
                            "Eyes Restrict",
                            "F.A.",
                            "Fabled",
                            "Fairy",
                            "Fairy Tail",
                            "Familiar-Possessed",
                            "Fan-Made Cards",
                            "Favorite",
                            "Felgrand",
                            "Field Searcher",
                            "Fiendsmith",
                            "Fire Fist",
                            "Fire Formation",
                            "Fire King",
                            "Firewall",
                            "Fishborg",
                            "Flame Swordsman",
                            "Flamvell",
                            "Fleur",
                            "Floowandereeze",
                            "Flower Cardian",
                            "Fluffal",
                            "Forbidden",
                            "Fortress Whale",
                            "Fortune Fairy",
                            "Fortune Lady",
                            "Fossil",
                            "Frightfur",
                            "Frog",
                            "From the Underworld",
                            "Fur Hire",
                            "Fusion",
                            "G Golem",
                            "Gadget",
                            "Gagaga",
                            "Gaia Knight",
                            "Gaia The Fierce Knight",
                            "Galaxy",
                            "Galaxy-Eyes",
                            "Gandora",
                            "Gate Guardian",
                            "Geargia",
                            "Gem Dragon",
                            "Gem-",
                            "Generaider",
                            "Genex",
                            "Ghostrick",
                            "Ghoti",
                            "Gimmick Puppet",
                            "Gishki",
                            "Gizmek",
                            "Glacial Beast",
                            "Gladiator",
                            "Gladiator Beast",
                            "GMX",
                            "Goblin",
                            "Gogogo",
                            "Gold Pride",
                            "Golden Castle of Stromberg",
                            "Golden Land",
                            "Gorgonic",
                            "Gottoms",
                            "Gouki",
                            "GranSolfachord",
                            "Gravekeeper's",
                            "Graydle",
                            "Greed",
                            "Grepher",
                            "Guardian",
                            "Guardragon",
                            "Gunkan",
                            "Gusto",
                            "Harpie",
                            "Hazy",
                            "Heart",
                            "Hecahands",
                            "Herald",
                            "Heraldic",
                            "Heraldry",
                            "HERO",
                            "Heroic",
                            "Hi-Speedroid",
                            "Hieratic",
                            "Hole",
                            "Holy Knight",
                            "Horus",
                            "Horus the Black Flame Dragon",
                            "hunder",
                            "Hunting Scout of the Deep Forest",
                            "Hyperion",
                            "Ice Barrier",
                            "Icejade",
                            "Igknight",
                            "Impcantation",
                            "Indestructible Insect",
                            "Infernity",
                            "Infernoble Arms",
                            "Infernoble Knight",
                            "Infernoid",
                            "Infestation",
                            "Infinitrack",
                            "Invoked",
                            "Inzektor",
                            "Iron Chain",
                            "Jar",
                            "Jester",
                            "Jinzo",
                            "Junk",
                            "Jurrac",
                            "K9",
                            "Kaiju",
                            "Kairyu-Shin",
                            "Karakuri",
                            "Kashtira",
                            "Kewl Tune",
                            "Ki-sikil",
                            "King",
                            "Knight",
                            "Knightmare",
                            "Koa'ki Meiru",
                            "Koala",
                            "Konami Arcade Games",
                            "Kozmo",
                            "Krawler",
                            "Kuriboh",
                            "Labrynth",
                            "Labyrinth Wall",
                            "Lady of Lament",
                            "Laval",
                            "Legendary Knight",
                            "Libromancer",
                            "Light and Darkness Dragon",
                            "Lightsworn",
                            "Lil-la",
                            "Live☆Twin",
                            "Lswarm",
                            "Lunalight",
                            "Lyrilusc",
                            "Machina",
                            "Machine Angel",
                            "Madolche",
                            "Madoor",
                            "Magical Musket",
                            "Magician",
                            "Magician Girl",
                            "Magikey",
                            "Magistus",
                            "Magna Warrior",
                            "Magnet",
                            "Magnet Warrior",
                            "Majespecter",
                            "Majestic",
                            "Maju",
                            "Malefic",
                            "Malicevorous",
                            "Maliss",
                            "Man-Eater Bug",
                            "Mannadium",
                            "Marincess",
                            "Martial Art Spirit",
                            "Mask",
                            "Masked HERO",
                            "Materiactor",
                            "Mathmech",
                            "Mayakashi",
                            "Mecha Phantom Beast",
                            "Megalith",
                            "Mekk-Knight",
                            "Meklord",
                            "Melffy",
                            "Melodious",
                            "Memento",
                            "Mermail",
                            "Metalfoes",
                            "Metalmorph",
                            "Metaphys",
                            "Mikanko",
                            "Millennium",
                            "Mimighoul",
                            "Mirror Trap",
                            "Mischief",
                            "Mist Valley",
                            "Mitsurugi",
                            "Mokey Mokey",
                            "Monarch",
                            "Morganite",
                            "Morphtronic",
                            "Motor",
                            "Mulcharmy",
                            "Mystical Beast of the Forest",
                            "Mythical Beast",
                            "Myutant",
                            "Naturia",
                            "Nekroz",
                            "Nemeses",
                            "Nemleria",
                            "Nemurelia",
                            "Neo Space",
                            "Neo-Spacian",
                            "Neos",
                            "Nephthys",
                            "Nimble",
                            "Ninja",
                            "Ninjitsu Art",
                            "Noble Arms",
                            "Noble Knight",
                            "Nordic",
                            "Nouvelles",
                            "Number",
                            "Numeron",
                            "Odd-Eyes",
                            "Ogdoadic",
                            "Ojama",
                            "Onomat",
                            "Orcust",
                            "Overlay",
                            "P",
                            "P.U.N.K.",
                            "Paladins of Dragons",
                            "Paleozoic",
                            "PaniK's monsters",
                            "Parasite",
                            "Parshath",
                            "Patissciel",
                            "Pendulum",
                            "Pendulum Dragon",
                            "Penguin",
                            "Performage",
                            "Performapal",
                            "Phantasm",
                            "Phantasm Spiral",
                            "Phantom Beast",
                            "Phantom Knights",
                            "Photon",
                            "Piece Golem",
                            "Plunder Patroll",
                            "Polymerization",
                            "Possessed",
                            "Potan",
                            "Power Patron",
                            "Power Tool",
                            "Prank-Kids",
                            "Predap",
                            "Predaplant",
                            "Prediction Princess",
                            "Priestess",
                            "Primite",
                            "Prophecy",
                            "PSY-Frame",
                            "Puppet",
                            "Purrely",
                            "Qli",
                            "R.B.",
                            "Ra",
                            "Radiant Typhoon",
                            "Ragnaraika",
                            "Raidraptor",
                            "Rainbow Bridge",
                            "Rank-Up-Magic",
                            "Recipe",
                            "Recolored counterpart",
                            "Red-Eyes",
                            "Regenesis",
                            "Relinquished",
                            "Reptilianne",
                            "Rescue Squad",
                            "Rescue-ACE",
                            "Resonator",
                            "Rikka",
                            "Risebell",
                            "Rites",
                            "Ritual Art",
                            "Ritual Beast",
                            "Ritual of Light and Darkness",
                            "Roid",
                            "Rokket",
                            "Roland",
                            "Rose",
                            "Rose Dragon",
                            "Royal",
                            "Runick",
                            "Ryu-Ge",
                            "Ryzeal",
                            "S-Force",
                            "Saber",
                            "Sacred Beast",
                            "Salamandra",
                            "Salamangreat",
                            "Sangen",
                            "Scareclaw",
                            "Schoolwork",
                            "Scrap",
                            "Scrap-Iron",
                            "Sea Stealth",
                            "Secret Six Samurai",
                            "Serket",
                            "Seventh",
                            "Shaddoll",
                            "Shark",
                            "Shining Sarcophagus",
                            "Shinobird",
                            "Shiranui",
                            "Signature move",
                            "Silent Magician",
                            "Silent Swordsman",
                            "Simorgh",
                            "Sinful Spoils",
                            "Six Samurai",
                            "Six Strike",
                            "Skilled Magician",
                            "Skull Servant",
                            "Sky Scourge",
                            "Sky Striker",
                            "Skyblaster",
                            "Slime",
                            "Snake-Eye",
                            "Solemn",
                            "Solfachord",
                            "Speedroid",
                            "Spellbook",
                            "Sphinx",
                            "Spider",
                            "Spirit Message",
                            "Spiritual Art",
                            "Spright",
                            "Springans",
                            "SPYRAL",
                            "Star",
                            "Star Seraph",
                            "Stardust",
                            "Starliege",
                            "Starry Knight",
                            "Starving Venom",
                            "Stealth Kragen",
                            "Steelswarm",
                            "Stellarknight",
                            "Subterror",
                            "Sunavalon",
                            "Sunseed",
                            "Sunvine",
                            "Super Defense Robot",
                            "Super Quant",
                            "Superheavy",
                            "Superheavy Samurai",
                            "Supreme King",
                            "Swamp",
                            "Swarm of",
                            "Swordsoul",
                            "Sylvan",
                            "Symphonic Warrior",
                            "Synchro",
                            "Synchron",
                            "T.G.",
                            "Tachyon",
                            "Tearlaments",
                            "Teleport",
                            "Tellarknight",
                            "Temple of the Kings",
                            "Tenpai Dragon",
                            "Tenyi",
                            "Test",
                            "The Agent",
                            "The Sanctuary in the Sky",
                            "The Weather",
                            "Theorealize",
                            "Therion",
                            "Thunder Dragon",
                            "Tiki",
                            "Timaeus",
                            "Time Thief",
                            "Timelord",
                            "Tindangle",
                            "Tistina",
                            "Toon",
                            "Topologic",
                            "Toy",
                            "Train",
                            "Transcendosaurus",
                            "Trap Hole",
                            "Trap Monster",
                            "Traptrix",
                            "Tri-Brigade",
                            "Triamid",
                            "Trickstar",
                            "True Draco",
                            "U.A.",
                            "Umbral Horror",
                            "Umi",
                            "Unchained",
                            "Underworld",
                            "Uniform Nomenclature",
                            "Ursarctic",
                            "Utopia",
                            "Utopic",
                            "Vaalmonica",
                            "Valkyrie",
                            "Vampire",
                            "Vanquish Soul",
                            "Vassal",
                            "Vaylantz",
                            "Veda",
                            "Vendread",
                            "Venom",
                            "Vernusylph",
                            "Virtual World",
                            "Visas",
                            "Vision HERO",
                            "Voiceless Voice",
                            "Void",
                            "Volcanic",
                            "Vylon",
                            "WAKE CUP!",
                            "War Rock",
                            "Warrior",
                            "Watt",
                            "Wedju",
                            "White",
                            "White Forest",
                            "White Knight",
                            "Wicked God",
                            "Wight",
                            "Wind-Up",
                            "Windwitch",
                            "Witchcrafter",
                            "with Eyes of Blue",
                            "World Chalice",
                            "World Legacy",
                            "Worm",
                            "X-Saber",
                            "Xyz",
                            "Yang Zing",
                            "Yokai",
                            "Yosenju",
                            "Yubel",
                            "Yummy",
                            "Zefra",
                            "Zera",
                            "Zexal",
                            "Zombie counterpart",
                            "Zoodiac",
                            "Zubaba"
                        ],
                        "type": "string",
                        "description": "Card archetype (e.g. Blue-Eyes, Dark Magician, Six Samurai). Empty = any.",
                        "default": ""
                    },
                    "banlist": {
                        "title": "Ban list",
                        "enum": [
                            "",
                            "tcg",
                            "ocg",
                            "goat"
                        ],
                        "type": "string",
                        "description": "Filter to cards in a specific ban list.",
                        "default": ""
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
