Discover/imobiliare API
live

imobiliare APIimobiliare.ro

Access real-time apartment rental listings from imobiliare.ro. Filter by city, zone, and price range. Returns prices, locations, room counts, and seller type.

This API takes change requests — .
Endpoint health
verified 6h ago
search_apartments_for_rent
search_locations
1/2 passing latest checkself-healing
Endpoints
2
Updated
18d ago

What is the imobiliare API?

The imobiliare.ro API provides access to rental apartment listings across Romania through 2 endpoints. The search_apartments_for_rent endpoint returns paginated results — up to 30 listings per page — including price, location, room count, seller type, and listing URL, with filters for city, zone, and EUR price range. A companion search_locations endpoint resolves valid city and zone slugs needed for filtering.

Try it
Location name to search for (e.g. 'Cluj', 'Bucuresti', 'Pipera').
api.parse.bot/scraper/209dc279-0def-4b60-a612-bc01a1fecaa6/<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/209dc279-0def-4b60-a612-bc01a1fecaa6/search_locations?query=Cluj' \
  -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 imobiliare-ro-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: Imobiliare.ro SDK - search apartments for rent in Romania."""
from parse_apis.imobiliare_ro_api import Imobiliare, LocationNotFound

client = Imobiliare()

# Discover locations matching "Cluj" to find valid city/zone slugs.
for loc in client.locations.search(query="Cluj", limit=3):
    print(loc.label, loc.listings_count)

# Search apartments for rent in Bucuresti with a price filter.
for apt in client.apartments.search(city="bucuresti", min_price="400", max_price="800", limit=5):
    print(apt.title, apt.price, apt.currency, apt.area)

# Drill into a specific zone search.
apt = client.apartments.search(city="cluj-napoca", zone="manastur", limit=1).first()
if apt:
    print(apt.listing_id, apt.title, apt.price, apt.seller_type)

# Handle location not found error.
try:
    for a in client.apartments.search(city="nonexistent-city-xyz", limit=1):
        print(a.title)
except LocationNotFound as exc:
    print(f"Location not found: {exc}")

print("exercised: locations.search / apartments.search (city, zone, price filter)")
All endpoints · 2 totalmissing one? ·

Search for locations (counties, cities, zones, streets) by name. Returns matching locations organized by type, each with a location_id and listings_count. Use this to discover valid city and zone slugs for the search_apartments_for_rent endpoint.

Input
ParamTypeDescription
queryrequiredstringLocation name to search for (e.g. 'Cluj', 'Bucuresti', 'Pipera').
Response
{
  "type": "object",
  "fields": {
    "zones": "array of zone location objects",
    "cities": "array of city location objects",
    "streets": "array of street location objects",
    "counties": "array of county location objects"
  },
  "sample": {
    "zones": [
      {
        "depth": 3,
        "label": "Manastur",
        "id_tree": "11115_11335_11365",
        "subtext": "Cluj-Napoca, Judetul Cluj",
        "parent_id": 11335,
        "location_id": 11365,
        "has_children": false,
        "parent_stack": [
          {
            "depth": 1,
            "label": "Judetul Cluj",
            "id_tree": "11115",
            "location_id": 11115
          },
          {
            "depth": 2,
            "label": "Cluj-Napoca",
            "id_tree": "11115_11335",
            "location_id": 11335
          }
        ],
        "listings_count": 1890
      }
    ],
    "cities": [
      {
        "depth": 2,
        "label": "Cluj-Napoca",
        "id_tree": "11115_11335",
        "subtext": "Judetul Cluj",
        "parent_id": 11115,
        "location_id": 11335,
        "has_children": true,
        "parent_stack": [
          {
            "depth": 1,
            "label": "Judetul Cluj",
            "id_tree": "11115",
            "location_id": 11115
          }
        ],
        "listings_count": 14570
      }
    ],
    "streets": [
      {
        "depth": 3,
        "label": "Strada Paris",
        "id_tree": "11115_11335_35032",
        "subtext": "Cluj-Napoca, Judetul Cluj",
        "parent_id": 11335,
        "location_id": 35032,
        "has_children": false,
        "parent_stack": [
          {
            "depth": 1,
            "label": "Judetul Cluj",
            "id_tree": "11115",
            "location_id": 11115
          },
          {
            "depth": 2,
            "label": "Cluj-Napoca",
            "id_tree": "11115_11335",
            "location_id": 11335
          }
        ],
        "listings_count": 886
      }
    ],
    "counties": [
      {
        "depth": 1,
        "label": "Judetul Cluj",
        "id_tree": "11115",
        "subtext": "",
        "parent_id": 0,
        "location_id": 11115,
        "has_children": true,
        "parent_stack": [],
        "listings_count": 21695
      }
    ]
  }
}

About the imobiliare API

Endpoints and Data Coverage

The API exposes two endpoints. search_locations accepts a query string such as 'Cluj' or 'Pipera' and returns matching location objects organized into four arrays: zones, cities, streets, and counties. Each object includes a location_id and a listings_count, making it the correct starting point for discovering valid slug values before querying listings.

Searching and Filtering Rentals

search_apartments_for_rent takes a required city slug (e.g. 'bucuresti', 'cluj-napoca', 'timisoara') and optional parameters: zone (neighborhood slug), min_price and max_price in EUR, and page for pagination. The response includes total_results, total_pages, results_on_page, and the current page number alongside an items array. Each item in items carries price, location details, room count, seller type, and a direct listing URL back to imobiliare.ro.

Pagination and Slug Discovery

Each page returns up to 30 listings. Use total_pages to iterate through all results for a given query. Because the city and zone parameters require exact URL slugs, always run search_locations first to confirm the correct slug — for example, 'manastur' for a Cluj neighborhood or 'floreasca' for a Bucharest zone. Passing an unrecognized slug will return zero results without an error.

Reliability & maintenanceVerified

The imobiliare API is a managed, monitored endpoint for imobiliare.ro — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when imobiliare.ro 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 imobiliare.ro 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
6h ago
Latest check
1/2 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
  • Build a rental price index by city and zone using the min_price/max_price filters and total_results counts.
  • Monitor new listings in a specific Bucharest neighborhood by polling search_apartments_for_rent with a zone slug.
  • Compare average rents across Romanian cities by iterating search_apartments_for_rent for multiple city slugs.
  • Populate a relocation tool with live rental options filtered by budget in EUR.
  • Resolve user-entered neighborhood names to valid zone slugs via search_locations before running a filtered search.
  • Track seller type distribution (agency vs. private owner) across listing results for market research.
  • Aggregate room count data from items to analyze studio vs. multi-room rental availability by city.
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 imobiliare.ro have an official developer API?+
imobiliare.ro does not publish a public developer API or documented REST interface for external developers.
What does the `search_locations` endpoint return, and why would I use it before searching listings?+
search_locations returns arrays of matching counties, cities, zones, and streets for a given query string, each with a location_id and listings_count. The search_apartments_for_rent endpoint requires exact city and zone URL slugs. Running search_locations first is the reliable way to confirm those slugs — for example, verifying that 'cluj-napoca' is the correct slug before passing it as the city parameter.
Does the API cover property listings for sale, or only rentals?+
Currently the API covers apartments for rent only, returned by search_apartments_for_rent. Sale listings, houses, commercial properties, and land are not included. You can fork this API on Parse and revise it to add an endpoint targeting those listing categories.
Are prices always returned in EUR, and what happens if a listing uses RON?+
The min_price and max_price filter parameters are denominated in EUR, consistent with how imobiliare.ro surfaces most rental prices. Listings that use RON on the source site may not match EUR-based price filters as expected, so results near the edges of a price range should be treated as approximate.
Can I retrieve contact details or phone numbers for individual landlords or agencies?+
No contact details, phone numbers, or email addresses are returned by either endpoint. The items array includes seller type and a listing URL, but direct contact information is not exposed. You can fork this API on Parse and revise it to add an endpoint that fetches individual listing detail pages where contact data may appear.
Page content last updated . Spec covers 2 endpoints from imobiliare.ro.
Related APIs in Real EstateSee all →
zillow.com API
Search for homes for sale, rent, or recently sold listings on Zillow while accessing detailed property information, Zestimates, agent profiles, and current mortgage rates all in one place. Streamline your real estate research by gathering comprehensive property details, agent information, and financing options without navigating multiple pages.
zoopla.co.uk API
Search for properties available for sale or rent, view detailed listing information, check sold house prices, and find local estate agents all in one place. Get access to live marketplace data to help you research properties, compare prices, and connect with agents on the Zoopla platform.
domain.com.au API
Search and compare property listings for sale, rent, or sold properties across Australia, view detailed property information and agent profiles, and explore suburb insights to make informed real estate decisions. Access comprehensive data on agents, neighborhoods, and properties all in one place.
funda.nl API
Search for property listings on Funda.nl, the largest Dutch real estate platform. Access prices, addresses, property details, and agent contact information across Dutch cities and neighbourhoods. Supports paginated browsing and bulk retrieval of listings by area.
loopnet.com API
Access LoopNet's commercial real estate data programmatically. Search listings by location, property type, and transaction type; retrieve full listing details including pricing and property facts; and find and profile commercial real estate brokers.
rightmove.co.uk API
Search for properties across the UK's largest property portal and retrieve detailed listings for homes for sale or to rent, including prices, descriptions, and key property information. Find your next home or investment opportunity by browsing available properties and getting comprehensive details on individual listings.
yad2.co.il API
Search for apartments and cars on Yad2's marketplace and access detailed listing information including photos, prices, and specifications. Instantly reveal seller contact information to connect directly with real estate agents and car dealers.
trulia.com API
Search real estate listings for properties available for sale, rent, or recently sold, and access detailed information like property photos, price history, nearby schools, and local amenities. Compare similar homes, calculate mortgage estimates, and make informed decisions with comprehensive property data all in one place.