{
  "openapi": "3.0.1",
  "info": {
    "title": "Depop Secondhand Fashion Scraper - Search Listings & Products",
    "description": "Scrape Depop secondhand fashion listings by keyword. Extracts title, brand, price, size, condition, seller, likes, category, description and more.",
    "version": "0.1",
    "x-build-id": "KL2qy8f6cPqA0isJN"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/parseforge~depop-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-parseforge-depop-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~depop-scraper/runs": {
      "post": {
        "operationId": "runs-sync-parseforge-depop-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~depop-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-parseforge-depop-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": [
          "search"
        ],
        "properties": {
          "search": {
            "title": "Product name or keyword",
            "type": "string",
            "description": "Keyword to search for on Depop (e.g. 'vintage jacket', 'nike shoes', 'levi jeans')."
          },
          "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"
          },
          "sort": {
            "title": "Sort Order",
            "enum": [
              "relevance",
              "priceAscending",
              "priceDescending"
            ],
            "type": "string",
            "description": "How Depop orders the search results.",
            "default": "relevance"
          },
          "country": {
            "title": "Marketplace Country",
            "enum": [
              "us",
              "gb",
              "au",
              "ie",
              "nz",
              "ca",
              "fr",
              "de",
              "it",
              "es",
              "nl",
              "be",
              "at",
              "pl",
              "se",
              "dk",
              "fi",
              "pt",
              "gr",
              "cz",
              "jp",
              "mx",
              "br",
              "in",
              "za"
            ],
            "type": "string",
            "description": "Depop marketplace to search. Results are listings located in that country.",
            "default": "us"
          },
          "currency": {
            "title": "Currency",
            "enum": [
              "AUD",
              "BRL",
              "CAD",
              "CZK",
              "DKK",
              "EUR",
              "GBP",
              "INR",
              "JPY",
              "MXN",
              "NZD",
              "PLN",
              "SEK",
              "USD",
              "ZAR"
            ],
            "type": "string",
            "description": "Currency used for the returned prices. Pick the one matching your marketplace country.",
            "default": "USD"
          },
          "priceMin": {
            "title": "Minimum Price",
            "minimum": 0,
            "type": "integer",
            "description": "Only return listings priced at or above this amount."
          },
          "priceMax": {
            "title": "Maximum Price",
            "minimum": 0,
            "type": "integer",
            "description": "Only return listings priced at or below this amount."
          },
          "gender": {
            "title": "Department",
            "enum": [
              "male",
              "female"
            ],
            "type": "string",
            "description": "Restrict to menswear or womenswear listings."
          },
          "conditions": {
            "title": "Condition",
            "type": "array",
            "description": "Only return listings in the selected conditions.",
            "items": {
              "type": "string",
              "enum": [
                "brand_new",
                "used_like_new",
                "used_excellent",
                "used_good",
                "used_fair"
              ],
              "enumTitles": [
                "Brand new",
                "Like new",
                "Used - Excellent",
                "Used - Good",
                "Used - Fair"
              ]
            }
          },
          "colours": {
            "title": "Colour",
            "type": "array",
            "description": "Only return listings tagged with the selected colours.",
            "items": {
              "type": "string",
              "enum": [
                "black",
                "grey",
                "white",
                "brown",
                "tan",
                "cream",
                "yellow",
                "red",
                "burgundy",
                "orange",
                "pink",
                "purple",
                "blue",
                "navy",
                "green",
                "khaki",
                "multi",
                "silver",
                "gold"
              ],
              "enumTitles": [
                "Black",
                "Grey",
                "White",
                "Brown",
                "Tan",
                "Cream",
                "Yellow",
                "Red",
                "Burgundy",
                "Orange",
                "Pink",
                "Purple",
                "Blue",
                "Navy",
                "Green",
                "Khaki",
                "Multi",
                "Silver",
                "Gold"
              ]
            }
          },
          "groups": {
            "title": "Category Group",
            "type": "array",
            "description": "Top-level Depop category, such as Coats and jackets or Footwear.",
            "items": {
              "type": "string",
              "enum": [
                "tops",
                "jewellery",
                "bottoms",
                "dresses",
                "coats-jackets",
                "jumpsuit-and-playsuit",
                "suits",
                "footwear",
                "accessories",
                "nightwear",
                "underwear",
                "swim-beach-wear",
                "fancy-dress",
                "sleepsuits-and-bodysuits",
                "beauty",
                "face-masks",
                "home",
                "tech-accessories",
                "film",
                "art",
                "books-and-magazine",
                "music",
                "party-supplies",
                "sports-equipment-accesories",
                "toys",
                "umbrella",
                "bundles"
              ],
              "enumTitles": [
                "Tops",
                "Jewelry",
                "Bottoms",
                "Dresses",
                "Coats and jackets",
                "Jumpsuits and rompers",
                "Suits",
                "Footwear",
                "Accessories",
                "Sleepwear",
                "Underwear",
                "Swimwear",
                "Costume",
                "Onesies and sleepers",
                "Beauty",
                "Face masks and coverings",
                "Home",
                "Tech accessories",
                "Cameras and film",
                "Art",
                "Books and magazines",
                "Music",
                "Party supplies",
                "Sports equipment",
                "Toys",
                "Umbrellas",
                "Clothing bundles"
              ]
            }
          },
          "productTypes": {
            "title": "Product Type",
            "type": "array",
            "description": "Specific Depop product type, such as Jackets or Sneakers.",
            "items": {
              "type": "string",
              "enum": [
                "tshirts",
                "jerseys",
                "hoodies",
                "sweatshirts",
                "jumpers",
                "cardigans",
                "shirts",
                "polo-shirts",
                "blouses",
                "crop-top",
                "vests-tanks-camis",
                "corsets",
                "bodysuits",
                "other-tops",
                "jeans",
                "joggers-tracksuits",
                "trousers",
                "shorts",
                "leggings",
                "skirts",
                "other-bottoms",
                "casual-dresses",
                "formal-dresses",
                "going-out-dresses",
                "prom-dresses",
                "summer-dresses",
                "shift-dresses",
                "shirt-dresses",
                "wrap-dresses",
                "babydoll-dresses",
                "bodycon-dresses",
                "work-dresses",
                "wedding-dresses",
                "other-dresses",
                "dresses",
                "coats",
                "jackets",
                "gilets",
                "other-coats-jackets",
                "jumpsuit",
                "playsuit-romper",
                "dungarees-overalls",
                "other-jumpsuit-and-playsuit",
                "suits",
                "tailored-jackets",
                "tailored-trousers",
                "waistcoats-vests",
                "tuxedos",
                "other-suits",
                "trainers",
                "slides",
                "sandals",
                "flipflops",
                "slippers",
                "brogues",
                "oxfords",
                "loafers",
                "boots",
                "boat-shoes",
                "espadrilles",
                "ballet-shoes",
                "clogs",
                "courts",
                "mules",
                "first-shoes-baby-shoes",
                "other-footwear",
                "bag",
                "belt",
                "hat",
                "gloves",
                "scarf-wraps",
                "sunglasses",
                "wallet-purses",
                "jewellery",
                "watch",
                "hair-accessories",
                "other-accessories",
                "pajamas",
                "robes",
                "other-nightwear",
                "bandeaus",
                "bras",
                "panties",
                "shapewear",
                "boxers-and-briefs",
                "vest-undershirts",
                "socks",
                "hosiery-tights",
                "other-underwear",
                "bikinis-and-tankini-sets",
                "bikini-and-tankini-tops",
                "bikini-and-tankini-bottoms",
                "swimsuit-one-piece",
                "swim-briefs-shorts",
                "cover-ups",
                "other-swim-beach-wear",
                "fancy-dress",
                "sleepsuits-babygrows",
                "bath-and-body",
                "fragrance",
                "hair-products",
                "makeup",
                "nails",
                "grooming",
                "skincare",
                "tools-and-brushes",
                "face-masks",
                "dinnerware",
                "furniture",
                "decor-home-accesories",
                "soft-furnishings-textiles",
                "storage-and-organisation",
                "laptop-cases-bag",
                "phone-cases",
                "cameras-and-accessories",
                "collectibles",
                "drawing-and-illustrations",
                "mixed-media",
                "paintings",
                "photography",
                "prints",
                "sculptures",
                "stickers",
                "books",
                "magazines",
                "cds-and-vinyl",
                "musical-instruments-and-dj",
                "cake-decor",
                "cards-invitations-gift-wrap",
                "decorations",
                "favours",
                "party-hats",
                "ball-sports",
                "camping-hiking",
                "cycling",
                "fitness",
                "golf",
                "skates-skateboards-scooters",
                "raquet-sports",
                "water-sports",
                "winter-sports",
                "action-figures-playsets",
                "building-sets-blocks",
                "cars-vehicles",
                "dolls-accessories",
                "learning-toys",
                "puzzles-games",
                "stuffed-animals",
                "trading-cards",
                "umbrella",
                "bundles"
              ],
              "enumTitles": [
                "Tops - T-shirts",
                "Tops - Jerseys",
                "Tops - Hoodies",
                "Tops - Sweatshirts",
                "Tops - Sweaters",
                "Tops - Cardigans",
                "Tops - Shirts",
                "Tops - Polo shirts",
                "Tops - Blouses",
                "Tops - Crop tops",
                "Tops - Tank tops and camis",
                "Tops - Corsets",
                "Tops - Bodysuits",
                "Tops - Other",
                "Bottoms - Jeans",
                "Bottoms - Sweatpants",
                "Bottoms - Pants",
                "Bottoms - Shorts",
                "Bottoms - Leggings",
                "Bottoms - Skirts",
                "Bottoms - Other",
                "Dresses - Casual dresses",
                "Dresses - Formal dresses",
                "Dresses - Going out dresses",
                "Dresses - Prom dresses",
                "Dresses - Summer dresses",
                "Dresses - Shift dresses",
                "Dresses - Shirt dresses",
                "Dresses - Wrap dresses",
                "Dresses - Babydoll dresses",
                "Dresses - Bodycon dresses",
                "Dresses - Work dresses",
                "Dresses - Wedding dresses",
                "Dresses - Other",
                "Dresses - Dresses",
                "Coats and jackets - Coats",
                "Coats and jackets - Jackets",
                "Coats and jackets - Vests",
                "Coats and jackets - Other",
                "Jumpsuits and rompers - Jumpsuits",
                "Jumpsuits and rompers - Rompers",
                "Jumpsuits and rompers - Overalls",
                "Jumpsuits and rompers - Other",
                "Suits - Suits",
                "Suits - Tailored jackets",
                "Suits - Tailored trousers",
                "Suits - Vests",
                "Suits - Tuxedos",
                "Suits - Other",
                "Footwear - Sneakers",
                "Footwear - Slides",
                "Footwear - Sandals",
                "Footwear - Flip flops",
                "Footwear - Slippers",
                "Footwear - Brogues",
                "Footwear - Oxfords",
                "Footwear - Loafers",
                "Footwear - Boots",
                "Footwear - Boat shoes",
                "Footwear - Espadrilles",
                "Footwear - Ballet shoes",
                "Footwear - Clogs",
                "Footwear - Pumps",
                "Footwear - Mules",
                "Footwear - Baby shoes",
                "Footwear - Other",
                "Accessories - Bags",
                "Accessories - Belts",
                "Accessories - Hats and caps",
                "Accessories - Gloves",
                "Accessories - Scarves and wraps",
                "Accessories - Sunglasses",
                "Accessories - Wallets and cardholders",
                "Accessories - Jewelry",
                "Accessories - Watches",
                "Accessories - Hair accessories",
                "Accessories - Other",
                "Sleepwear - Pajamas",
                "Sleepwear - Robes",
                "Sleepwear - Other",
                "Underwear - Bandeaus",
                "Underwear - Bras",
                "Underwear - Panties",
                "Underwear - Shapewear",
                "Underwear - Boxers and briefs",
                "Underwear - Undershirts",
                "Underwear - Socks",
                "Underwear - Tights",
                "Underwear - Other",
                "Swimwear - Bikini and tankini sets",
                "Swimwear - Bikini and tankini tops",
                "Swimwear - Bikini and tankini bottoms",
                "Swimwear - Swimsuits",
                "Swimwear - Swim briefs and shorts",
                "Swimwear - Cover ups",
                "Swimwear - Other",
                "Costume - Costume",
                "Onesies and sleepers - Onesies and sleepers",
                "Beauty - Bath and body",
                "Beauty - Fragrance",
                "Beauty - Haircare",
                "Beauty - Makeup",
                "Beauty - Nails",
                "Beauty - Grooming",
                "Beauty - Skincare",
                "Beauty - Tools and brushes",
                "Face masks and coverings - Face masks and coverings",
                "Home - Dinnerware",
                "Home - Furniture",
                "Home - Home accessories",
                "Home - Soft furnishings and textiles",
                "Home - Storage and organisation",
                "Tech accessories - Laptop bags and cases",
                "Tech accessories - Phone cases",
                "Cameras and film - Cameras and film",
                "Art - Collectibles",
                "Art - Drawings and illustrations",
                "Art - Mixed media",
                "Art - Paintings",
                "Art - Photography",
                "Art - Prints",
                "Art - Sculptures",
                "Art - Stickers",
                "Books and magazines - Books",
                "Books and magazines - Magazines",
                "Music - CDs and vinyl",
                "Music - Musical instruments",
                "Party supplies - Cake decorating",
                "Party supplies - Cards, invitations, gift wrap",
                "Party supplies - Decorations",
                "Party supplies - Party favors",
                "Party supplies - Party hats",
                "Sports equipment - Ball sports",
                "Sports equipment - Camping and hiking",
                "Sports equipment - Cycling",
                "Sports equipment - Fitness",
                "Sports equipment - Golf",
                "Sports equipment - Skates, skateboards and scooters",
                "Sports equipment - Racket sports",
                "Sports equipment - Water sports",
                "Sports equipment - Winter sports",
                "Toys - Action figures and playsets",
                "Toys - Building sets and blocks",
                "Toys - Cars and vehicles",
                "Toys - Dolls and accessories",
                "Toys - Learning toys",
                "Toys - Puzzles and games",
                "Toys - Stuffed animals",
                "Toys - Trading cards",
                "Umbrellas - Umbrellas",
                "Clothing bundles - Clothing bundles"
              ]
            }
          },
          "onSale": {
            "title": "On Sale Only",
            "type": "boolean",
            "description": "Only return listings whose price has been reduced.",
            "default": false
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}