{
  "openapi": "3.0.1",
  "info": {
    "title": "Hometogo.de Scraper",
    "description": "Scrape vacation rental listings from HomeToGo.de—including locations, prices, availability, and amenities. Ideal for travel platforms, market research, and competitor analysis. Fast, structured, and customizable extraction from Germany’s leading vacation rental search engine.",
    "version": "0.0",
    "x-build-id": "CpZekNjm8bi5iqhb3"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/lexis-solutions~hometogo-de-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-lexis-solutions-hometogo-de-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/lexis-solutions~hometogo-de-scraper/runs": {
      "post": {
        "operationId": "runs-sync-lexis-solutions-hometogo-de-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/lexis-solutions~hometogo-de-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-lexis-solutions-hometogo-de-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",
        "required": [
          "maxItems"
        ],
        "properties": {
          "startUrls": {
            "title": "Start URLs",
            "type": "array",
            "description": "URLs to start with.",
            "items": {
              "type": "object",
              "required": [
                "url"
              ],
              "properties": {
                "url": {
                  "type": "string",
                  "title": "URL of a web page",
                  "format": "uri"
                }
              }
            }
          },
          "maxItems": {
            "title": "Maximum number of items",
            "type": "integer",
            "description": "Maximum number of items that will be extracted.",
            "default": 10
          },
          "proxyConfiguration": {
            "title": "Proxy Configuration",
            "type": "object",
            "description": "Your proxy configuration from Apify",
            "default": {
              "useApifyProxy": false,
              "apifyProxyGroups": []
            }
          },
          "debugMode": {
            "title": "Debug Mode",
            "type": "boolean",
            "description": "Activate to see detailed logs",
            "default": false
          },
          "destination": {
            "title": "Query Destination",
            "type": "string",
            "description": "Query destination to search for"
          },
          "page": {
            "title": "Page",
            "minimum": 1,
            "type": "integer",
            "description": "Page number",
            "default": 1
          },
          "dateFrom": {
            "title": "Date From",
            "pattern": "^(\\d{4})-(0[1-9]|1[0-2])-(0[1-9]|[12]\\d|3[01])$",
            "type": "string",
            "description": "Start date in the format YYYY-MM-DD"
          },
          "dateTo": {
            "title": "Date To",
            "pattern": "^(\\d{4})-(0[1-9]|1[0-2])-(0[1-9]|[12]\\d|3[01])$",
            "type": "string",
            "description": "End date in the format YYYY-MM-DD"
          },
          "adults": {
            "title": "Adults",
            "minimum": 1,
            "maximum": 20,
            "type": "integer",
            "description": "Number of adults"
          },
          "children": {
            "title": "Children",
            "uniqueItems": false,
            "type": "array",
            "description": "Select children ages",
            "items": {
              "type": "string",
              "enum": [
                "0",
                "1",
                "2",
                "3",
                "4",
                "5",
                "6",
                "7",
                "8",
                "9",
                "10",
                "11",
                "12",
                "13",
                "14",
                "15",
                "16",
                "17"
              ],
              "enumTitles": [
                "Under 1",
                "1 year",
                "2 years",
                "3 years",
                "4 years",
                "5 years",
                "6 years",
                "7 years",
                "8 years",
                "9 years",
                "10 years",
                "11 years",
                "12 years",
                "13 years",
                "14 years",
                "15 years",
                "16 years",
                "17 years"
              ]
            }
          },
          "bedrooms": {
            "title": "Bedrooms",
            "minimum": 1,
            "maximum": 10,
            "type": "integer",
            "description": "Number of bedrooms"
          },
          "bathrooms": {
            "title": "Bathrooms",
            "minimum": 1,
            "maximum": 6,
            "type": "integer",
            "description": "Number of bathrooms"
          },
          "minPricePerNight": {
            "title": "Min Price Per Night",
            "minimum": 10,
            "maximum": 1000,
            "type": "integer",
            "description": "Minimum price per night"
          },
          "maxPricePerNight": {
            "title": "Max Price Per Night",
            "minimum": 10,
            "maximum": 1000,
            "type": "integer",
            "description": "Maximum price per night"
          },
          "petsAllowed": {
            "title": "Pets Allowed",
            "type": "boolean",
            "description": "Pets allowed"
          },
          "pool": {
            "title": "Pool",
            "type": "boolean",
            "description": "Pool"
          },
          "internet": {
            "title": "Internet",
            "type": "boolean",
            "description": "Internet"
          },
          "terrace": {
            "title": "Terrace",
            "type": "boolean",
            "description": "Terrace"
          },
          "airConditioning": {
            "title": "Air Conditioning",
            "type": "boolean",
            "description": "Air conditioning"
          },
          "garage": {
            "title": "Garage",
            "type": "boolean",
            "description": "Garage"
          },
          "kitchen": {
            "title": "Kitchen",
            "type": "boolean",
            "description": "Kitchen"
          },
          "garden": {
            "title": "Garden",
            "type": "boolean",
            "description": "Garden"
          },
          "tv": {
            "title": "TV",
            "type": "boolean",
            "description": "TV"
          },
          "dishwasher": {
            "title": "Dishwasher",
            "type": "boolean",
            "description": "Dishwasher"
          },
          "barbecue": {
            "title": "Barbecue",
            "type": "boolean",
            "description": "Barbecue"
          },
          "washingMachineAvailable": {
            "title": "Washing Machine Available",
            "type": "boolean",
            "description": "Washing machine available"
          },
          "smokingNotAllowed": {
            "title": "Smoking Not Allowed",
            "type": "boolean",
            "description": "Smoking not allowed"
          },
          "noDogs": {
            "title": "No Dogs",
            "type": "boolean",
            "description": "No dogs"
          },
          "whirlpool": {
            "title": "Whirlpool",
            "type": "boolean",
            "description": "Whirlpool"
          },
          "cot": {
            "title": "Cot",
            "type": "boolean",
            "description": "Cot"
          },
          "smokingAllowed": {
            "title": "Smoking Allowed",
            "type": "boolean",
            "description": "Smoking allowed"
          },
          "sauna": {
            "title": "Sauna",
            "type": "boolean",
            "description": "Sauna"
          },
          "microwave": {
            "title": "Microwave",
            "type": "boolean",
            "description": "Microwave"
          },
          "fireplace": {
            "title": "Fireplace",
            "type": "boolean",
            "description": "Fireplace"
          },
          "fishing": {
            "title": "Fishing",
            "type": "boolean",
            "description": "Fishing"
          },
          "detached": {
            "title": "Detached",
            "type": "boolean",
            "description": "Detached"
          },
          "accessible": {
            "title": "Accessible",
            "type": "boolean",
            "description": "Accessible"
          },
          "fenced": {
            "title": "Fenced",
            "type": "boolean",
            "description": "Fenced"
          },
          "holidayHouse": {
            "title": "Holiday House",
            "type": "boolean",
            "description": "Holiday house"
          },
          "holidayApartment": {
            "title": "Holiday Apartment",
            "type": "boolean",
            "description": "Holiday apartment"
          },
          "holidayPark": {
            "title": "Holiday Park",
            "type": "boolean",
            "description": "Holiday park"
          },
          "farm": {
            "title": "Farm",
            "type": "boolean",
            "description": "Farm"
          },
          "castle": {
            "title": "Castle",
            "type": "boolean",
            "description": "Castle"
          },
          "campingSuite": {
            "title": "Camping Suite",
            "type": "boolean",
            "description": "Camping suite"
          },
          "hotel": {
            "title": "Hotel",
            "type": "boolean",
            "description": "Hotel"
          },
          "pension": {
            "title": "Pension",
            "type": "boolean",
            "description": "Pension"
          },
          "bedAndBreakfast": {
            "title": "Bed & Breakfast",
            "type": "boolean",
            "description": "Bed and breakfast"
          },
          "otherAccommodation": {
            "title": "Other Accommodation",
            "type": "boolean",
            "description": "Other accommodation"
          },
          "boat": {
            "title": "Boat",
            "type": "boolean",
            "description": "Boat"
          },
          "dedicatedRoom": {
            "title": "Dedicated Room",
            "type": "boolean",
            "description": "Dedicated room"
          },
          "hostel": {
            "title": "Hostel",
            "type": "boolean",
            "description": "Hostel"
          },
          "sharedRoom": {
            "title": "Shared Room",
            "type": "boolean",
            "description": "Shared room"
          },
          "agriturismo": {
            "title": "Agriturismo",
            "type": "boolean",
            "description": "Agriturismo"
          },
          "alwaysInstantlyBookable": {
            "title": "Always Instantly Bookable",
            "type": "boolean",
            "description": "Always instantly bookable"
          },
          "rating": {
            "title": "Rating",
            "enum": [
              "5",
              "4"
            ],
            "type": "string",
            "description": "Rating"
          },
          "toWater": {
            "title": "To Water",
            "enum": [
              "1",
              "2",
              "3",
              "4"
            ],
            "type": "string",
            "description": "To water"
          },
          "toSki": {
            "title": "To Ski",
            "enum": [
              "1",
              "2",
              "3",
              "4",
              "5"
            ],
            "type": "string",
            "description": "To ski"
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}