{
  "openapi": "3.0.1",
  "info": {
    "title": "Booking Hotel Search Review Scraper",
    "description": "Scrape Booking.com search and hotel detail rows with strict output caps. Max hotels is an upper limit, not a guaranteed count; output depends on rows Booking exposes on the loaded page.",
    "version": "0.0",
    "x-build-id": "MjKXfDNFQ3T3GgRSJ"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/techionik9993~booking-hotel-search-review-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-techionik9993-booking-hotel-search-review-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/techionik9993~booking-hotel-search-review-scraper/runs": {
      "post": {
        "operationId": "runs-sync-techionik9993-booking-hotel-search-review-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/techionik9993~booking-hotel-search-review-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-techionik9993-booking-hotel-search-review-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": "Booking.com search terms or destinations. Examples: London, Paris hotels, Barcelona airport.",
            "default": [
              "London"
            ],
            "items": {
              "type": "string"
            }
          },
          "hotelUrls": {
            "title": "Hotel URLs",
            "type": "array",
            "description": "Direct Booking.com hotel URLs to scrape hotel details and review summaries.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "checkIn": {
            "title": "Check-in date",
            "type": "string",
            "description": "Optional check-in date in YYYY-MM-DD format. Leave empty to use Booking.com defaults.",
            "default": ""
          },
          "checkOut": {
            "title": "Check-out date",
            "type": "string",
            "description": "Optional check-out date in YYYY-MM-DD format. Leave empty to use Booking.com defaults.",
            "default": ""
          },
          "adults": {
            "title": "Adults",
            "minimum": 1,
            "maximum": 30,
            "type": "integer",
            "description": "Number of adults for each search. Keep this aligned with the trip you want to compare.",
            "default": 2
          },
          "rooms": {
            "title": "Rooms",
            "minimum": 1,
            "maximum": 30,
            "type": "integer",
            "description": "Number of rooms for each search.",
            "default": 1
          },
          "children": {
            "title": "Children",
            "minimum": 0,
            "maximum": 30,
            "type": "integer",
            "description": "Number of children included in each search.",
            "default": 0
          },
          "childrenAges": {
            "title": "Children ages",
            "type": "array",
            "description": "Optional ages for each child. Leave empty if there are no children.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "currency": {
            "title": "Currency",
            "type": "string",
            "description": "Currency code used in Booking.com search URLs, for example USD, GBP, or EUR.",
            "default": "USD"
          },
          "language": {
            "title": "Language",
            "type": "string",
            "description": "Booking.com language path segment used when opening pages. The default uses English UK formatting.",
            "default": "en-gb"
          },
          "maxHotelsPerSearch": {
            "title": "Max hotels per search",
            "minimum": 50,
            "type": "integer",
            "description": "Maximum hotel rows to write for each search query. This is an upper cap, not a guaranteed count. The Actor extracts the hotel rows Booking exposes on the loaded search page. Minimum is 50 so browser startup costs stay fair and predictable.",
            "default": 50
          },
          "maxReviewRowsPerHotel": {
            "title": "Max review rows per hotel",
            "minimum": 0,
            "type": "integer",
            "description": "Maximum review rows to write for each hotel page when review snippets are available. Use 0 to skip review rows.",
            "default": 10
          },
          "monitorChanges": {
            "title": "Monitor changes since last run",
            "type": "boolean",
            "description": "Save snapshots in a named key-value store and compare hotel price, score, and review count across runs.",
            "default": false
          },
          "onlyChanges": {
            "title": "Output only the changes",
            "type": "boolean",
            "description": "When monitoring is enabled, output change events instead of normal hotel rows.",
            "default": false
          },
          "proxyMode": {
            "title": "Proxy mode",
            "enum": [
              "none",
              "auto",
              "datacenter",
              "residential"
            ],
            "type": "string",
            "description": "Use no proxy for the lowest cost. Choose Auto or proxy modes only if Booking.com blocks direct access.",
            "default": "none"
          },
          "proxyCountryCode": {
            "title": "Residential proxy country",
            "type": "string",
            "description": "Optional two-letter country code for residential proxy, for example US or GB. Used only when Proxy mode is Residential.",
            "default": ""
          },
          "includeReviewSnippets": {
            "title": "Include review snippets",
            "type": "boolean",
            "description": "Include review text rows where they can be collected from the hotel page. Turn off for smaller outputs.",
            "default": true
          },
          "maxRunMinutes": {
            "title": "Max run minutes",
            "minimum": 1,
            "maximum": 10,
            "type": "integer",
            "description": "Cost protection timeout for the whole run. The Actor stops early instead of waiting forever on blocked or slow Booking pages.",
            "default": 8
          },
          "maxSourceSeconds": {
            "title": "Max seconds per search or hotel URL",
            "minimum": 45,
            "maximum": 240,
            "type": "integer",
            "description": "Cost protection timeout per Booking search query or hotel URL. Lower values reduce runtime/proxy cost; higher values may help on slow pages.",
            "default": 150
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}