Discover/Idealista API
live

Idealista APIidealista.it

Access Italian real estate listings from Idealista.it. Search properties for sale, rent, new construction, and mountain areas with full details and photos.

Endpoint health
verified 2h ago
get_property_photos
search_by_location_slug
search_properties_for_sale
search_mountain_properties
search_properties_for_rent
7/7 passing latest checkself-healing
Endpoints
7
Updated
21d ago

What is the Idealista API?

The Idealista.it API covers 7 endpoints for querying Italy's largest property portal, returning listings for sale, rent, new constructions, and mountain properties. The get_property_details endpoint delivers the full property record including price, photos array, features list, location text, and complete description. A location resolver endpoint (search_by_location_slug) converts plain city names into the slugs required by all search endpoints.

Try it
Page number for pagination.
Location slug in format 'city-province' (e.g., 'milano-milano', 'roma-roma', 'napoli-napoli'). Use search_by_location_slug to find valid slugs.
Maximum price filter in Euros.
Minimum price filter in Euros.
api.parse.bot/scraper/355fc7d9-12b3-4d7e-9a57-fcd5514d1f6f/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/355fc7d9-12b3-4d7e-9a57-fcd5514d1f6f/search_properties_for_sale?page=1&location=milano-milano&max_price=500000&min_price=100000' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace idealista-it-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Idealista.it Italy real estate SDK — search, filter, drill-down."""
from parse_apis.idealista_it_italy_api import (
    Idealista, LocationCategory, NotFound
)

client = Idealista()

# Resolve a city name to its location slug for use in search endpoints.
location = client.locations.search(query="Milano", limit=5).first()
print(f"Resolved: {location.label} (category={location.category}, count={location.count})")

# Search for sale properties in Milano, capped at 3 results.
for prop in client.propertysummaries.search_for_sale(location="milano-milano", max_price=400000, limit=3):
    print(f"[Sale] {prop.title} — {prop.price}, {prop.specs.size}")

# Drill into one listing's full details via the summary→detail nav op.
listing = client.propertysummaries.search_for_rent(location="milano-milano", limit=1).first()
if listing:
    detail = listing.detail()
    print(f"Detail: {detail.title}, features={len(detail.features)}, photos={len(detail.photos)}")

# Construct a PropertySummary by known ID and fetch its photos directly.
try:
    photo_set = client.propertysummary(id="99999999").photos()
    print(f"Photos: {len(photo_set.photos)}")
except NotFound as exc:
    print(f"Property not found: {exc}")

print("Exercised: locations.search / propertysummaries.search_for_sale / search_for_rent / detail / photos")
All endpoints · 7 totalmissing one? ·

Search for residential properties for sale on Idealista.it. Returns paginated listings with price, size, room count, and description snippets. Pagination is by page number; each page returns up to 30 listings. Use search_by_location_slug to resolve a city name to the required location slug.

Input
ParamTypeDescription
pageintegerPage number for pagination.
locationrequiredstringLocation slug in format 'city-province' (e.g., 'milano-milano', 'roma-roma', 'napoli-napoli'). Use search_by_location_slug to find valid slugs.
max_priceintegerMaximum price filter in Euros.
min_priceintegerMinimum price filter in Euros.
Response
{
  "type": "object",
  "fields": {
    "listings": "array of property listing objects with id, title, url, price, details, description_snippet, and thumbnail",
    "total_count_text": "string with the total count and location description (e.g., '15.290 case in vendita a Milano')"
  },
  "sample": {
    "data": {
      "listings": [
        {
          "id": "31167672",
          "url": "https://www.idealista.it/immobile/31167672/",
          "price": "650.000€",
          "title": "Trilocale in Piazzale Brescia s.n.c, Morgantini - Segesta, Milano",
          "details": {
            "size": "100 m²",
            "floor": "3º piano con ascensore",
            "rooms": "3 locali"
          },
          "thumbnail": "https://img4.idealista.it/blur/480_360_mq/0/id.pro.it.image.master/38/73/ea/646842718.jpg",
          "description_snippet": "In Palazzo Signorile con servizio di portineria ed ascensore..."
        }
      ],
      "total_count_text": "15.677 case in vendita a Milano"
    },
    "status": "success"
  }
}

About the Idealista API

What the API Returns

The search endpoints — search_properties_for_sale, search_properties_for_rent, search_new_construction, and search_mountain_properties — all return a consistent listing object shape: id, title, url, price, details, description_snippet, and thumbnail. Each response also includes total_count_text, a string like '15.290 case in vendita a Milano' that reflects the total result count for the query. Sale and rental searches support min_price / max_price filters in Euros; the rental endpoint treats price as monthly rent.

Location Resolution and Pagination

All search endpoints require a location parameter formatted as a city-province slug (e.g., milano-milano, cortina-d-ampezzo-belluno). Use search_by_location_slug first: pass a plain city name like 'Roma' and receive an items array where each entry includes label, url, location_id, category (one of Comune, Provincia, Area, Zona, Quartiere), and a listing count. Take the url field from a matching result and use it as the location input for search. Paginated search endpoints return up to 30 listings per page; use the integer page parameter to step through results.

Property Detail and Photo Endpoints

get_property_details accepts a numeric property_id sourced from any listing result and returns the full record: id, url, price, title, photos (array of image URL strings), features (array of strings), description (full text or null), and location_text. If you only need images, get_property_photos returns just the photos array for the same property_id, avoiding the overhead of the full detail payload.

Specialised Search Scopes

search_new_construction filters results to newly built properties (nuova costruzione) for a given location slug, using the same listing object format as the general sale search. search_mountain_properties targets alpine area slugs such as courmayeur-aosta or cortina-d-ampezzo-belluno, making it straightforward to scope queries to ski resort or mountain market segments without additional post-filtering.

Reliability & maintenanceVerified

The Idealista API is a managed, monitored endpoint for idealista.it — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when idealista.it changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official idealista.it API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
2h ago
Latest check
7/7 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Aggregate and compare property sale prices across Italian cities using search_properties_for_sale with min_price / max_price filters
  • Build a rental market tracker for Rome or Milan by paginating through search_properties_for_rent results and storing monthly rent values
  • Populate a new-development database by querying search_new_construction for multiple provinces and collecting listing IDs
  • Display full property pages in a third-party app by calling get_property_details for any listing ID to retrieve photos, features, and description
  • Monitor alpine real estate inventory by querying search_mountain_properties for specific resort locations like Cortina d'Ampezzo
  • Resolve user-typed city names to canonical Idealista location slugs using search_by_location_slug before constructing search queries
  • Fetch image galleries for property listings without loading the full detail record via get_property_photos
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Idealista.it offer an official developer API?+
Idealista does offer an official API, primarily intended for real estate professionals and agencies, accessible via their developer portal at idealista.com/labs. Access requires approval and is not publicly open. This Parse API provides programmatic access to Italian listing data without requiring that approval process.
What does `search_by_location_slug` return, and why is it needed?+
It returns an items array of location suggestions, each with a label, url, location_id, category (Comune, Provincia, Area, Zona, or Quartiere), and listing count. The search endpoints require a precise city-province slug format that is difficult to construct manually — this endpoint resolves plain Italian city names to valid slugs you can pass directly to location parameters.
Are commercial properties, offices, or garages covered?+
Not currently. The API covers residential sale listings, residential rentals, new construction, and mountain properties. You can fork it on Parse and revise to add endpoints targeting commercial, office, or garage categories.
How does pagination work, and is there a limit on pages retrieved?+
Search endpoints accept an integer page parameter and return up to 30 listings per page. The total_count_text field in each response tells you the total number of matching listings for the query, so you can calculate how many pages exist. There is no built-in cap on which page numbers you can request, though very high page numbers may return empty results if they exceed the total listing count.
Does `get_property_details` always return a full description?+
The description field returns a full text string when one is present on the listing, but it can be null if the seller has not provided a description. All other fields — price, title, photos, features, and location_text — are always returned when the property ID is valid. If you only need images, get_property_photos retrieves just the photos array for the same ID.
Page content last updated . Spec covers 7 endpoints from idealista.it.
Related APIs in Real EstateSee all →
idealista.com API
Access data from idealista.com.
immobiliare.it API
Search Italian property listings for sale or rent, browse real estate agencies, and explore price trends across Italian cities — all via immobiliare.it.
idealista.pt API
Search and filter property listings across Portugal by location, price, and size, then access detailed information about each property including its characteristics and pricing history. Monitor how property prices change over time to help you make informed decisions about buying or selling real estate.
casa.it API
Search and browse property listings from Casa.it, Italy's real estate marketplace. Retrieve listings by location, price, size, property type, and transaction type (sale or rent), and fetch full details for individual properties including descriptions, photos, features, and publisher information.
tecnocasa.it API
Search and browse properties listed on Tecnocasa.it — Italy's largest real estate franchising network. Retrieve detailed property information including specifications, photos, pricing, and energy data. Look up agency contact details and use location autocomplete to refine searches by province, region, or city across Italy.
casavo.it API
Search and browse property listings across Italy on Casavo.it, access detailed information including photos, locations, and property valuations. Find your next home or investment property by searching specific cities or exploring all available listings with comprehensive details.
imovirtual.com API
Search and browse real estate listings across Portugal, view detailed property information including prices and specifications, and discover new housing developments. Find your ideal home by accessing comprehensive market data all in one place.
propiedades.com API
Search and browse real estate listings from Mexico's Propiedades.com, view detailed property information including images and descriptions, and use location autocomplete to find homes in your desired area. Access comprehensive listing data to compare properties and make informed real estate decisions.