{
  "openapi": "3.0.1",
  "info": {
    "title": "Pararius Rentals Scraper — Netherlands apartments for rent",
    "description": "Scrape Pararius Netherlands rental listings by city, search URL, or listing URL. Returns rent, size, rooms, agent, energy label. Unblocker + Camoufox for Cloudflare. MCP-ready.",
    "version": "0.2",
    "x-build-id": "fhciwV5N4w05Rr7IN"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/khadinakbar~pararius-rentals-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-khadinakbar-pararius-rentals-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/khadinakbar~pararius-rentals-scraper/runs": {
      "post": {
        "operationId": "runs-sync-khadinakbar-pararius-rentals-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/khadinakbar~pararius-rentals-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-khadinakbar-pararius-rentals-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": {
          "startUrls": {
            "title": "Pararius search or listing URLs",
            "type": "array",
            "description": "Paste Pararius.com or Pararius.nl rental search or detail URLs. Search examples: https://www.pararius.com/apartments/amsterdam or https://www.pararius.nl/huurwoningen/rotterdam. Detail examples: /apartment-for-rent/... or /appartement-te-huur/.... Pagination is followed automatically up to maxPages. Do not paste non-Pararius URLs.",
            "items": {
              "type": "object",
              "required": [
                "url"
              ],
              "properties": {
                "url": {
                  "type": "string",
                  "title": "URL of a web page",
                  "format": "uri"
                }
              }
            }
          },
          "cities": {
            "title": "Cities",
            "type": "array",
            "description": "Dutch city names used when you do not already have a Pararius search URL. Examples: Amsterdam, Rotterdam, Utrecht, Den Haag, Eindhoven. The Actor builds /apartments/{city} (EN) or /huurwoningen/{city} (NL) and applies the filters below. Ignored for URL entries that are already complete searches.",
            "items": {
              "type": "string"
            }
          },
          "locale": {
            "title": "Pararius locale",
            "enum": [
              "en",
              "nl"
            ],
            "type": "string",
            "description": "Which Pararius host to use when building city searches. en → www.pararius.com/apartments, nl → www.pararius.nl/huurwoningen. Explicit Start URLs keep their own host. Default en.",
            "default": "en"
          },
          "propertyType": {
            "title": "Property type",
            "enum": [
              "",
              "apartment",
              "house",
              "studio",
              "room"
            ],
            "type": "string",
            "description": "Optional filter applied only to city-built searches. Leave empty for all types. apartment / house / studio / room map to Pararius path segments.",
            "default": ""
          },
          "minPrice": {
            "title": "Min rent (€ / month)",
            "minimum": 0,
            "type": "integer",
            "description": "Optional minimum monthly rent for city-built searches. Leave empty for no minimum. Combined with maxPrice into a Pararius price path segment."
          },
          "maxPrice": {
            "title": "Max rent (€ / month)",
            "minimum": 0,
            "type": "integer",
            "description": "Optional maximum monthly rent for city-built searches. Leave empty for no maximum."
          },
          "minBedrooms": {
            "title": "Min bedrooms",
            "minimum": 0,
            "maximum": 10,
            "type": "integer",
            "description": "Optional minimum bedrooms filter for city-built searches (Pararius N-bedrooms path). Leave empty for any."
          },
          "minSurface": {
            "title": "Min living area (m²)",
            "minimum": 0,
            "type": "integer",
            "description": "Optional minimum floor area for city-built searches (Pararius Nm2 path). Leave empty for any."
          },
          "interior": {
            "title": "Interior",
            "enum": [
              "",
              "furnished",
              "upholstered",
              "shell"
            ],
            "type": "string",
            "description": "Optional interior filter for city-built searches: furnished, upholstered, or shell (unfurnished).",
            "default": ""
          },
          "maxItems": {
            "title": "Maximum listings",
            "minimum": 1,
            "maximum": 500,
            "type": "integer",
            "description": "Hard cap on unique billed rental listings returned. Range 1–500; default 20. Stops discovery and detail visits once reached.",
            "default": 20
          },
          "maxPages": {
            "title": "Maximum search pages",
            "minimum": 1,
            "maximum": 40,
            "type": "integer",
            "description": "Maximum Pararius search result pages to crawl per start URL or city. Range 1–40; default 3. maxItems remains authoritative.",
            "default": 3
          },
          "fetchDetails": {
            "title": "Fetch listing detail pages",
            "type": "boolean",
            "description": "When true (default), visit each listing detail page for description, deposit, energy label, bedrooms, agent phone, and coordinates. When false, return search-card fields only (faster, fewer proxy requests).",
            "default": true
          },
          "includeDescription": {
            "title": "Include listing description",
            "type": "boolean",
            "description": "Include the public listing description text when detail pages are fetched. Set false to keep rows smaller. Descriptions may be copyright-protected — do not republish without permission.",
            "default": true
          },
          "requestDelayMillis": {
            "title": "Delay between requests (ms)",
            "minimum": 500,
            "maximum": 10000,
            "type": "integer",
            "description": "Polite delay between Pararius requests. Range 500–10000 ms; default 1200. Does not bypass Cloudflare — use proxy groups instead.",
            "default": 1200
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Pararius is Cloudflare-protected. Default is Apify UNBLOCKER used with Camoufox. Residential NL is optional; datacenter usually fails.",
            "default": {
              "useApifyProxy": true,
              "apifyProxyGroups": [
                "UNBLOCKER"
              ]
            }
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}