{
  "openapi": "3.0.1",
  "info": {
    "title": "SeLoger France Property Listings Scraper",
    "description": "[💰 $1.0 / 1K] Extract French property listings from SeLoger.com — sale prices, monthly rents, m², rooms, DPE energy ratings, photos, GPS coordinates and agency phone numbers. Filter by city, property type, viager, private seller or energy class. Export to JSON, CSV or Excel.",
    "version": "1.0",
    "x-build-id": "h2FGcyZz3Z13P5PEi"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/solidcode~seloger-com-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-solidcode-seloger-com-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/solidcode~seloger-com-scraper/runs": {
      "post": {
        "operationId": "runs-sync-solidcode-seloger-com-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/solidcode~seloger-com-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-solidcode-seloger-com-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": {
          "searchUrls": {
            "title": "Search URLs",
            "type": "array",
            "description": "Paste one or more Seloger.com search-results page URLs -- the page you land on after picking a city and setting filters on the site, with your filters visible in the address bar. Plain city pages without any filters applied (for example seloger.com/immobilier/achat/immo-paris-75/) can't be replayed here and are skipped with a note in the log; use the filters below for those searches instead. Overrides the individual filters below when provided.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "transactionType": {
            "title": "Buy or rent",
            "enum": [
              "Buy",
              "Rent"
            ],
            "type": "string",
            "description": "Whether to collect properties for sale or properties to rent.",
            "default": "Buy"
          },
          "city": {
            "title": "City",
            "enum": [
              "AD08FR31096",
              "AD08FR28808",
              "AD08FR4491",
              "AD08FR12535",
              "AD08FR2038",
              "AD08FR17221",
              "AD08FR13100",
              "AD08FR23619"
            ],
            "type": "string",
            "description": "Which French city to search. For any other town, paste a SeLoger search URL into Search URLs above instead.",
            "default": "AD08FR31096"
          },
          "propertyType": {
            "title": "Property type",
            "enum": [
              "",
              "Apartment",
              "House",
              "House,Apartment",
              "Building",
              "Parking",
              "Plot",
              "Office",
              "Trading",
              "Gastronomy_Hotel",
              "Storage_Production"
            ],
            "type": "string",
            "description": "Narrow the search to one kind of property. Leave on \"Any\" to collect everything on the market in that city.",
            "default": ""
          },
          "buildStatus": {
            "title": "New build, existing or life annuity",
            "enum": [
              "",
              "New_Build",
              "Resale",
              "Life_Annuity"
            ],
            "type": "string",
            "description": "Restrict to newly built property (neuf), existing property (ancien), or life-annuity sales (viager).",
            "default": ""
          },
          "sellerType": {
            "title": "Who is advertising",
            "enum": [
              "",
              "Private",
              "Professional"
            ],
            "type": "string",
            "description": "Collect only private-owner listings, or only listings placed by estate agencies, agents and notaries.",
            "default": ""
          },
          "priceMin": {
            "title": "Minimum price",
            "minimum": 0,
            "type": "integer",
            "description": "Lowest price to include, in euros. For rentals this is the monthly rent. Leave at 0 for no minimum.",
            "default": 0
          },
          "priceMax": {
            "title": "Maximum price",
            "minimum": 0,
            "type": "integer",
            "description": "Highest price to include, in euros. For rentals this is the monthly rent. Leave at 0 for no maximum.",
            "default": 0
          },
          "areaMin": {
            "title": "Minimum living area (m2)",
            "minimum": 0,
            "type": "integer",
            "description": "Smallest living area to include, in square metres. Leave at 0 for no minimum.",
            "default": 0
          },
          "areaMax": {
            "title": "Maximum living area (m2)",
            "minimum": 0,
            "type": "integer",
            "description": "Largest living area to include, in square metres. Leave at 0 for no maximum.",
            "default": 0
          },
          "landAreaMin": {
            "title": "Minimum plot size (m2)",
            "minimum": 0,
            "type": "integer",
            "description": "Smallest plot of land to include, in square metres. Only houses, plots and commercial sites carry a plot size. Leave at 0 for no minimum.",
            "default": 0
          },
          "roomsMin": {
            "title": "Minimum rooms (pieces)",
            "minimum": 0,
            "type": "integer",
            "description": "Fewest rooms to include. In France a studio counts as 1 room, a one-bedroom flat as 2. Leave at 0 for no minimum.",
            "default": 0
          },
          "bedroomsMin": {
            "title": "Minimum bedrooms",
            "minimum": 0,
            "type": "integer",
            "description": "Fewest bedrooms to include. Leave at 0 for no minimum.",
            "default": 0
          },
          "mustHave": {
            "title": "Must have",
            "enum": [
              "",
              "Balcony_Terrace",
              "Garden",
              "Parking_Garage",
              "Elevator"
            ],
            "type": "string",
            "description": "Only keep properties that have this feature.",
            "default": ""
          },
          "energyClass": {
            "title": "Energy rating (DPE)",
            "enum": [
              "",
              "A",
              "B",
              "C",
              "D",
              "E",
              "F",
              "G"
            ],
            "type": "string",
            "description": "Only keep properties with this French energy performance rating, A (best) to G (worst).",
            "default": ""
          },
          "keywords": {
            "title": "Words in the advert",
            "type": "string",
            "description": "Only keep adverts whose text contains these words, for example piscine or jardin. Separate several words with commas and no spaces - a property must contain all of them.",
            "default": ""
          },
          "sortBy": {
            "title": "Sort results by",
            "enum": [
              "Default",
              "DateDesc",
              "PriceAsc",
              "PriceDesc"
            ],
            "type": "string",
            "description": "The order results come back in. Only the first 9,990 results of any search are reachable, so on a big search this decides which ones you get.",
            "default": "Default"
          },
          "maxItems": {
            "title": "Max results",
            "minimum": 0,
            "type": "integer",
            "description": "Maximum listings per search URL (0 = collect everything each search returns). Seloger.com pages through at most 9,990 listings per search, so use several narrower searches to collect more.",
            "default": 100
          },
          "enrichDetails": {
            "title": "Include full details",
            "type": "boolean",
            "description": "Add 16 extra fields per listing. Adds one request per listing and is billed at the higher rate.",
            "default": false
          },
          "concurrency": {
            "title": "Concurrency",
            "minimum": 1,
            "maximum": 10,
            "type": "integer",
            "description": "How many requests to run in parallel. Lower this if you see failures.",
            "default": 8
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Proxy settings for the run.",
            "default": {
              "useApifyProxy": true
            }
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}