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.

Endpoint health
verified 4d ago
search_apartments_for_rent
search_locations
2/2 passing latest checkself-healing
Endpoints
2
Updated
1mo 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.

This call costs1 credit / call— charged only on success
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'
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
4d ago
Latest check
2/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/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. 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 →
m.olx.ro API
Search and retrieve structured real estate listings from OLX Romania, including apartments, houses, land, and other properties with detailed information. Access category IDs and browse available properties by type to find what you're looking for on Romania's popular classifieds platform.
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.
zapimoveis.com.br API
Search and filter real estate listings across Brazil on ZAP Imóveis — the country's largest property portal. Retrieve listings for sale or rent with detailed attributes including price, location, size, bedrooms, bathrooms, parking, and amenities. Supports location autocomplete, property type discovery, and full listing detail retrieval.
nekretnine.rs API
Search and browse real estate listings across Serbia's top property marketplace to find detailed information about available properties including prices, locations, and property features. Filter through thousands of listings to discover your ideal home or investment property with comprehensive property details and specifications.
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.
immoweb.be API
Search for available apartment and studio rentals across Brussels and instantly access comprehensive details like pricing, amenities, location, and property features for individual listings. Streamline your rental search by retrieving multiple listings at once to compare options efficiently across the Brussels-Capital Region.
imovelweb.com.br API
Search and browse detailed real estate listings on imovelweb.com.br by city, state, and neighborhood. Retrieve structured property data including pricing, size, room counts, features, and full listing descriptions — ready for analysis, comparison, or portfolio tracking.
idealista.it API
Search and retrieve property listings from Idealista.it, Italy's leading real estate platform. Access listings for sale, rent, and new construction across Italian cities, with full property details and photos.