{
  "openapi": "3.0.1",
  "info": {
    "title": "Portál Dražeb Czech Auction Scraper & Monitor",
    "description": "Scrape, enrich, and monitor public Czech auction listings from Portál Dražeb with prices, dates, locations, documents, images, and change tracking.",
    "version": "0.1",
    "x-build-id": "MObbNQsgweZ5LQzSZ"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/thescrapelab~portal-drazeb-auction-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-thescrapelab-portal-drazeb-auction-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/thescrapelab~portal-drazeb-auction-scraper/runs": {
      "post": {
        "operationId": "runs-sync-thescrapelab-portal-drazeb-auction-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/thescrapelab~portal-drazeb-auction-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-thescrapelab-portal-drazeb-auction-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": {
          "sourceViews": {
            "title": "Auction status",
            "type": "array",
            "description": "Choose one or more public listing states. Auctions found in several states are returned only once.",
            "items": {
              "type": "string",
              "enum": [
                "upcoming",
                "inProgress",
                "ended",
                "online",
                "preAuction"
              ],
              "enumTitles": [
                "Upcoming",
                "In progress",
                "Ended",
                "Online",
                "Pre-auction"
              ]
            },
            "default": [
              "upcoming"
            ]
          },
          "maxAuctions": {
            "title": "Results limit",
            "minimum": 1,
            "maximum": 1000,
            "type": "integer",
            "description": "Maximum unique auctions to return across all selected statuses. Higher limits can increase run time and result charges.",
            "default": 1
          },
          "categories": {
            "title": "Asset categories",
            "type": "array",
            "description": "Optional asset categories. Leave empty to include every category.",
            "items": {
              "type": "string",
              "enum": [
                "realEstate",
                "land",
                "buildingLand",
                "familyHouse",
                "recreationalProperty",
                "apartmentBuilding",
                "apartment",
                "officeOrNonResidential",
                "industrialBuilding",
                "agriculturalBuilding",
                "unfinishedBuilding",
                "housingCooperativeShare",
                "garage",
                "otherRealEstate",
                "movableAssets",
                "electronics",
                "appliances",
                "furniture",
                "autoMoto",
                "antiquesAndArt",
                "otherMovableAsset",
                "companies",
                "businessShares",
                "receivables"
              ],
              "enumTitles": [
                "Real estate",
                "Land",
                "Building land",
                "Family house",
                "Recreational property",
                "Apartment building",
                "Apartment",
                "Office or non-residential space",
                "Industrial building",
                "Agricultural building",
                "Unfinished building",
                "Housing cooperative share",
                "Garage",
                "Other real estate",
                "Movable assets",
                "Electronics",
                "Appliances",
                "Furniture",
                "Auto-moto",
                "Antiques and art",
                "Other movable asset",
                "Companies",
                "Business shares",
                "Receivables"
              ]
            },
            "default": []
          },
          "itemCounties": {
            "title": "Asset counties",
            "type": "array",
            "description": "Optional Czech county names for the auctioned asset location, for example Mladá Boleslav. Names are passed to the public source filter.",
            "items": {
              "type": "string"
            },
            "default": []
          },
          "auctioneerCounties": {
            "title": "Auction counties",
            "type": "array",
            "description": "Optional Czech county names for where the auction is held.",
            "items": {
              "type": "string"
            },
            "default": []
          },
          "startDateFrom": {
            "title": "Starts from",
            "pattern": "^\\d{4}-\\d{2}-\\d{2}(?:T\\d{2}:\\d{2}(?::\\d{2}(?:\\.\\d{1,9})?)?(?:Z|[+-]\\d{2}:\\d{2}))?$",
            "type": "string",
            "description": "Optional ISO 8601 date or date-time lower bound for auction start time."
          },
          "startDateTo": {
            "title": "Starts until",
            "pattern": "^\\d{4}-\\d{2}-\\d{2}(?:T\\d{2}:\\d{2}(?::\\d{2}(?:\\.\\d{1,9})?)?(?:Z|[+-]\\d{2}:\\d{2}))?$",
            "type": "string",
            "description": "Optional ISO 8601 date or date-time upper bound for auction start time."
          },
          "minPriceCzk": {
            "title": "Minimum starting price (CZK)",
            "minimum": 0,
            "maximum": 1000000000,
            "type": "integer",
            "description": "Optional minimum source item price in Czech koruna."
          },
          "maxPriceCzk": {
            "title": "Maximum starting price (CZK)",
            "minimum": 0,
            "maximum": 1000000000,
            "type": "integer",
            "description": "Optional maximum source item price in Czech koruna."
          },
          "sortOrder": {
            "title": "Sort by start time",
            "enum": [
              "startAsc",
              "startDesc"
            ],
            "type": "string",
            "description": "Choose whether earlier or later auction start times appear first.",
            "default": "startAsc"
          },
          "documentMode": {
            "title": "PDF content",
            "enum": [
              "links",
              "text"
            ],
            "type": "string",
            "description": "Choose whether to return public document links or also extract Czech text from selected PDF files.",
            "default": "links"
          },
          "maxPdfDocumentsPerAuction": {
            "title": "PDFs per auction",
            "minimum": 0,
            "maximum": 5,
            "type": "integer",
            "description": "Maximum PDFs to extract for each auction in text mode. Auction decrees are selected before expert reports and other documents, with newer documents first within each group.",
            "default": 2
          },
          "maxPdfDocumentsTotal": {
            "title": "PDFs per run",
            "minimum": 0,
            "maximum": 100,
            "type": "integer",
            "description": "Global PDF extraction limit for predictable run time and cost.",
            "default": 10
          },
          "outputMode": {
            "title": "Results to return",
            "enum": [
              "all",
              "newOnly",
              "newAndChanged"
            ],
            "type": "string",
            "description": "Return all current auctions, only first-seen auctions, or first-seen and changed auctions. Change-only modes require exclusive access to monitoring state.",
            "default": "all"
          },
          "monitoringKey": {
            "title": "Monitoring key",
            "pattern": "^[A-Za-z0-9][A-Za-z0-9._-]*$",
            "minLength": 1,
            "maxLength": 120,
            "type": "string",
            "description": "Optional stable namespace for repeat comparisons. Reuse a key only with the same filters. If omitted, a fingerprint of the filters is used; entries unseen for 180 days expire from comparison state."
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}