# Israel Sold Prices - Meida Nadlan (`swerve/nadlan-gov-deals`) Actor

Israel's official sold-property prices ENRICHED with year built, building floors, the same unit's prior sales and appreciation trend - plus full multi-year history. For fast recent prices with map coordinates instead, use: apify.com/swerve/nadlan-deals

- **URL**: https://apify.com/swerve/nadlan-gov-deals.md
- **Developed by:** [Swerve](https://apify.com/swerve) (community)
- **Categories:** Real estate
- **Stats:** 3 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $10.00 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## Nadlan.gov.il - Israel Sold Property Prices (Enriched)

Official sold-property transactions from **nadlan.gov.il** ("מידע נדל"ן"), the Israel Tax Authority's public deals registry - including the enriched per-deal fields that no other free source carries:

| Field | What it tells you |
|---|---|
| `yearBuilt` | Construction year of the building. For pre-sale new-builds the registry records the planned completion year, which can be in the future. |
| `floor`, `buildingFloors` | The unit's floor and the building height. Registry coverage varies: roughly half of rows carry `buildingFloors`. |
| `isFirstHand` | Contractor (first-hand) sale flag, when the registry marks it; null when unknown. |
| `prevDeals` | The SAME unit's previous recorded sales (dates + prices). The registry links a prior sale for roughly one deal in five. |
| `trend` | Annual appreciation vs the unit's previous sale (percent per year), present when `prevDeals` is. |

Plus the standard record: signing date, price, price per sqm, address, neighborhood, rooms, area, property type, and the land-registry identifiers (gush/helka/tat-helka).

### Input

- **cities** (required): one or more of 211 supported Israeli localities, in Hebrew.
- **dealDateRange**: last 3/6/12/36 months or all available history (default: 12 months).
- **Filters**: rooms (comma-separated; "5" means 5+), min/max price, include non-residential. Filters drop only deals that confirmed do not match - deals missing the filtered field are kept, so an active filter never silently zeroes your run.
- **maxItems**: optional cost cap. Leave empty to fetch everything that matches.

### How it works

Recorded sales never change, so the actor serves the deep history from a continuously-synced registry mirror (fast, complete, multi-year), then tops up the most recent months live from nadlan.gov.il to catch anything newer than the last sync. This makes long ranges (for example "the last 10 years of Tel Aviv") possible and fast, and means a run is never empty even when the live site is briefly unavailable.

The live top-up passes the site's bot-score gate with a real browser session through an Israeli residential proxy. If that gate is temporarily closed, the top-up is skipped and the run still returns complete history through the last sync (at most about a week old), with a clear note in the run status.

Results are pushed incrementally, so a long run keeps everything gathered so far even if it is stopped, and it banks results and exits cleanly before any run timeout.

#### Coverage note
Data spans multiple years for essentially every city. The one nuance: nadlan.gov.il's own live feed exposes only its most-recent transactions for the very densest cities (Tel Aviv, Jerusalem), but the mirror carries their full history, so your requested date range is served in full regardless.

### Output sample

```json
{
  "dealDate": "2026-05-14",
  "dealAmount": 2300000,
  "pricePerSqm": 36508,
  "address": "הקליר 4",
  "cityName": "תל אביב-יפו",
  "neighborhoodName": "הצפון הישן-החלק הצפוני",
  "rooms": 3,
  "floor": "שנייה",
  "buildingFloors": 4,
  "area": 63,
  "yearBuilt": 1940,
  "propertyType": "דירה בבית קומות",
  "isFirstHand": null,
  "gush": "6953",
  "helka": "57",
  "tatHelka": "4",
  "parcelNum": "6953-57-4",
  "prevDeals": [{ "dealDate": "2014-03-31", "dealAmount": 2300000 }],
  "trend": { "ratePct": 7.4, "years": 12 }
}
````

### Use cases

- Comparable-sales (comps) analysis and valuation models with building-age and floor context
- Tracking a specific unit's price history via `prevDeals`
- Detecting contractor (new-build) sales vs resales
- Feeding BI dashboards with the freshest official registry data per city

### Limits and notes

- Data reflects what the Tax Authority publishes; new deals typically appear weeks after signing.
- Prices are the full property value as published by nadlan.gov.il.
- Deals are deduplicated within a run by parcel + date + amount.
- Related actor: our [GovMap-based deals actor](https://apify.com/swerve/nadlan-deals) is cheaper and faster but without the enriched fields above.

# Actor input Schema

## `cities` (type: `array`):

One or more Israeli cities/towns to fetch sold transactions for, in Hebrew (for example "תל אביב-יפו", "ירושלים", "קריית שמונה"). 211 supported localities.

## `dealDateRange` (type: `string`):

How far back to fetch sold transactions (by signing date).

## `rooms` (type: `string`):

Filter by number of rooms, comma-separated. Example: "3,4" for 3- and 4-room apartments; "5" means 5 rooms or more. Deals whose room count is unknown are KEPT (they are not confirmed mismatches).

## `minPrice` (type: `integer`):

Only deals at or above this sale price, in shekels. Example: 1000000.

## `maxPrice` (type: `integer`):

Only deals at or below this sale price, in shekels. Example: 4000000.

## `includeNonResidential` (type: `boolean`):

By default only residential deals (apartments, houses, garden apartments etc) are returned. Turn on to also include offices, shops, land and other non-residential transactions.

## `maxItems` (type: `integer`):

OPTIONAL cost cap on how many transactions are returned and billed. Leave empty to fetch ALL matching transactions.

## `proxyConfig` (type: `object`):

nadlan.gov.il only answers Israeli residential IPs. Keep the default (Apify residential proxy, IL) unless you know what you are doing.

## `mintTries` (type: `integer`):

How many fresh browser sessions to try when acquiring the site's access token before giving up. Each attempt takes about a minute. Raise on flaky days.

## Actor input object example

```json
{
  "cities": [
    "קריית שמונה"
  ],
  "dealDateRange": "12m",
  "includeNonResidential": false,
  "proxyConfig": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "IL"
  },
  "mintTries": 25
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "cities": [
        "קריית שמונה"
    ],
    "proxyConfig": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ],
        "apifyProxyCountry": "IL"
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("swerve/nadlan-gov-deals").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "cities": ["קריית שמונה"],
    "proxyConfig": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "IL",
    },
}

# Run the Actor and wait for it to finish
run = client.actor("swerve/nadlan-gov-deals").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "cities": [
    "קריית שמונה"
  ],
  "proxyConfig": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "IL"
  }
}' |
apify call swerve/nadlan-gov-deals --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=swerve/nadlan-gov-deals",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Israel Sold Prices - Meida Nadlan",
        "description": "Israel's official sold-property prices ENRICHED with year built, building floors, the same unit's prior sales and appreciation trend - plus full multi-year history. For fast recent prices with map coordinates instead, use: apify.com/swerve/nadlan-deals",
        "version": "0.0",
        "x-build-id": "eqgrGPU1MgUl8dyAh"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/swerve~nadlan-gov-deals/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-swerve-nadlan-gov-deals",
                "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/swerve~nadlan-gov-deals/runs": {
            "post": {
                "operationId": "runs-sync-swerve-nadlan-gov-deals",
                "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/swerve~nadlan-gov-deals/run-sync": {
            "post": {
                "operationId": "run-sync-swerve-nadlan-gov-deals",
                "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": [
                    "cities"
                ],
                "properties": {
                    "cities": {
                        "title": "Cities",
                        "type": "array",
                        "description": "One or more Israeli cities/towns to fetch sold transactions for, in Hebrew (for example \"תל אביב-יפו\", \"ירושלים\", \"קריית שמונה\"). 211 supported localities.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "ירושלים",
                                "תל אביב-יפו",
                                "פתח תקווה",
                                "נתניה",
                                "באר שבע",
                                "ראשון לציון",
                                "אשקלון",
                                "רמת גן",
                                "חולון",
                                "אשדוד",
                                "בת ים",
                                "רחובות",
                                "חיפה",
                                "בית שמש",
                                "מודיעין-מכבים-רעות",
                                "בני ברק",
                                "הרצלייה",
                                "תל אביב -יפו",
                                "כפר סבא",
                                "רעננה",
                                "אילת",
                                "עפולה",
                                "נהרייה",
                                "קריית גת",
                                "לוד",
                                "גבעתיים",
                                "קריית אתא",
                                "הוד השרון",
                                "קריית ביאליק",
                                "חדרה",
                                "רמלה",
                                "קריית אונו",
                                "אופקים",
                                "נתיבות",
                                "באר יעקב",
                                "ראש העין",
                                "קריית מוצקין",
                                "רמת השרון",
                                "כרמיאל",
                                "טבריה",
                                "נס ציונה",
                                "עכו",
                                "קריית ים",
                                "שדרות",
                                "פרדס חנה-כרכור",
                                "יהוד-מונוסון",
                                "אור יהודה",
                                "דימונה",
                                "אלעד",
                                "נוף הגליל",
                                "קריית מלאכי",
                                "נשר",
                                "מעלה אדומים",
                                "כפר יונה",
                                "יבנה",
                                "אור עקיבא",
                                "מגדל העמק",
                                "גדרה",
                                "טירת כרמל",
                                "ערד",
                                "גני תקווה",
                                "יוקנעם עילית",
                                "מודיעין עילית",
                                "גן יבנה",
                                "שוהם",
                                "קדימה-צורן",
                                "מבשרת ציון",
                                "מזכרת בתיה",
                                "צפת",
                                "ביתר עילית",
                                "בית שאן",
                                "נצרת עילית",
                                "קציר-חריש",
                                "קריית שמונה",
                                "תל מונד",
                                "בנימינה-גבעת עדה",
                                "אזור",
                                "אבן יהודה",
                                "צור הדסה",
                                "קצרין",
                                "גבעת שמואל",
                                "זיכרון יעקב",
                                "נצרת",
                                "גבעת זאב",
                                "כוכב יאיר-צור יגאל",
                                "רכסים",
                                "ירוחם",
                                "קריית עקרון",
                                "קריית טבעון",
                                "אריאל",
                                "אפרת",
                                "יקנעם עילית",
                                "שלומי",
                                "כפר ורדים",
                                "בני עי\"\"ש",
                                "בני עי\"ש",
                                "זכרון יעקב",
                                "כוכב יאיר",
                                "ניר צבי",
                                "בית אריה",
                                "קרית טבעון",
                                "בית דגן",
                                "מיתר",
                                "הרצליה",
                                "פרדסייה",
                                "נהריה",
                                "סביון",
                                "כפר תבור",
                                "מעלות-תרשיחא",
                                "באקה אל-גרביה",
                                "פרדס חנה - כרכור",
                                "חבצלת השרון",
                                "יקנעם (מושבה)",
                                "קרית אתא",
                                "בן זכאי",
                                "בנימינה - גבעת עדה",
                                "שהם",
                                "קרית אונו",
                                "קדימה - צורן",
                                "בסמת טבעון",
                                "קרית מלאכי",
                                "גני יוחנן",
                                "דאלית אל-כרמל",
                                "קרית שמונה",
                                "עילוט",
                                "קרית מוצקין",
                                "אום אל-פחם",
                                "קרית גת",
                                "כוכב יאיר - צור יגאל",
                                "רהט",
                                "קרית ביאליק",
                                "קרית ים",
                                "קרית עקרון",
                                "צופית",
                                "בן שמן (מושב)",
                                "עתלית",
                                "רמת ישי",
                                "אבו גוש",
                                "אבו סנאן",
                                "אכסאל",
                                "בית ג'ן",
                                "מגאר",
                                "בועיינה-נוג'ידאת",
                                "בענה",
                                "ג'ולס",
                                "דבורייה",
                                "דיר אל-אסד",
                                "דייר חנא",
                                "חורפיש",
                                "טורעאן",
                                "יפיע",
                                "ירכא",
                                "כאבול",
                                "כפר יאסיף",
                                "כפר כנא",
                                "כפר מנדא",
                                "מג'ד אל-כרום",
                                "משהד",
                                "נחף",
                                "אעבלין",
                                "עיילבון",
                                "עראבה",
                                "עין מאהל",
                                "עספיא",
                                "פקיעין (בוקייעה)",
                                "פוריידיס",
                                "שעב",
                                "ג'סר א-זרקא",
                                "ריינה",
                                "ראמה",
                                "ג'לג'וליה",
                                "ג'ת",
                                "כפר קאסם",
                                "ערערה",
                                "קלנסווה",
                                "כפר קרע",
                                "עומר",
                                "כפר חב\"ד",
                                "שבלי - אום אל-גנם",
                                "טובא-זנגרייה",
                                "זרזיר",
                                "ביר אל-מכסור",
                                "תל שבע",
                                "כסיפה",
                                "לקיה",
                                "ערערה-בנגב",
                                "להבים",
                                "שגב-שלום",
                                "זמר",
                                "ג'דיידה-מכר",
                                "יאנוח-ג'ת",
                                "כסרא-סמיע",
                                "חורה",
                                "בת חפר",
                                "בסמ\"ה",
                                "מעלה עירון",
                                "חצור הגלילית",
                                "טירה",
                                "טייבה",
                                "בית אל",
                                "קריית ארבע",
                                "קרני שומרון",
                                "שערי תקווה",
                                "אלפי מנשה",
                                "אורנית",
                                "כוכב יעקב",
                                "בוקעאתא",
                                "מג'דל שמס",
                                "סח'נין",
                                "שפרעם",
                                "טמרה"
                            ],
                            "enumTitles": [
                                "ירושלים",
                                "תל אביב-יפו",
                                "פתח תקווה",
                                "נתניה",
                                "באר שבע",
                                "ראשון לציון",
                                "אשקלון",
                                "רמת גן",
                                "חולון",
                                "אשדוד",
                                "בת ים",
                                "רחובות",
                                "חיפה",
                                "בית שמש",
                                "מודיעין-מכבים-רעות",
                                "בני ברק",
                                "הרצלייה",
                                "תל אביב -יפו",
                                "כפר סבא",
                                "רעננה",
                                "אילת",
                                "עפולה",
                                "נהרייה",
                                "קריית גת",
                                "לוד",
                                "גבעתיים",
                                "קריית אתא",
                                "הוד השרון",
                                "קריית ביאליק",
                                "חדרה",
                                "רמלה",
                                "קריית אונו",
                                "אופקים",
                                "נתיבות",
                                "באר יעקב",
                                "ראש העין",
                                "קריית מוצקין",
                                "רמת השרון",
                                "כרמיאל",
                                "טבריה",
                                "נס ציונה",
                                "עכו",
                                "קריית ים",
                                "שדרות",
                                "פרדס חנה-כרכור",
                                "יהוד-מונוסון",
                                "אור יהודה",
                                "דימונה",
                                "אלעד",
                                "נוף הגליל",
                                "קריית מלאכי",
                                "נשר",
                                "מעלה אדומים",
                                "כפר יונה",
                                "יבנה",
                                "אור עקיבא",
                                "מגדל העמק",
                                "גדרה",
                                "טירת כרמל",
                                "ערד",
                                "גני תקווה",
                                "יוקנעם עילית",
                                "מודיעין עילית",
                                "גן יבנה",
                                "שוהם",
                                "קדימה-צורן",
                                "מבשרת ציון",
                                "מזכרת בתיה",
                                "צפת",
                                "ביתר עילית",
                                "בית שאן",
                                "נצרת עילית",
                                "קציר-חריש",
                                "קריית שמונה",
                                "תל מונד",
                                "בנימינה-גבעת עדה",
                                "אזור",
                                "אבן יהודה",
                                "צור הדסה",
                                "קצרין",
                                "גבעת שמואל",
                                "זיכרון יעקב",
                                "נצרת",
                                "גבעת זאב",
                                "כוכב יאיר-צור יגאל",
                                "רכסים",
                                "ירוחם",
                                "קריית עקרון",
                                "קריית טבעון",
                                "אריאל",
                                "אפרת",
                                "יקנעם עילית",
                                "שלומי",
                                "כפר ורדים",
                                "בני עי\"\"ש",
                                "בני עי\"ש",
                                "זכרון יעקב",
                                "כוכב יאיר",
                                "ניר צבי",
                                "בית אריה",
                                "קרית טבעון",
                                "בית דגן",
                                "מיתר",
                                "הרצליה",
                                "פרדסייה",
                                "נהריה",
                                "סביון",
                                "כפר תבור",
                                "מעלות-תרשיחא",
                                "באקה אל-גרביה",
                                "פרדס חנה - כרכור",
                                "חבצלת השרון",
                                "יקנעם (מושבה)",
                                "קרית אתא",
                                "בן זכאי",
                                "בנימינה - גבעת עדה",
                                "שהם",
                                "קרית אונו",
                                "קדימה - צורן",
                                "בסמת טבעון",
                                "קרית מלאכי",
                                "גני יוחנן",
                                "דאלית אל-כרמל",
                                "קרית שמונה",
                                "עילוט",
                                "קרית מוצקין",
                                "אום אל-פחם",
                                "קרית גת",
                                "כוכב יאיר - צור יגאל",
                                "רהט",
                                "קרית ביאליק",
                                "קרית ים",
                                "קרית עקרון",
                                "צופית",
                                "בן שמן (מושב)",
                                "עתלית",
                                "רמת ישי",
                                "אבו גוש",
                                "אבו סנאן",
                                "אכסאל",
                                "בית ג'ן",
                                "מגאר",
                                "בועיינה-נוג'ידאת",
                                "בענה",
                                "ג'ולס",
                                "דבורייה",
                                "דיר אל-אסד",
                                "דייר חנא",
                                "חורפיש",
                                "טורעאן",
                                "יפיע",
                                "ירכא",
                                "כאבול",
                                "כפר יאסיף",
                                "כפר כנא",
                                "כפר מנדא",
                                "מג'ד אל-כרום",
                                "משהד",
                                "נחף",
                                "אעבלין",
                                "עיילבון",
                                "עראבה",
                                "עין מאהל",
                                "עספיא",
                                "פקיעין (בוקייעה)",
                                "פוריידיס",
                                "שעב",
                                "ג'סר א-זרקא",
                                "ריינה",
                                "ראמה",
                                "ג'לג'וליה",
                                "ג'ת",
                                "כפר קאסם",
                                "ערערה",
                                "קלנסווה",
                                "כפר קרע",
                                "עומר",
                                "כפר חב\"ד",
                                "שבלי - אום אל-גנם",
                                "טובא-זנגרייה",
                                "זרזיר",
                                "ביר אל-מכסור",
                                "תל שבע",
                                "כסיפה",
                                "לקיה",
                                "ערערה-בנגב",
                                "להבים",
                                "שגב-שלום",
                                "זמר",
                                "ג'דיידה-מכר",
                                "יאנוח-ג'ת",
                                "כסרא-סמיע",
                                "חורה",
                                "בת חפר",
                                "בסמ\"ה",
                                "מעלה עירון",
                                "חצור הגלילית",
                                "טירה",
                                "טייבה",
                                "בית אל",
                                "קריית ארבע",
                                "קרני שומרון",
                                "שערי תקווה",
                                "אלפי מנשה",
                                "אורנית",
                                "כוכב יעקב",
                                "בוקעאתא",
                                "מג'דל שמס",
                                "סח'נין",
                                "שפרעם",
                                "טמרה"
                            ]
                        }
                    },
                    "dealDateRange": {
                        "title": "Deal date range",
                        "enum": [
                            "3m",
                            "6m",
                            "12m",
                            "36m",
                            "all"
                        ],
                        "type": "string",
                        "description": "How far back to fetch sold transactions (by signing date).",
                        "default": "12m"
                    },
                    "rooms": {
                        "title": "Rooms",
                        "type": "string",
                        "description": "Filter by number of rooms, comma-separated. Example: \"3,4\" for 3- and 4-room apartments; \"5\" means 5 rooms or more. Deals whose room count is unknown are KEPT (they are not confirmed mismatches)."
                    },
                    "minPrice": {
                        "title": "Minimum price (ILS)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only deals at or above this sale price, in shekels. Example: 1000000."
                    },
                    "maxPrice": {
                        "title": "Maximum price (ILS)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only deals at or below this sale price, in shekels. Example: 4000000."
                    },
                    "includeNonResidential": {
                        "title": "Include non-residential deals",
                        "type": "boolean",
                        "description": "By default only residential deals (apartments, houses, garden apartments etc) are returned. Turn on to also include offices, shops, land and other non-residential transactions.",
                        "default": false
                    },
                    "maxItems": {
                        "title": "Max results (cost cap)",
                        "minimum": 1,
                        "type": "integer",
                        "description": "OPTIONAL cost cap on how many transactions are returned and billed. Leave empty to fetch ALL matching transactions."
                    },
                    "proxyConfig": {
                        "title": "Proxy",
                        "type": "object",
                        "description": "nadlan.gov.il only answers Israeli residential IPs. Keep the default (Apify residential proxy, IL) unless you know what you are doing."
                    },
                    "mintTries": {
                        "title": "Token attempts",
                        "minimum": 1,
                        "maximum": 60,
                        "type": "integer",
                        "description": "How many fresh browser sessions to try when acquiring the site's access token before giving up. Each attempt takes about a minute. Raise on flaky days.",
                        "default": 25
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
