# Jerusalem Rental Apartment Listings via URL

**Use case:** 

Scrapes Jerusalem rental apartment listings from a Yad2 search URL, auto-paginating up to 3 pages within a 150-request budget. Verify the city code in the URL against a live Yad2 search before running at scale. Swap the path for /realestate/forsale to target listings for sale instead.

## Input

```json
{
  "start_urls": [
    {
      "url": "https://www.yad2.co.il/realestate/rent?topArea=2&area=1&city=3000"
    }
  ],
  "maxPagesPerSearch": 3,
  "maxRequestsPerCrawl": 150,
  "proxy": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "IL"
  }
}
```

## Output

```json
{
  "item_id": {
    "label": "ID",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "price": {
    "label": "Price (ILS)",
    "format": "number"
  },
  "rooms": {
    "label": "Rooms",
    "format": "number"
  },
  "square_meter": {
    "label": "Size (m²)",
    "format": "number"
  },
  "floor": {
    "label": "Floor",
    "format": "number"
  },
  "property_condition": {
    "label": "Condition",
    "format": "text"
  },
  "mediation": {
    "label": "Broker",
    "format": "boolean"
  },
  "parking": {
    "label": "Parking",
    "format": "boolean"
  },
  "elevator": {
    "label": "Elevator",
    "format": "boolean"
  },
  "safe_room": {
    "label": "Safe room",
    "format": "boolean"
  },
  "item_url": {
    "label": "Listing URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Yad2 Apartment Scraper](https://apify.com/parsebird/yad2-apartment-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parsebird/yad2-apartment-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/parsebird/yad2-apartment-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
