{
  "openapi": "3.0.1",
  "info": {
    "title": "Mannco Scraper",
    "description": "Scrape Mannco.store to extract live item listings data for Team Fortress 2, Counter-Strike 2, Dota 2, and Rust ($2.5/1000 items).",
    "version": "0.0",
    "x-build-id": "9WOaYXid9CRBmL1TI"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/coding-doctor-omar~Mannco-Scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-coding-doctor-omar-Mannco-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/coding-doctor-omar~Mannco-Scraper/runs": {
      "post": {
        "operationId": "runs-sync-coding-doctor-omar-Mannco-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/coding-doctor-omar~Mannco-Scraper/run-sync": {
      "post": {
        "operationId": "run-sync-coding-doctor-omar-Mannco-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": [
          "game",
          "proxyConfiguration"
        ],
        "properties": {
          "itemUrls": {
            "title": "Item URLs",
            "type": "array",
            "description": "The URLs for the specific items to scrape (auto-detects the game from the URL). If provided, all other filters except 'Max Results' will be ignored.",
            "items": {
              "type": "object",
              "required": [
                "url"
              ],
              "properties": {
                "url": {
                  "type": "string",
                  "title": "URL of a web page",
                  "format": "uri"
                }
              }
            }
          },
          "maxResults": {
            "title": "Max Results",
            "type": "integer",
            "description": "The maximum number of results to return.",
            "default": 50
          },
          "game": {
            "title": "Game",
            "enum": [
              "440",
              "730",
              "570",
              "252490",
              "11"
            ],
            "type": "string",
            "description": "The game to scrape.",
            "default": "440"
          },
          "minPrice": {
            "title": "Minimum Price (USD)",
            "type": "integer",
            "description": "The minimum price in USD to look for.",
            "default": 0
          },
          "maxPrice": {
            "title": "Maximum Price (USD)",
            "type": "integer",
            "description": "The maximum price in USD to look for. If set to less than or equal to 0, will be treated as unlimited.",
            "default": 0
          },
          "sortBy": {
            "title": "Sort By",
            "enum": [
              "price|DESC",
              "price|ASC",
              "deals|DESC",
              "age|DESC",
              "sold|DESC"
            ],
            "type": "string",
            "description": "Item sort order.",
            "default": "price|DESC"
          },
          "stock": {
            "title": "Stock",
            "enum": [
              "0",
              "1"
            ],
            "type": "string",
            "description": "Item availability status.",
            "default": "0"
          },
          "tf2Spell": {
            "title": "Spell",
            "enum": [
              "",
              "Bruised Purple Footprints",
              "Chromatic Corruption",
              "Corpse Gray Footprints",
              "Die Job",
              "Exorcism",
              "Gangreen Footprints",
              "Halloween Fire",
              "Headless Horseshoes",
              "Pumpkin Bombs",
              "Putrescent Pigmentation",
              "Rotten Orange Footprints",
              "Sinister Staining",
              "Spectral Spectrum",
              "Team Spirit Footprints",
              "Violent Violet Footprints",
              "Voices from Below"
            ],
            "type": "string",
            "description": "Item spell.",
            "default": ""
          },
          "tf2Quality": {
            "title": "Quality",
            "enum": [
              "",
              "Collector's",
              "Decorated",
              "Genuine",
              "Haunted",
              "Normal",
              "Strange",
              "Unique",
              "Unusual",
              "Vintage"
            ],
            "type": "string",
            "description": "Item quality.",
            "default": ""
          },
          "tf2Warpaint": {
            "title": "Warpaint",
            "enum": [
              "",
              "none",
              "Alien Tech",
              "Alpine",
              "Anodized Aloha",
              "Autumn",
              "Backwoods Boomstick",
              "Bamboo Brushed",
              "Bank Rolled",
              "Blackout",
              "Bloom Buffed",
              "Bomb Carrier",
              "Bomber Soul",
              "Bonk Varnished",
              "Bonzo Gnawed",
              "Bovine Blazemaker",
              "Brawler's Iron",
              "Broken Bones",
              "Broken Record",
              "Business Class",
              "Cabin Fevered",
              "Calavera Canvas",
              "Candy Coated",
              "Cardboard Boxed",
              "Carpet Bomber",
              "Chilly Autumn",
              "Civic Duty",
              "Civil Servant",
              "Clover Camo'd",
              "Cookie Fortress",
              "Cosmic Calamity",
              "Crawlspace Critters",
              "Cream Corned",
              "Croc Dusted",
              "Damascus and Mahogany",
              "Dead Reckoner",
              "Deadly Dragon",
              "Death Deluxe",
              "Dovetailed",
              "Dragon Slayer",
              "Dream Piped",
              "Electroshocked",
              "Elfin Enamel",
              "Eyestalker",
              "Fire Glazed",
              "Forest Fire",
              "Freedom Wrapped",
              "Frost Ornamented",
              "Frosty Delivery",
              "Frozen Aurora",
              "Geometrical Teams",
              "Ghost Town",
              "Ghoul Blaster",
              "Gift Wrapped",
              "Gifting Mann's Wrapping Paper",
              "Gingerbread Winner",
              "Glacial Glazed",
              "Gobi Glazed",
              "Gourdy Green",
              "Graphite Gripped",
              "Hana",
              "Haunted Ghosts",
              "Hazard Warning",
              "Health and Hell",
              "Health and Hell (Green)",
              "Helldriver",
              "Horror Holiday",
              "Hypergon",
              "Igloo",
              "Iron Wood",
              "Jazzy",
              "Kill Covered",
              "Kiln and Conquer",
              "Leopard Printed",
              "Macabre Web",
              "Macaw Masked",
              "Mannana Peeled",
              "Masked Mender",
              "Mechanized Monster",
              "Merc Stained",
              "Metalized Soul",
              "Miami Element",
              "Misfortunate",
              "Mosaic",
              "Mummified Mimic",
              "Necromanced",
              "Necropolish",
              "Neo Tokyo",
              "Neon-ween",
              "Night Owl",
              "Nutcracker",
              "Organ-ically Hellraised",
              "Pacific Peacemaker",
              "Park Pigmented",
              "Party Phantoms",
              "Peppermint Swirl",
              "Piña Polished",
              "Piranha Mania",
              "Pizza Polished",
              "Plaid Potshotter",
              "Polar Surprise",
              "Polter-Guised",
              "Portal Plastered",
              "Potent Poison",
              "Pumpkin Pied",
              "Pumpkin Plastered",
              "Quack Canvassed",
              "Raving Dead",
              "Saccharine Striped",
              "Sacred Slayer",
              "Sarsaparilla Sprayed",
              "Sax Waxed",
              "Searing Souls",
              "Secretly Serviced",
              "Seriously Snowed",
              "Simple Spirits",
              "Skull Cracked",
              "Skull Study",
              "Sky Stallion",
              "Sleek Greek",
              "Sleighin' Style",
              "Smalltown Bringdown",
              "Smissmas Camo",
              "Smissmas Spycrabs",
              "Smissmas Village",
              "Snow Covered",
              "Snow Globalization",
              "Snowflake Swirled",
              "Spectral Shimmered",
              "Spectrum Splattered",
              "Spider Season",
              "Spider's Cluster",
              "Spirit of Halloween",
              "Star Crossed",
              "Stardust",
              "Starlight Serenity",
              "Stealth Specialist",
              "Steel Brushed",
              "Sunriser",
              "Swashbuckled",
              "Sweet Toothed",
              "Team Charged",
              "Team Detail",
              "Team Serviced",
              "Tiger Buffed",
              "Totally Boned",
              "Tumor Toasted",
              "Uranium",
              "Warborn",
              "Winterland Wrapped",
              "Woodland Warrior",
              "Woodsy Widowmaker",
              "Wrapped Reviver",
              "Yeti Coated"
            ],
            "type": "string",
            "description": "Item warpaint.",
            "default": ""
          },
          "tf2Part": {
            "title": "Part",
            "enum": [
              "",
              "Airborne Enemy Kills",
              "Airborne Enemy Kills (only Harvest)",
              "Allied Healing Done",
              "Assists",
              "Buildings Destroyed",
              "Burning Player Kills",
              "Carnival Games Won",
              "Carnival Underworld Kills",
              "Cloaked Spies Killed",
              "Critical Kills",
              "Damage Dealt",
              "Defender Kills",
              "Demomen Killed",
              "Dominations",
              "Double Donks",
              "Engineers Killed",
              "Fires Survived",
              "Freezecam Taunt Appearances",
              "Full Health Kills",
              "Giant Robots Destroyed",
              "Gib Kills",
              "Headshot Kills",
              "Headshot Kills (only Harvest)",
              "Health Dispensed to Teammates",
              "Heavies Killed",
              "Kill Assists",
              "Kills",
              "Kills During Halloween",
              "Kills during Victory Time",
              "Kills Under A Full Moon",
              "Kills While Explosive-Jumping",
              "Kills While Invuln ÜberCharged",
              "Kills While Low Health",
              "Killstreaks Ended",
              "Long-Distance Kills",
              "Medics Killed",
              "Medics Killed That Have Full ÜberCharge",
              "Not Crit nor MiniCrit Kills",
              "Player Hits",
              "Point Blank Kills",
              "Posthumous Kills",
              "Projectiles Reflected",
              "Pyros Killed",
              "Revenges",
              "Robot Scouts Destroyed",
              "Robot Spies Destroyed",
              "Robots Destroyed",
              "Robots Killed During Halloween",
              "Sappers Removed",
              "Scouts Killed",
              "Sentry Kills",
              "Snipers Killed",
              "Soldiers Killed",
              "Spies Killed",
              "Submerged Enemy Kills",
              "Tanks Destroyed",
              "Taunt Kills",
              "Taunting Player Kills",
              "Teammates Extinguished",
              "Teammates Teleported",
              "Teammates Whipped",
              "Ubers",
              "Übers",
              "Unusual-Wearing Player Kills"
            ],
            "type": "string",
            "description": "Part",
            "default": ""
          },
          "tf2Effect": {
            "title": "Effect",
            "enum": [
              "",
              "'72",
              "Abduction",
              "Abyssal Aura",
              "Accursed",
              "Aces High",
              "Acidic Bubbles of Envy",
              "Acidic Climate",
              "Aggradation",
              "Amaranthine",
              "Amatory",
              "Amethyst Winds",
              "Amplifying Aura",
              "Amygdala",
              "Analog Fortress",
              "Ancient Codex",
              "Ancient Eldritch",
              "Ancient Specter",
              "Anti-Freeze",
              "Apotheosis",
              "Arachne's Web",
              "Arachnid Assault",
              "Arcane Assistance",
              "Arctic Aurora",
              "Arctic Delight",
              "Ardent Antlers",
              "Ardentum Saturnalis",
              "Aromatica",
              "Ascension",
              "Astral Presence",
              "Atomic",
              "Audiophile",
              "Aurelian Seal",
              "Aurora Aura",
              "Aurora Australis",
              "Aurora Borealis",
              "Aurora Polaris",
              "Aurora Skies",
              "Autumn Leaves",
              "Award Winning",
              "Baron's Cherished Chaplet",
              "Beaming Beacon",
              "Bee Swarm",
              "Bewitched",
              "Bewitching Bugs",
              "Blades of Betrayal",
              "Blazed Brew",
              "Blazing Beacon",
              "Blazing Fireworks",
              "Blighted Snowstorm",
              "Blizzardy Storm",
              "Bloody Grip",
              "Blooming Beacon",
              "Bonzo The All-Gnawing",
              "Boundless Blizzard",
              "Bountiful Riches",
              "Brain Drain",
              "Bubble Breeze",
              "Bubbling",
              "Burning Flames",
              "Burning Sensation",
              "Butterfly Season",
              "Calm Snowfall",
              "Candle Flame",
              "Carioca's Call",
              "Cauldron Bubbles",
              "Cavalier de Carte",
              "Celestial Starburst",
              "Celestial Summit",
              "Charged Arcane",
              "Charging Catalyst",
              "Chilling Mist",
              "Chiroptera Venenata",
              "Chromatic Blaze",
              "Chromatica",
              "Circling Heart",
              "Circling Peace Sign",
              "Circling TF Logo",
              "Circuit Break",
              "Clairvoyance",
              "Cloud 9",
              "Cloudy Moon",
              "Cold Cosmos",
              "Condescending Embrace",
              "Confetti Celebration",
              "Contagious Eruption",
              "Convulsive Fiery",
              "Cool",
              "Cosmic Constellations",
              "Creepy Crawlies",
              "Cremation",
              "Crustacean Sensation",
              "Cryogenic",
              "Crystal Crown",
              "Cuban Smoke",
              "Current Conductor",
              "Cursed Confinement",
              "Cursed Forever!",
              "Dark Twilight",
              "Darkblaze",
              "Daydream Eruption",
              "Dazzling Constellations",
              "Dazzling Fireworks",
              "Dead Man's Party",
              "Dead Presidents",
              "Death at Dusk",
              "Death by Disco",
              "Death Grip",
              "Death's Daggers",
              "Decimating Wind",
              "Deep-sea Devourer",
              "Deepsea Rave",
              "Defragmenting Reality",
              "Delightful Doves",
              "Delightful Star",
              "Demonflame",
              "Demonic Impaler",
              "Desert Wind",
              "Devilish Diablo",
              "Disco Beat Down",
              "Distant Desire",
              "Distant Dream",
              "Distant Drift",
              "Distress Signal",
              "Divine Desire",
              "Divine Sunlight",
              "Dragonflies' Embrace",
              "Dragonflies' Lucent",
              "Dragonflies' Nature",
              "Drunkard",
              "Eerie Kraken",
              "Eerie Lightning",
              "Eerie Orbiting Fire",
              "Eldritch Flame",
              "Eldritch Horror",
              "Eldritch Rift",
              "Electric Hat Protector",
              "Electrocution",
              "Electrostatic",
              "Electrum",
              "Elemental",
              "Emerald Allurement",
              "Enchanted",
              "Energetic Haunter",
              "Energy Orb",
              "Ether Trail",
              "Ethereal Essence",
              "Eyes of Molten",
              "Fairy Lights",
              "Festive Falling Star",
              "Festive Fever",
              "Festive Lights",
              "Festive Spirit",
              "Festivized Formation",
              "Fiesta Royale",
              "Fifth Dimension",
              "Fireflies",
              "Flaming Lantern",
              "Flammable Bubbles of Attraction",
              "Flavorsome Sunset",
              "Floppin' Frenzy",
              "Flourishing Passion",
              "Flurry Rush",
              "Flying Lights",
              "Forever And Forever!",
              "Fossil Fueled",
              "Fountain of Delight",
              "Fragmented Gluons",
              "Fragmented Photons",
              "Fragmented Quarks",
              "Fragmenting Reality",
              "Fragrancium Elementalis",
              "Frankencharged",
              "Frantic Spooker",
              "Frightened Poltergeist",
              "Frisky Fireflies",
              "Frisky Morning",
              "Frostbite",
              "Frosted Decadence",
              "Frosted Star",
              "Frostfire",
              "Frosty Flavours",
              "Frosty Silver",
              "Frozen Fractals",
              "Frozen Icefall",
              "Fully Charged",
              "Galactic Cloud",
              "Galactic Codex",
              "Galactic Connection",
              "Galactic Dust",
              "Galactic Flame",
              "Galactic Gateway",
              "Galvanic Defiance",
              "Genus Plasmos",
              "Ghastly Ghosts",
              "Ghastly Ghosts Jr",
              "Ghastly Grove",
              "Ghosts of Smissmas Time",
              "Glamorous Dazzle",
              "Glamorous Glance",
              "Glimmering Fireworks",
              "Glittering Juniper",
              "Global Clusters",
              "Glowing Fireworks",
              "Godlike",
              "Golden Glimmer",
              "Golden Gusts",
              "Goldstruck",
              "Good-Hearted Goodies",
              "Gourdian Angel",
              "Grand Jubilee",
              "Gravelly Ghoul",
              "Green Black Hole",
              "Green Confetti",
              "Green Energy",
              "Green Giggler",
              "Halcyon Halo",
              "Hard Carry",
              "Harvest Moon",
              "Haunted Cremation",
              "Haunted Forever!",
              "Haunted Ghosts",
              "Haunted Kraken",
              "Haunted Mist",
              "Haunted Phantasm",
              "Haunted Phantasm Jr",
              "Haunted Wick",
              "Haunting Haze",
              "Hazardous Gas",
              "Head of Steam",
              "Heavy Rain",
              "Hellfire",
              "Hellish Inferno",
              "Hellspawned Horns",
              "Holiday Horns",
              "Hollow Flourish",
              "Holy Grail",
              "Horsemann's Hack",
              "Hospitable Festivity",
              "Hot",
              "Icestruck",
              "Iconic Outline",
              "Ignited Crest",
              "Infernal Flames",
              "Infernal Grip",
              "Infernal Smoke",
              "Infernal Wraith",
              "Iridescence",
              "Isotope",
              "It's a mystery to everyone",
              "It's a puzzle to me",
              "It's A Secret To Everybody",
              "Jarate Shock",
              "Jellyfish Field",
              "Jellyfish Hunter",
              "Jellyfish Jam",
              "Kaleidoscope",
              "Kill-a-Watt",
              "Knifestorm",
              "Knight's Prideful Spirit",
              "Laugh-O-Lantern",
              "Lavender Landfall",
              "Lavender Sensation",
              "Legacy Logo",
              "Limelight",
              "Linguistic Deviation",
              "Lost Signal",
              "Lovable Confetti",
              "Loyalist's Coronet",
              "Lucidation",
              "Lunar Lights",
              "Lure of the Deep",
              "Luxurious Lover",
              "Magenta Monstrum",
              "Magic Shuffle",
              "Magical Spirit",
              "Magnetic Hat Protector",
              "Magnifying Momentum",
              "Malevolent Monoculi",
              "Marigold Ritual",
              "Massed Flies",
              "Mega Strike",
              "Melting Mohawk",
              "Memory Leak",
              "Menacing Miasma",
              "Miami Nights",
              "Midnight Frostfall",
              "Midnight Sparklers",
              "Midnight Whirlwind",
              "Mint Frost",
              "Minty Cypress",
              "Mirthful Mistletoe",
              "Misty Skull",
              "Molten Mallard",
              "Monsoon Season",
              "Morbidly Beast",
              "Morning Glory",
              "Moth Plague",
              "Mountain Halo",
              "Musical Maelstrom",
              "Mysterious Mixture",
              "Mystic Fusion",
              "Mystical Medley",
              "Natural Lights",
              "Nebula",
              "Nether Trail",
              "Nether Void",
              "Nether Wisps",
              "Neutron Star",
              "Nightmarish Storm",
              "North Star",
              "Northern Nights",
              "Nuts n' Bolts",
              "Obnoxious Confetti",
              "Ocean Reef",
              "Ocean Swirl",
              "Old Hire",
              "Ominous Night",
              "Ominous Stare",
              "Omniscient Orb",
              "Open Mind",
              "Operatic Triumph",
              "Orbiting Fire",
              "Orbiting Planets",
              "Otherworldly Weather",
              "Overcharged",
              "Overclocked",
              "Overdrive",
              "Pale Nimbus",
              "Pastel Trance",
              "Perennial Petals",
              "Permafrost Essence",
              "Petal Prance",
              "Phantasmal Fog",
              "Phantom Crown",
              "Phantom Plague",
              "Phosphorous",
              "Piercing Headache",
              "Playful Aurora",
              "Plum Prankster",
              "Poisoned Shadows",
              "Poisonous Bubbles of Regret",
              "Polar Forecast",
              "Potion Explosion",
              "Power Pressure",
              "Power Surge",
              "Prettiest Star",
              "Prismatic Haze",
              "Prismatic Pine",
              "Prismatica",
              "Pristine Pine",
              "Psycho-delic",
              "Pumpkin Moon",
              "Pumpkin Party",
              "Pumpkin Patch",
              "Pungent Poison",
              "Purple Confetti",
              "Purple Energy",
              "Pyroland Daydream",
              "Pyroland Nightmare",
              "Pyrophoric Personality",
              "Radiant Legacy",
              "Radiant Rivalry",
              "Rainbow Reverie",
              "Rare Shine",
              "Raspberry Bloom",
              "Ravenous Ravens",
              "Refracting Fractals",
              "Refragmenting Reality",
              "Reindoonicorn Rancher",
              "Resonation",
              "Restless Wraiths",
              "Revenant's Rack",
              "Reverium Irregularis",
              "Revived Recharge",
              "Ring of Fire",
              "Rising Ritual",
              "Roaring Rockets",
              "Roboactive",
              "Runic Imprisonment",
              "Sakura Blessings",
              "Sakura Smoke Bomb",
              "Sandy",
              "Sapped",
              "Scorched Scalp",
              "Scorching Flames",
              "Scorching Sensation",
              "Screaming Tiger",
              "Seamine",
              "Searing Plasma",
              "Searing Stove",
              "Selfless Sensation",
              "Serenus Lumen",
              "Severed Serration",
              "Shark Attack",
              "Shimmering Fireworks",
              "Shimmering Lights",
              "Shining Bokeh",
              "Shining Stag",
              "Shining Star",
              "Showstopper",
              "Shrieking Shades",
              "Silver Cyclone",
              "Silver Serenade",
              "Sixth Sense",
              "Sizzling",
              "Sizzling Aroma",
              "Skill Gotten Gains",
              "Smissmas Swirls",
              "Smissmas Tree",
              "Smoking",
              "Smoldering Spirits",
              "Snow Dome",
              "Snowblinded",
              "Snowfall",
              "Snowfallen",
              "Snowy Day",
              "Snowy Spirit",
              "Solar Scorched",
              "Something Burning This Way Comes",
              "Soulful Slice",
              "Soundwave",
              "Spark of Smissmas",
              "Sparkling Fireworks",
              "Sparkling Lights",
              "Sparkling Spruce",
              "Sparkly Spruce",
              "Special Snowfall",
              "Spectral Escort",
              "Spectral Fire",
              "Spectral Shackles",
              "Spectral Swirl",
              "Spectral Wick",
              "Spectrum Inferno",
              "Spellbound",
              "Spellbound Aspect",
              "Spiraling Lights",
              "Split Malice",
              "Spooky Night",
              "Sprinkled Delights",
              "Squash n' Twist",
              "Stardust",
              "Stardust Pathway",
              "Stare from Beyond",
              "Starfire",
              "Starlight Haze",
              "Starlush",
              "Starstorm Insomnia",
              "Starstorm Slumber",
              "Startrance",
              "Static Mist",
              "Static Shock",
              "Steaming",
              "Stellar Ascent",
              "Stormy 13th Hour",
              "Stormy Storm",
              "Stunning",
              "Subatomic",
              "Sublime Snowstorm",
              "Subtle Silhouette",
              "Sulphurous",
              "Summer Wave",
              "Sunbeams",
              "Sylicone Succiduous",
              "Synesthesia",
              "Tainted Frost",
              "Tangled Lights",
              "Tar Pit",
              "Team Recognition",
              "Teamwork Valorance",
              "Tempered Thorns",
              "Terrestrial Favor",
              "Terrifying Thunder",
              "Terror-Watt",
              "Tesla Coil",
              "The Bone Zone",
              "The Dark Doorway",
              "The Eldritch Opening",
              "The Ooze",
              "Thundering Spirit",
              "Thunderous Rage",
              "Time Warp",
              "Toxic Aroma",
              "Toxic Grip",
              "Toxic Swirl",
              "Toxic Terrors",
              "Treasure Trove",
              "Tropical Thrill",
              "Twilight Snowfall",
              "Twinkling Fireworks",
              "Twinkling Lights",
              "Twirling Spirits",
              "Twisted Radiance",
              "Twisting Lights",
              "Über Blaze",
              "Undead Electricity",
              "Valiant Vortex",
              "Veno Shock",
              "Ventum Maris",
              "Verdant Phenomenon",
              "Verdant Virtuoso",
              "Verdant Vortex",
              "Verdatica",
              "Vexed Volcanics",
              "Vicious Circle",
              "Vicious Vampires",
              "Vicious Vortex",
              "Vigorous Pulse",
              "Violent Violets",
              "Violent Viridian",
              "Violent Wintertide",
              "Violet Vortex",
              "Viridescent Peeper",
              "Vivid Plasma",
              "Void Crawlers",
              "Volcanic Eruption",
              "Voltaic Hat Protector",
              "Wandering Wisps",
              "Warp Drive",
              "White Lightning",
              "Wicked Wick",
              "Wicked Wood",
              "Wildflower Meadows",
              "Winning Spirit",
              "Winter Spirit",
              "Winter Whiteout",
              "Wintery Wisp",
              "Wispy Halos"
            ],
            "type": "string",
            "description": "Effect",
            "default": ""
          },
          "tf2Type": {
            "title": "Type",
            "enum": [
              "",
              "Action",
              "Sappers",
              "Craft Item",
              "Melee",
              "Misc",
              "Construction PDA",
              "Spy watches",
              "Primary",
              "Random Craft Hat",
              "Secondary",
              "Crates",
              "Taunts",
              "Festivizers",
              "Gifts",
              "Killstreak kit fabricators",
              "Killstreak kit",
              "Specialized killstreak kit",
              "Professional killstreak kit",
              "Locked crates",
              "Gift crates",
              "Paint kit tool",
              "Noisemakers",
              "Halloween mode item",
              "Strange part kits",
              "Map strange part kits",
              "Strangifier tool",
              "Tools",
              "Unusualifier",
              "Usable items"
            ],
            "type": "string",
            "description": "Item type.",
            "default": ""
          },
          "tf2Class": {
            "title": "Class",
            "enum": [
              "",
              "Demoman;Engineer;Heavy;Medic;Pyro;Scout;Sniper;Soldier;Spy",
              "Demoman",
              "Engineer",
              "Heavy",
              "Medic",
              "Pyro",
              "Scout",
              "Sniper",
              "Soldier",
              "Spy"
            ],
            "type": "string",
            "description": "Item class.",
            "default": ""
          },
          "tf2Killstreak": {
            "title": "Killstreak",
            "enum": [
              "",
              "No",
              "Killstreak",
              "Specialized Killstreak",
              "Professional Killstreak"
            ],
            "type": "string",
            "description": "Item killstreak.",
            "default": ""
          },
          "tf2Festivized": {
            "title": "Festivized",
            "enum": [
              "",
              "No",
              "Festivized"
            ],
            "type": "string",
            "description": "Festivized",
            "default": ""
          },
          "tf2Paint": {
            "title": "Paint",
            "enum": [
              "",
              "A Color Similar to Slate",
              "A Deep Commitment to Purple",
              "A Distinctive Lack of Hue",
              "A Mann's Mint",
              "After Eight",
              "Aged Moustache Grey",
              "An Air of Debonair",
              "An Extraordinary Abundance of Tinge",
              "Australium Gold",
              "Balaclavas Are Forever",
              "Color No. 216-190-216",
              "Cream Spirit",
              "Dark Salmon Injustice",
              "Drably Olive",
              "Indubitably Green",
              "Mann Co. Orange",
              "Muskelmannbraun",
              "Noble Hatter's Violet",
              "Operator's Overalls",
              "Peculiarly Drab Tincture",
              "Pink as Hell",
              "Radigan Conagher Brown",
              "Team Spirit",
              "The Bitter Taste of Defeat and Lime",
              "The Color of a Gentlemann's Business Pants",
              "The Value of Teamwork",
              "Waterlogged Lab Coat",
              "Ye Olde Rustic Colour",
              "Zepheniah's Greed"
            ],
            "type": "string",
            "description": "Item paint.",
            "default": ""
          },
          "tf2Wear": {
            "title": "Wear",
            "enum": [
              "",
              "Factory New",
              "Minimal Wear",
              "Field-Tested",
              "Well-Worn",
              "Battle-Scarred"
            ],
            "type": "string",
            "description": "Item wear.",
            "default": ""
          },
          "cs2Weapon": {
            "title": "Weapon",
            "enum": [
              "",
              "AK-47",
              "AUG",
              "AWP",
              "Bayonet",
              "Bowie Knife",
              "Butterfly Knife",
              "Classic Knife",
              "CZ75-Auto",
              "Desert Eagle",
              "Dual Berettas",
              "Falchion Knife",
              "FAMAS",
              "Five-SeveN",
              "Flip Knife",
              "G3SG1",
              "Galil AR",
              "Glock-18",
              "Gut Knife",
              "Huntsman Knife",
              "Karambit",
              "Kukri Knife",
              "M249",
              "M4A1-S",
              "M4A4",
              "M9 Bayonet",
              "MAC-10",
              "MAG-7",
              "MP5-SD",
              "MP7",
              "MP9",
              "Navaja Knife",
              "Negev",
              "Nomad Knife",
              "Nova",
              "P2000",
              "P250",
              "P90",
              "Paracord Knife",
              "PP-Bizon",
              "R8 Revolver",
              "Sawed-Off",
              "SCAR-20",
              "SG 553",
              "Shadow Daggers",
              "Skeleton Knife",
              "SSG 08",
              "Stiletto Knife",
              "Survival Knife",
              "Talon Knife",
              "Tec-9",
              "UMP-45",
              "Ursus Knife",
              "USP-S",
              "XM1014",
              "Zeus x27"
            ],
            "type": "string",
            "description": "Weapon.",
            "default": ""
          },
          "cs2Type": {
            "title": "Type",
            "enum": [
              "",
              "Agent",
              "Charm",
              "Collectible",
              "Container",
              "Equipment",
              "Gift",
              "Gloves",
              "Graffiti",
              "Key",
              "Knife",
              "Machinegun",
              "Music Kit",
              "Pass",
              "Patch",
              "Pistol",
              "Rifle",
              "Shotgun",
              "SMG",
              "Sniper Rifle",
              "Sticker",
              "Tag",
              "Tool"
            ],
            "type": "string",
            "description": "Item type.",
            "default": ""
          },
          "cs2Rarity": {
            "title": "Rarity",
            "enum": [
              "",
              "Base Grade",
              "Classified",
              "Consumer Grade",
              "Covert",
              "Distinguished",
              "Exceptional",
              "Exotic",
              "Extraordinary",
              "High Grade",
              "Industrial Grade",
              "Master",
              "Mil-Spec Grade",
              "Remarkable",
              "Restricted",
              "Superior"
            ],
            "type": "string",
            "description": "Item rarity.",
            "default": ""
          },
          "cs2StatTrak": {
            "title": "StatTrak",
            "enum": [
              "",
              "stattrak"
            ],
            "type": "string",
            "description": "StatTrak.",
            "default": ""
          },
          "cs2Wear": {
            "title": "Wear",
            "enum": [
              "",
              "Factory New",
              "Minimal Wear",
              "Field-Tested",
              "Well-Worn",
              "Battle-Scarred"
            ],
            "type": "string",
            "description": "Item wear.",
            "default": ""
          },
          "rustSlot": {
            "title": "Category",
            "enum": [
              "",
              "armor",
              "clothing",
              "Misc",
              "steamcat.armor",
              "steamcat.clothing",
              "steamcat.misc",
              "steamcat.resource",
              "steamcat.weapon",
              "weapon"
            ],
            "type": "string",
            "description": "Item category.",
            "default": ""
          },
          "dotaHero": {
            "title": "Hero",
            "enum": [
              "",
              "DOTA_OtherType",
              "npc_dota_hero_abaddon",
              "npc_dota_hero_abyssal_underlord",
              "npc_dota_hero_alchemist",
              "npc_dota_hero_ancient_apparition",
              "npc_dota_hero_antimage",
              "npc_dota_hero_arc_warden",
              "npc_dota_hero_axe",
              "npc_dota_hero_bane",
              "npc_dota_hero_batrider",
              "npc_dota_hero_beastmaster",
              "npc_dota_hero_bloodseeker",
              "npc_dota_hero_bounty_hunter",
              "npc_dota_hero_brewmaster",
              "npc_dota_hero_bristleback",
              "npc_dota_hero_broodmother",
              "npc_dota_hero_centaur",
              "npc_dota_hero_chaos_knight",
              "npc_dota_hero_chen",
              "npc_dota_hero_clinkz",
              "npc_dota_hero_crystal_maiden",
              "npc_dota_hero_crystal_maiden_persona1",
              "npc_dota_hero_dark_seer",
              "npc_dota_hero_dark_willow",
              "npc_dota_hero_dazzle",
              "npc_dota_hero_death_prophet",
              "npc_dota_hero_disruptor",
              "npc_dota_hero_doom_bringer",
              "npc_dota_hero_dragon_knight",
              "npc_dota_hero_drow_ranger",
              "npc_dota_hero_earth_spirit",
              "npc_dota_hero_earthshaker",
              "npc_dota_hero_elder_titan",
              "npc_dota_hero_ember_spirit",
              "npc_dota_hero_enchantress",
              "npc_dota_hero_enigma",
              "npc_dota_hero_faceless_void",
              "npc_dota_hero_furion",
              "npc_dota_hero_grimstroke",
              "npc_dota_hero_gyrocopter",
              "npc_dota_hero_hoodwink",
              "npc_dota_hero_huskar",
              "npc_dota_hero_invoker",
              "npc_dota_hero_jakiro",
              "npc_dota_hero_juggernaut",
              "npc_dota_hero_keeper_of_the_light",
              "npc_dota_hero_kunkka",
              "npc_dota_hero_legion_commander",
              "npc_dota_hero_leshrac",
              "npc_dota_hero_lich",
              "npc_dota_hero_life_stealer",
              "npc_dota_hero_lina",
              "npc_dota_hero_lion",
              "npc_dota_hero_lone_druid",
              "npc_dota_hero_luna",
              "npc_dota_hero_lycan",
              "npc_dota_hero_magnataur",
              "npc_dota_hero_mars",
              "npc_dota_hero_medusa",
              "npc_dota_hero_meepo",
              "npc_dota_hero_mirana",
              "npc_dota_hero_monkey_king",
              "npc_dota_hero_morphling",
              "npc_dota_hero_naga_siren",
              "npc_dota_hero_necrolyte",
              "npc_dota_hero_nevermore",
              "npc_dota_hero_night_stalker",
              "npc_dota_hero_nyx_assassin",
              "npc_dota_hero_obsidian_destroyer",
              "npc_dota_hero_ogre_magi",
              "npc_dota_hero_omniknight",
              "npc_dota_hero_oracle",
              "npc_dota_hero_pangolier",
              "npc_dota_hero_phantom_assassin",
              "npc_dota_hero_phantom_lancer",
              "npc_dota_hero_phoenix",
              "npc_dota_hero_puck",
              "npc_dota_hero_pudge",
              "npc_dota_hero_pudge_persona1",
              "npc_dota_hero_pugna",
              "npc_dota_hero_queenofpain",
              "npc_dota_hero_rattletrap",
              "npc_dota_hero_razor",
              "npc_dota_hero_riki",
              "npc_dota_hero_rubick",
              "npc_dota_hero_sand_king",
              "npc_dota_hero_shadow_demon",
              "npc_dota_hero_shadow_shaman",
              "npc_dota_hero_shredder",
              "npc_dota_hero_silencer",
              "npc_dota_hero_skeleton_king",
              "npc_dota_hero_skywrath_mage",
              "npc_dota_hero_slardar",
              "npc_dota_hero_slark",
              "npc_dota_hero_snapfire",
              "npc_dota_hero_sniper",
              "npc_dota_hero_spectre",
              "npc_dota_hero_spirit_breaker",
              "npc_dota_hero_storm_spirit",
              "npc_dota_hero_sven",
              "npc_dota_hero_techies",
              "npc_dota_hero_templar_assassin",
              "npc_dota_hero_terrorblade",
              "npc_dota_hero_tidehunter",
              "npc_dota_hero_tinker",
              "npc_dota_hero_tiny",
              "npc_dota_hero_treant",
              "npc_dota_hero_troll_warlord",
              "npc_dota_hero_tusk",
              "npc_dota_hero_undying",
              "npc_dota_hero_ursa",
              "npc_dota_hero_vengefulspirit",
              "npc_dota_hero_venomancer",
              "npc_dota_hero_viper",
              "npc_dota_hero_visage",
              "npc_dota_hero_warlock",
              "npc_dota_hero_weaver",
              "npc_dota_hero_windrunner",
              "npc_dota_hero_winter_wyvern",
              "npc_dota_hero_wisp",
              "npc_dota_hero_witch_doctor",
              "npc_dota_hero_zuus"
            ],
            "type": "string",
            "description": "Hero.",
            "default": ""
          },
          "dotaSlot": {
            "title": "Slot",
            "enum": [
              "",
              "ability_ultimate",
              "ability1",
              "ability2",
              "ability3",
              "ability4",
              "ancient",
              "announcer",
              "armor",
              "arms",
              "arms_persona_1",
              "back",
              "belt",
              "body_head",
              "courier",
              "cursor_pack",
              "dire_creeps",
              "dire_siege_creeps",
              "dire_towers",
              "gloves",
              "head",
              "head_persona_1",
              "heroic_statue",
              "hud_skin",
              "legs",
              "loading_screen",
              "mega_kills",
              "misc",
              "mount",
              "music",
              "neck",
              "offhand_weapon",
              "offhand_weapon_persona_1",
              "radiant_towers",
              "shapeshift",
              "shoulder",
              "summon",
              "tail",
              "taunt",
              "voice",
              "ward",
              "weapon",
              "weather"
            ],
            "type": "string",
            "description": "Item slot.",
            "default": ""
          },
          "dotaType": {
            "title": "Type",
            "enum": [
              "",
              "ancient",
              "announcer",
              "bundle",
              "courier",
              "cursor_pack",
              "direcreeps",
              "diresiegecreeps",
              "diretowers",
              "dynamic_recipe",
              "emoticon_tool",
              "hud_skin",
              "loading_screen",
              "Misc",
              "music",
              "pennant",
              "player_card",
              "radianttowers",
              "retired_treasure_chest",
              "showcase_decoration",
              "socket_gem",
              "sticker",
              "sticker_capsule",
              "Taunts",
              "tool",
              "treasure_chest",
              "ward",
              "wearable"
            ],
            "type": "string",
            "description": "Item type.",
            "default": ""
          },
          "dotaQuality": {
            "title": "Quality",
            "enum": [
              "",
              "Auspicious",
              "Autographed",
              "Base",
              "Corrupted",
              "Cursed",
              "Exalted",
              "Frozen",
              "Genuine",
              "Glitter",
              "Gold",
              "Heroic",
              "Holo",
              "Infused",
              "Inscribed",
              "Standard",
              "Unusual"
            ],
            "type": "string",
            "description": "Item quality.",
            "default": ""
          },
          "dotaRarity": {
            "title": "Rarity",
            "enum": [
              "",
              "Rarity_Arcana",
              "Rarity_Common",
              "Rarity_Immortal",
              "Rarity_Legendary",
              "Rarity_Mythical",
              "Rarity_Rare",
              "Rarity_Seasonal",
              "Rarity_Uncommon"
            ],
            "type": "string",
            "description": "Item rarity.",
            "default": ""
          },
          "pgcType": {
            "title": "Type",
            "enum": [
              "",
              "T-shirts"
            ],
            "type": "string",
            "description": "Item type.",
            "default": ""
          },
          "pgcSize": {
            "title": "Size",
            "enum": [
              "",
              "Small",
              "Medium",
              "Large",
              "X-Large",
              "XX-Large",
              "XXX-Large"
            ],
            "type": "string",
            "description": "Item size.",
            "default": ""
          },
          "proxyConfiguration": {
            "title": "Proxies",
            "type": "object",
            "description": "The proxies to use when scraping. It is highly recommended to use Apify residential proxies to avoid getting blocked.",
            "default": {
              "useApifyProxy": true,
              "apifyProxyGroups": [
                "RESIDENTIAL"
              ],
              "apifyProxyCountry": "US"
            }
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}