{
  "openapi": "3.0.1",
  "info": {
    "title": "Argenprop Scraper - Argentina & Uruguay Property Listings",
    "description": "Extract Argentina and Uruguay property listings from argenprop.com for sale, rent, and developments. Filter locations, prices, rooms, areas, features, services, and age, then export JSON, CSV, and Excel or connect via API and MCP for market research, lead generation, and investment analysis.",
    "version": "0.0",
    "x-build-id": "mSnzFfDRkkqtp8anZ"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/igolaizola~argenprop-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-igolaizola-argenprop-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/igolaizola~argenprop-scraper/runs": {
      "post": {
        "operationId": "runs-sync-igolaizola-argenprop-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/igolaizola~argenprop-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-igolaizola-argenprop-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": {
          "maxItems": {
            "title": "Maximum listings",
            "minimum": 0,
            "type": "integer",
            "description": "Maximum number of listings to save. Set to 0 to collect all available listings.",
            "default": 100
          },
          "location": {
            "title": "Location",
            "type": "string",
            "description": "City, neighborhood, province, or another place name to search. Buenos Aires is a realistic example and can be replaced with any place name.",
            "default": "Buenos Aires"
          },
          "locationType": {
            "title": "Location type",
            "enum": [
              "any",
              "neighborhood",
              "locality",
              "district",
              "region",
              "province",
              "country"
            ],
            "type": "string",
            "description": "Optional way to disambiguate a location name when suggestions include more than one level.",
            "default": "any"
          },
          "latitude": {
            "title": "Latitude",
            "minimum": -90,
            "maximum": 90,
            "type": "number",
            "description": "Optional centre latitude for a radius search. Use together with longitude."
          },
          "longitude": {
            "title": "Longitude",
            "minimum": -180,
            "maximum": 180,
            "type": "number",
            "description": "Optional centre longitude for a radius search. Use together with latitude."
          },
          "radiusKm": {
            "title": "Radius (km)",
            "minimum": 1,
            "maximum": 100,
            "type": "number",
            "description": "Search radius around the coordinates. Defaults to 10 km when coordinates are supplied.",
            "default": 10
          },
          "fetchDetails": {
            "title": "Fetch full listing details",
            "type": "boolean",
            "description": "Fetch additional property and contact information for each listing. This may make runs significantly slower.",
            "default": false
          },
          "searchType": {
            "title": "Listing category",
            "enum": [
              "properties",
              "developments"
            ],
            "type": "string",
            "description": "Choose whether to search individual properties or new developments.",
            "default": "properties"
          },
          "operations": {
            "title": "Operation types",
            "type": "array",
            "description": "Select one or more transaction types, or leave empty to include all available types.",
            "items": {
              "type": "string",
              "enum": [
                "sale",
                "rent",
                "temporaryRent"
              ],
              "enumTitles": [
                "For sale",
                "For rent",
                "Temporary rent"
              ]
            },
            "default": []
          },
          "propertyTypes": {
            "title": "Property types",
            "type": "array",
            "description": "Select the kinds of property to include.",
            "items": {
              "type": "string",
              "enum": [
                "apartment",
                "house",
                "ph",
                "land",
                "commercialPremises",
                "countryHouse",
                "warehouse",
                "parkingSpace",
                "office",
                "farm",
                "business",
                "hotel",
                "specialBusiness"
              ],
              "enumTitles": [
                "Apartment",
                "House",
                "PH",
                "Land",
                "Commercial premises",
                "Country house",
                "Warehouse",
                "Parking space",
                "Office",
                "Farm",
                "Business",
                "Hotel",
                "Special business"
              ]
            },
            "default": [
              "apartment"
            ]
          },
          "sortBy": {
            "title": "Sort by",
            "enum": [
              "relevance",
              "lowestPrice",
              "highestPrice",
              "newest"
            ],
            "type": "string",
            "description": "Order the returned listings.",
            "default": "relevance"
          },
          "bedrooms": {
            "title": "Bedrooms",
            "type": "array",
            "description": "Include listings with the selected bedroom counts.",
            "items": {
              "type": "string",
              "enum": [
                "1",
                "2",
                "3",
                "4",
                "5plus"
              ],
              "enumTitles": [
                "1 bedroom",
                "2 bedrooms",
                "3 bedrooms",
                "4 bedrooms",
                "5 or more bedrooms"
              ]
            },
            "default": []
          },
          "rooms": {
            "title": "Rooms",
            "type": "array",
            "description": "Include listings with the selected room counts.",
            "items": {
              "type": "string",
              "enum": [
                "studio",
                "2",
                "3",
                "4",
                "5plus"
              ],
              "enumTitles": [
                "Studio",
                "2 rooms",
                "3 rooms",
                "4 rooms",
                "5 or more rooms"
              ]
            },
            "default": []
          },
          "bathrooms": {
            "title": "Minimum bathrooms",
            "type": "array",
            "description": "Select one or more minimum bathroom options.",
            "items": {
              "type": "string",
              "enum": [
                "1plus",
                "2plus",
                "3plus",
                "4plus",
                "5plus"
              ],
              "enumTitles": [
                "1 or more",
                "2 or more",
                "3 or more",
                "4 or more",
                "5 or more"
              ]
            },
            "default": []
          },
          "parkingSpaces": {
            "title": "Parking spaces",
            "type": "array",
            "description": "Filter by parking availability.",
            "items": {
              "type": "string",
              "enum": [
                "none",
                "1plus",
                "2plus",
                "3plus",
                "4plus",
                "5plus"
              ],
              "enumTitles": [
                "No parking",
                "1 or more",
                "2 or more",
                "3 or more",
                "4 or more",
                "5 or more"
              ]
            },
            "default": []
          },
          "urbanizationTypes": {
            "title": "Urbanization types",
            "type": "array",
            "description": "Select the gated or country-community type.",
            "items": {
              "type": "string",
              "enum": [
                "gatedCommunity",
                "countryNeighborhood",
                "countryClub"
              ],
              "enumTitles": [
                "Gated community",
                "Country neighborhood",
                "Country club"
              ]
            },
            "default": []
          },
          "roomTypes": {
            "title": "Room features",
            "type": "array",
            "description": "Include listings with the selected room or outdoor-space types.",
            "items": {
              "type": "string",
              "enum": [
                "attic",
                "shopfrontHeight",
                "archive",
                "rooftop",
                "bathroom",
                "bar",
                "storageRoom",
                "garage",
                "kitchen",
                "dependency",
                "storage",
                "mezzanine",
                "openBackyard",
                "shed",
                "parkingGarage",
                "garden",
                "office",
                "patio",
                "frontSetback",
                "livingRoom",
                "basement",
                "mezzanineArea",
                "basementArea",
                "terrace",
                "land",
                "toilet",
                "changingRoom",
                "balcony",
                "anteKitchen",
                "anteRoom",
                "wineCellar",
                "kitchenDiningRoom",
                "diningRoom",
                "dailyDiningRoom",
                "bedroom",
                "study",
                "backGarden",
                "frontGarden",
                "laundryRoom",
                "livingDiningRoom",
                "living",
                "playroom",
                "barbecueArea",
                "suite",
                "dressingRoom",
                "desk",
                "hall"
              ],
              "enumTitles": [
                "Attic",
                "Shopfront height",
                "Archive",
                "Rooftop",
                "Bathroom",
                "Bar",
                "Storage room",
                "Garage",
                "Kitchen",
                "Dependency room",
                "Storage",
                "Mezzanine",
                "Open backyard",
                "Shed",
                "Parking garage",
                "Garden",
                "Office",
                "Patio",
                "Front setback",
                "Living room",
                "Basement",
                "Mezzanine area",
                "Basement area",
                "Terrace",
                "Land",
                "Toilet",
                "Changing room",
                "Balcony",
                "Ante-kitchen",
                "Ante-room",
                "Wine cellar",
                "Kitchen-dining room",
                "Dining room",
                "Daily dining room",
                "Bedroom",
                "Study",
                "Back garden",
                "Front garden",
                "Laundry room",
                "Living-dining room",
                "Living",
                "Playroom",
                "Barbecue area",
                "Suite",
                "Dressing room",
                "Desk",
                "Hall"
              ]
            },
            "default": []
          },
          "advertiserTypes": {
            "title": "Advertiser types",
            "type": "array",
            "description": "Include listings published by the selected advertiser types.",
            "items": {
              "type": "string",
              "enum": [
                "directOwner",
                "realEstateAgency"
              ],
              "enumTitles": [
                "Direct owner",
                "Real estate agency"
              ]
            },
            "default": []
          },
          "antiquity": {
            "title": "Property age",
            "type": "array",
            "description": "Include listings in the selected age ranges.",
            "items": {
              "type": "string",
              "enum": [
                "new",
                "upTo5Years",
                "upTo10Years",
                "upTo20Years",
                "upTo30Years",
                "over30Years"
              ],
              "enumTitles": [
                "Brand new",
                "Up to 5 years",
                "Up to 10 years",
                "Up to 20 years",
                "Up to 30 years",
                "More than 30 years"
              ]
            },
            "default": []
          },
          "currency": {
            "title": "Currency",
            "enum": [
              "",
              "ars",
              "usd"
            ],
            "type": "string",
            "description": "Currency used for the minimum and maximum price. Automatic uses the usual currency for the selected operation.",
            "default": ""
          },
          "minPrice": {
            "title": "Minimum price",
            "minimum": 0,
            "type": "integer",
            "description": "Lowest listing price to include. Use 0 for no minimum.",
            "default": 0
          },
          "maxPrice": {
            "title": "Maximum price",
            "minimum": 0,
            "type": "integer",
            "description": "Highest listing price to include. Use 0 for no maximum.",
            "default": 0
          },
          "priceAvailability": {
            "title": "Price availability",
            "enum": [
              "",
              "withPrice",
              "withoutPrice"
            ],
            "type": "string",
            "description": "Choose whether listings must show a price.",
            "default": ""
          },
          "mortgageEligible": {
            "title": "Mortgage eligible",
            "type": "boolean",
            "description": "Include only listings marked as eligible for mortgage financing.",
            "default": false
          },
          "acceptsTrade": {
            "title": "Accepts property exchange",
            "type": "boolean",
            "description": "Include only listings whose advertiser accepts a property exchange.",
            "default": false
          },
          "features": {
            "title": "Features",
            "type": "array",
            "description": "Select property features and amenities to require.",
            "items": {
              "type": "string",
              "enum": [
                "hotWater",
                "centralHotWater",
                "runningWater",
                "individualAirConditioning",
                "furnished",
                "elevator",
                "serviceElevator",
                "mainElevators",
                "cableTV",
                "boiler",
                "heating",
                "balancedFlueHeating",
                "waterHeater",
                "breakfastBar",
                "electricity",
                "exhaustFan",
                "bottledGas",
                "naturalGas",
                "fireplace",
                "grill",
                "radiantSlab",
                "kitchenFurniture",
                "radiators",
                "telephone",
                "hotWaterTank",
                "sewerConnection",
                "centralAirConditioning",
                "hotAir",
                "kitchenAppliances",
                "vehicleSpace",
                "wellWater",
                "storageBoxes",
                "gym",
                "generator",
                "playground",
                "laundry",
                "restaurant",
                "sauna",
                "trough",
                "treePlanting",
                "fencing",
                "cattleChutes",
                "corral",
                "stakedFence",
                "landscaping",
                "pits",
                "studFarm",
                "electricLight",
                "cattleAlleys",
                "windmill",
                "paddock",
                "housing",
                "wiring",
                "switchboard",
                "ductedFloor",
                "perimeterFence",
                "wateringPlaces",
                "scale",
                "pump",
                "motorPower",
                "industrialGas",
                "crane",
                "motors",
                "freightElevator",
                "gate",
                "fireTank",
                "waterTank",
                "petsAllowed",
                "rentalGuarantee",
                "individualRadiantFloor",
                "centralRadiantFloor",
                "mortgageEligible",
                "professionalUse",
                "pavement",
                "safe",
                "accessibility",
                "soccerField",
                "tennisCourt",
                "solarium",
                "hotTub",
                "swimmingPool"
              ],
              "enumTitles": [
                "Hot water",
                "Central hot water",
                "Running water",
                "Individual air conditioning",
                "Furnished",
                "Elevator",
                "Service elevator",
                "Main elevators",
                "Cable TV",
                "Boiler",
                "Heating",
                "Balanced-flue heating",
                "Water heater",
                "Breakfast bar",
                "Electricity",
                "Exhaust fan",
                "Bottled gas",
                "Natural gas",
                "Fireplace",
                "Grill",
                "Radiant slab",
                "Kitchen furniture",
                "Radiators",
                "Telephone",
                "Hot-water tank",
                "Sewer connection",
                "Central air conditioning",
                "Hot air",
                "Kitchen appliances",
                "Vehicle space",
                "Well water",
                "Storage boxes",
                "Gym",
                "Generator",
                "Playground",
                "Laundry",
                "Restaurant",
                "Sauna",
                "Trough",
                "Tree planting",
                "Fencing",
                "Cattle chutes",
                "Corral",
                "Staked fence",
                "Landscaping",
                "Pits",
                "Stud farm",
                "Electric light",
                "Cattle alleys",
                "Windmill",
                "Paddock",
                "Housing",
                "Wiring",
                "Switchboard",
                "Ducted floor",
                "Perimeter fence",
                "Watering places",
                "Scale",
                "Pump",
                "Motor power",
                "Industrial gas",
                "Crane",
                "Motors",
                "Freight elevator",
                "Gate",
                "Fire tank",
                "Water tank",
                "Pets allowed",
                "Rental guarantee",
                "Individual radiant floor",
                "Central radiant floor",
                "Mortgage eligible",
                "Professional use",
                "Pavement",
                "Safe",
                "Accessibility",
                "Soccer field",
                "Tennis court",
                "Solarium",
                "Hot tub",
                "Swimming pool"
              ]
            },
            "default": []
          },
          "services": {
            "title": "Services",
            "type": "array",
            "description": "Select services advertised as available with the listing.",
            "items": {
              "type": "string",
              "enum": [
                "kitchen",
                "municipalTax",
                "runningWater",
                "bar",
                "heating",
                "switchboard",
                "electricity",
                "bottledGas",
                "naturalGas",
                "internet",
                "laundry",
                "refrigeration",
                "rentalIncome",
                "security",
                "telephone",
                "cableTV",
                "towels",
                "bedLinens",
                "cleaning",
                "surveillance"
              ],
              "enumTitles": [
                "Kitchen",
                "Municipal tax (ABL)",
                "Running water",
                "Bar",
                "Heating",
                "Switchboard",
                "Electricity",
                "Bottled gas",
                "Natural gas",
                "Internet",
                "Laundry",
                "Refrigeration",
                "Rental income",
                "Security",
                "Telephone",
                "Cable TV",
                "Towels",
                "Bed linens",
                "Cleaning",
                "Surveillance"
              ]
            },
            "default": []
          },
          "minExpenses": {
            "title": "Minimum monthly expenses (ARS)",
            "minimum": 0,
            "type": "integer",
            "description": "Lowest monthly building expenses to include. Use 0 for no minimum.",
            "default": 0
          },
          "maxExpenses": {
            "title": "Maximum monthly expenses (ARS)",
            "minimum": 0,
            "type": "integer",
            "description": "Highest monthly building expenses to include. Use 0 for no maximum.",
            "default": 0
          },
          "minCoveredArea": {
            "title": "Minimum covered area (m²)",
            "minimum": 0,
            "type": "integer",
            "description": "Minimum indoor floor area. Use 0 for no minimum.",
            "default": 0
          },
          "maxCoveredArea": {
            "title": "Maximum covered area (m²)",
            "minimum": 0,
            "type": "integer",
            "description": "Maximum indoor floor area. Use 0 for no maximum.",
            "default": 0
          },
          "minTotalArea": {
            "title": "Minimum total area (m²)",
            "minimum": 0,
            "type": "integer",
            "description": "Minimum total property area. Use 0 for no minimum.",
            "default": 0
          },
          "maxTotalArea": {
            "title": "Maximum total area (m²)",
            "minimum": 0,
            "type": "integer",
            "description": "Maximum total property area. Use 0 for no maximum.",
            "default": 0
          },
          "street": {
            "title": "Street name",
            "type": "string",
            "description": "Optional street name, for example Santa Fe."
          },
          "streetNumber": {
            "title": "Street number",
            "type": "string",
            "description": "Optional street number, for example 3250. Use together with Street name."
          },
          "financing": {
            "title": "Development financing",
            "enum": [
              "",
              "withFinancing",
              "withoutFinancing"
            ],
            "type": "string",
            "description": "Filter new developments by financing availability.",
            "default": ""
          },
          "developmentStage": {
            "title": "Development stages",
            "type": "array",
            "description": "Include new developments at the selected construction stages.",
            "items": {
              "type": "string",
              "enum": [
                "preConstruction",
                "underConstruction",
                "completed"
              ],
              "enumTitles": [
                "Pre-construction",
                "Under construction",
                "Completed"
              ]
            },
            "default": []
          },
          "developmentBedrooms": {
            "title": "Bedrooms in new developments",
            "type": "array",
            "description": "Include developments offering units with the selected bedroom counts.",
            "items": {
              "type": "string",
              "enum": [
                "1",
                "2",
                "3",
                "4",
                "5+"
              ],
              "enumTitles": [
                "1 bedroom",
                "2 bedrooms",
                "3 bedrooms",
                "4 bedrooms",
                "5 or more bedrooms"
              ]
            },
            "default": []
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}