{
  "openapi": "3.0.1",
  "info": {
    "title": "Vinted Scraper — Second-Hand Fashion Listings, Prices & Sellers",
    "description": "Scrape Vinted listings via the catalog search API — title, brand, size, condition, price, buyer-protection total, favourites, views, seller and photos. Paste any Vinted catalog, member/closet, or item URL, or search by keyword + filters across any country domain. JSON/CSV out.",
    "version": "0.0",
    "x-build-id": "PXxnKkfIYhLbLmUwZ"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/memo23~apify-vinted-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-memo23-apify-vinted-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/memo23~apify-vinted-scraper/runs": {
      "post": {
        "operationId": "runs-sync-memo23-apify-vinted-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/memo23~apify-vinted-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-memo23-apify-vinted-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": {
          "startUrls": {
            "title": "Vinted URLs",
            "type": "array",
            "description": "Vinted URLs to scrape. Three shapes are auto-classified: (1) catalog/search pages like `https://www.vinted.com/catalog?search_text=nike&brand_ids[]=53` — the filters in the query string are mapped to the API and paginated; (2) member/closet pages like `https://www.vinted.com/member/12345-someseller` — the seller's whole wardrobe is paginated; (3) single item pages like `https://www.vinted.com/items/9439503568-nike-hoodie` — best-effort item row. The domain of each URL (vinted.com, vinted.fr, …) is respected automatically.",
            "items": {
              "type": "string"
            }
          },
          "searchText": {
            "title": "Search keyword",
            "type": "string",
            "description": "Free-text keyword to search when no URLs are provided above, e.g. `nike`, `carhartt jacket`, `levis 501`. Combined with the filter fields below and run against the domain selected in `domain`."
          },
          "domain": {
            "title": "Country domain",
            "enum": [
              "vinted.com",
              "vinted.co.uk",
              "vinted.fr",
              "vinted.de",
              "vinted.es",
              "vinted.it",
              "vinted.nl",
              "vinted.be",
              "vinted.pl",
              "vinted.cz",
              "vinted.sk",
              "vinted.at",
              "vinted.lt",
              "vinted.lu",
              "vinted.pt",
              "vinted.se",
              "vinted.ro",
              "vinted.hu",
              "vinted.gr",
              "vinted.fi",
              "vinted.dk",
              "vinted.ie"
            ],
            "type": "string",
            "description": "Vinted country domain to scrape. Vinted partitions its catalog by domain — an item on vinted.com does not exist on vinted.fr — and the access token is bootstrapped from this same domain. Applies to keyword search and to seed URLs that do not already carry a Vinted domain. Default vinted.com.",
            "default": "vinted.com"
          },
          "brandIds": {
            "title": "Brand IDs",
            "type": "array",
            "description": "Restrict the keyword search to these Vinted brand IDs (numeric). Filter by a brand on Vinted and copy the `brand_ids[]` value from the catalog URL, e.g. `53` for Nike. Multiple IDs are OR-ed.",
            "items": {
              "type": "string"
            }
          },
          "catalogIds": {
            "title": "Catalog (category) IDs",
            "type": "array",
            "description": "Restrict the keyword search to these Vinted catalog/category IDs (numeric). Read the `catalog[]` value from a filtered catalog URL, e.g. `5` for Women, `79` for Men. Multiple IDs are OR-ed.",
            "items": {
              "type": "string"
            }
          },
          "sizeIds": {
            "title": "Size IDs",
            "type": "array",
            "description": "Restrict the keyword search to these Vinted size IDs (numeric). Read `size_ids[]` from a filtered catalog URL. Multiple IDs are OR-ed.",
            "items": {
              "type": "string"
            }
          },
          "statusIds": {
            "title": "Condition IDs",
            "type": "array",
            "description": "Restrict the keyword search to these Vinted condition/status IDs (numeric), e.g. new-with-tags vs good. Read `status[]` from a filtered catalog URL. Multiple IDs are OR-ed.",
            "items": {
              "type": "string"
            }
          },
          "priceFrom": {
            "title": "Minimum price",
            "minimum": 0,
            "type": "integer",
            "description": "Minimum price in the domain's currency. Applied to the keyword search only. Leave empty for no lower bound."
          },
          "priceTo": {
            "title": "Maximum price",
            "minimum": 0,
            "type": "integer",
            "description": "Maximum price in the domain's currency. Applied to the keyword search only. Leave empty for no upper bound."
          },
          "order": {
            "title": "Sort order",
            "enum": [
              "relevance",
              "newest_first",
              "price_low_to_high",
              "price_high_to_low"
            ],
            "type": "string",
            "description": "Sort order for the keyword search. `relevance` (default), `newest_first`, `price_low_to_high`, or `price_high_to_low`.",
            "default": "relevance"
          },
          "maxItems": {
            "title": "Maximum items to scrape",
            "minimum": 1,
            "type": "integer",
            "description": "Hard cap on the number of listings collected across all URLs and searches. Use this to control billing on broad searches.",
            "default": 1000
          },
          "maxConcurrency": {
            "title": "Max concurrency",
            "minimum": 1,
            "type": "integer",
            "description": "Maximum number of API pages processed in parallel.",
            "default": 10
          },
          "proxy": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Proxy settings. Vinted's catalog API shows low anti-bot friction, but the actor ships with a built-in residential route for scale. Provide your own proxy here to override it; leave default to use the built-in residential routing."
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}