{
  "openapi": "3.0.1",
  "info": {
    "title": "Bukowskis Auction Scraper",
    "description": "Scrape auction lots from Bukowskis.com: artist, title, estimate, live bid, hammer price, category, images and end date. No login or API key needed.",
    "version": "0.1",
    "x-build-id": "vYkrrMS5hjJsmcvuM"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/rastriq~bukowskis-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-rastriq-bukowskis-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/rastriq~bukowskis-scraper/runs": {
      "post": {
        "operationId": "runs-sync-rastriq-bukowskis-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/rastriq~bukowskis-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-rastriq-bukowskis-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": "Enter free-text searches, one per line — artist names, makers, models or object numbers. Each query is run against the Bukowskis lot index.<br><br>Examples: <code>Hans J. Wegner</code>, <code>Rolex Datejust</code>, <code>Märta Måås-Fjetterström</code>",
            "items": {
              "type": "string"
            }
          },
          "auctionIds": {
            "title": "🔨 Auction codes",
            "type": "array",
            "description": "Enter Bukowskis auction codes to scrape entire sales. <code>E</code> codes are online auctions, <code>F</code> codes are curated/specialist sales.<br><br>Examples: <code>E1387</code>, <code>F799</code>. You can find current codes at <a href='https://www.bukowskis.com/en/auctions' target='_blank'>bukowskis.com/en/auctions</a>.",
            "items": {
              "type": "string"
            }
          },
          "startUrls": {
            "title": "🔗 Start URLs",
            "type": "array",
            "description": "Paste Bukowskis URLs directly. Both lot index pages and single lot pages are accepted; the scraper detects which is which.<br><br><code>https://www.bukowskis.com/en/lots/category/18-art</code><br><code>https://www.bukowskis.com/en/auctions/F799/lots</code><br><code>https://www.bukowskis.com/en/lots/1657690-rolex-datejust-wristwatch-36-mm</code>",
            "items": {
              "type": "object",
              "required": [
                "url"
              ],
              "properties": {
                "url": {
                  "type": "string",
                  "title": "URL of a web page",
                  "format": "uri"
                }
              }
            }
          },
          "maxItems": {
            "title": "Max lots",
            "minimum": 0,
            "type": "integer",
            "description": "Maximum number of unique lots to extract across the whole run. Set to <code>0</code> to scrape everything that matches your filters.",
            "default": 0
          },
          "categoryIds": {
            "title": "Categories",
            "uniqueItems": true,
            "type": "array",
            "description": "Select one or more Bukowskis departments. Leave empty to include every category.",
            "items": {
              "type": "string",
              "enum": [
                "18",
                "334",
                "43",
                "44",
                "38",
                "12",
                "31",
                "35",
                "3",
                "20",
                "311",
                "328",
                "335",
                "22",
                "40",
                "1",
                "23"
              ],
              "enumTitles": [
                "Art",
                "Design",
                "Furniture",
                "Lighting",
                "Timepieces",
                "Jewellery",
                "Ceramics & Porcelain",
                "Carpets, Rugs & Textiles",
                "Glassware",
                "Silver",
                "Collectibles",
                "Vintage Fashion",
                "Asian Ceramics & Works of Art",
                "Books & Manuscripts",
                "Militaria",
                "Folk Art",
                "Miscellaneous"
              ]
            }
          },
          "cities": {
            "title": "Cities",
            "uniqueItems": true,
            "type": "array",
            "description": "Only include lots physically located in the selected Bukowskis salerooms. Leave empty to include all locations.",
            "items": {
              "type": "string",
              "enum": [
                "stockholm",
                "gothenburg",
                "malmo",
                "helsinki"
              ],
              "enumTitles": [
                "🇸🇪 Stockholm",
                "🇸🇪 Gothenburg",
                "🇸🇪 Malmö",
                "🇫🇮 Helsinki"
              ]
            }
          },
          "minEstimate": {
            "title": "Minimum estimate",
            "minimum": 0,
            "type": "integer",
            "description": "Skip lots whose published estimate is below this amount. The value is compared in the lot's own currency (SEK for Swedish lots, EUR for Finnish lots). Lots without a published estimate are always kept."
          },
          "maxEstimate": {
            "title": "Maximum estimate",
            "minimum": 0,
            "type": "integer",
            "description": "Skip lots whose published estimate is above this amount. Compared in the lot's own currency, same as the minimum."
          },
          "sortBy": {
            "title": "Sort order",
            "enum": [
              "ending",
              "recent",
              "high",
              "low",
              "highest",
              "lowest",
              "most",
              "fewest",
              "alphabetical"
            ],
            "type": "string",
            "description": "Controls the order Bukowskis returns lots in. Useful together with <b>Max lots</b> — for example, sort by <i>Highest estimate</i> and cap at 100 to get the top of the market only.",
            "default": "ending"
          },
          "scrapeLotDetails": {
            "title": "Visit each lot page",
            "type": "boolean",
            "description": "Fetch every lot's own page to add the full catalogue description, storage location, category path, bid count and 2000px images. Costs one extra request per lot, so a run takes noticeably longer.",
            "default": false
          },
          "includeBidHistory": {
            "title": "Include bid history",
            "type": "boolean",
            "description": "Add the anonymised bid ladder for each lot — bidder number, timestamp and amount. Bukowskis publishes bidders as sequence numbers only, so no personal data is collected. Automatically enables <b>Visit each lot page</b>.",
            "default": false
          },
          "language": {
            "title": "Catalogue language",
            "enum": [
              "en",
              "sv",
              "fi"
            ],
            "type": "string",
            "description": "Language of the catalogue text Bukowskis serves. Artist names, estimates and prices are identical across languages; only titles and descriptions change.",
            "default": "en"
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Bukowskis returns HTTP 403 to datacenter IPs. Residential proxies are strongly recommended and are the default.",
            "default": {
              "useApifyProxy": true,
              "apifyProxyGroups": [
                "RESIDENTIAL"
              ]
            }
          },
          "maxConcurrency": {
            "title": "Max concurrency",
            "minimum": 1,
            "maximum": 20,
            "type": "integer",
            "description": "Number of pages fetched in parallel. The scraper is additionally capped at 120 requests per minute out of courtesy to the source site.",
            "default": 5
          },
          "debugMode": {
            "title": "Debug logging",
            "type": "boolean",
            "description": "Print every seed URL, skipped lot and enqueued page. Use it when a run returns fewer results than you expect.",
            "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}