{
  "openapi": "3.0.1",
  "info": {
    "title": "Cettire Product Scraper",
    "description": "Scrape Cettire luxury fashion products: price, original price, discount %, stock, designer style code, images and per-size availability, localised for 67 markets. Search, brand, product URL or full-catalogue modes. No login or browser needed. Pay only for the results you get.",
    "version": "1.0",
    "x-build-id": "tS6PmYtY7znZSHm5n"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/axlymxp~cettire-product-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-axlymxp-cettire-product-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/axlymxp~cettire-product-scraper/runs": {
      "post": {
        "operationId": "runs-sync-axlymxp-cettire-product-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/axlymxp~cettire-product-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-axlymxp-cettire-product-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": {
          "searchQueries": {
            "title": "Search queries",
            "type": "array",
            "description": "Keyword searches, exactly as typed into Cettire's search box (e.g. \"gucci bag\", \"prada loafers\").",
            "items": {
              "type": "string"
            }
          },
          "brands": {
            "title": "Brands / designers",
            "type": "array",
            "description": "Exact designer names as shown on Cettire (e.g. \"Prada\", \"Saint Laurent\", \"Bottega Veneta\"). Each brand's complete product list is scraped (combined with the filters below).",
            "items": {
              "type": "string"
            }
          },
          "productUrls": {
            "title": "Product URLs",
            "type": "array",
            "description": "Cettire product URLs (https://www.cettire.com/products/<handle>, any country prefix) or bare handles. Returns full product detail, including per-size stock.",
            "items": {
              "type": "string"
            }
          },
          "fullCatalog": {
            "title": "Scrape the full catalogue",
            "type": "boolean",
            "description": "Crawl every brand on Cettire (~350,000 products). Combine with the filters below to narrow it (e.g. women's bags on sale). Large runs take a while; use maxItems to cap them.",
            "default": false
          },
          "department": {
            "title": "Department",
            "enum": [
              "",
              "women",
              "men",
              "kids",
              "homeware"
            ],
            "type": "string",
            "description": "Restrict to one department.",
            "default": ""
          },
          "category": {
            "title": "Category",
            "enum": [
              "",
              "clothing",
              "bags",
              "shoes",
              "accessories"
            ],
            "type": "string",
            "description": "Restrict to one top-level category.",
            "default": ""
          },
          "productType": {
            "title": "Product type",
            "type": "string",
            "description": "Optional exact product type, e.g. \"Shoulder Bags\", \"Sneakers\", \"Coats\"."
          },
          "onSaleOnly": {
            "title": "On sale only",
            "type": "boolean",
            "description": "Only products with a discount (price below the compare-at price).",
            "default": false
          },
          "inStockOnly": {
            "title": "In stock only",
            "type": "boolean",
            "description": "Skip products with zero inventory.",
            "default": false
          },
          "publishedWithinDays": {
            "title": "New arrivals within (days)",
            "minimum": 0,
            "type": "integer",
            "description": "Only products published in the last N days (0 = no limit). Sorting switches to Newest unless you set Sort by.",
            "default": 0
          },
          "sortBy": {
            "title": "Sort by",
            "enum": [
              "rank_score",
              "newest",
              "price_asc",
              "price_desc",
              "discount_desc"
            ],
            "type": "string",
            "description": "Result ordering. Affects which products you get when a cap applies.",
            "default": "rank_score"
          },
          "country": {
            "title": "Market (prices & availability)",
            "enum": [
              "US",
              "GB",
              "AU",
              "CA",
              "DE",
              "FR",
              "IT",
              "JP",
              "HK",
              "SG",
              "AE",
              "CH",
              "CN",
              "KR",
              "AR",
              "AT",
              "BE",
              "BG",
              "BH",
              "BR",
              "CL",
              "CO",
              "CR",
              "CY",
              "CZ",
              "DK",
              "EE",
              "EG",
              "ES",
              "FI",
              "GLOBAL",
              "GR",
              "HR",
              "HU",
              "ID",
              "IE",
              "IL",
              "IN",
              "IS",
              "KW",
              "LT",
              "LU",
              "LV",
              "MO",
              "MT",
              "MX",
              "MY",
              "NL",
              "NO",
              "NZ",
              "OM",
              "PE",
              "PH",
              "PL",
              "PT",
              "QA",
              "RO",
              "RS",
              "SA",
              "SE",
              "SI",
              "SK",
              "TH",
              "TW",
              "UY",
              "VN",
              "ZA"
            ],
            "type": "string",
            "description": "Which Cettire storefront to price products for. Prices, currency and availability are localised per market.",
            "default": "US"
          },
          "includeDetails": {
            "title": "Include product details",
            "type": "boolean",
            "description": "Add description, composition, made-in, barcode and per-size stock for every row (one extra request per product; billed as a separate event).",
            "default": false
          },
          "maxItemsPerQuery": {
            "title": "Max results per query / brand",
            "minimum": 0,
            "type": "integer",
            "description": "Cap for each search query and each listed brand (0 = no limit). Ignored for full-catalogue crawling; use Max results in total for that.",
            "default": 100
          },
          "maxItems": {
            "title": "Max results in total",
            "minimum": 0,
            "type": "integer",
            "description": "Stop the whole run after this many products (0 = no limit).",
            "default": 0
          },
          "proxyConfiguration": {
            "title": "Proxy (fallback only)",
            "type": "object",
            "description": "Cettire's API needs no proxy. It is used only if Cettire rate-limits the run's IP on very large crawls. The run then switches to these proxy sessions automatically.",
            "default": {
              "useApifyProxy": true
            }
          }
        }
      },
      "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
                  },
                  "PROXY_UNBLOCKER_UNITS": {
                    "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
                  },
                  "PROXY_UNBLOCKER_UNITS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}