Discover/OLX API
live

OLX APIm.olx.ro

Search and retrieve structured real estate listings from OLX.ro. Get price, area, rooms, location, photos, and more via two clean endpoints.

Endpoint health
verified 3d ago
get_category_id
search_real_estate
2/2 passing latest checkself-healing
Endpoints
2
Updated
24d ago

What is the OLX API?

The OLX Romania API covers 2 endpoints that let you query and paginate real estate listings from m.olx.ro, returning up to 1,000 listings per search with 11 fields per listing including price, currency, area, rooms, location, and photos. The search_real_estate endpoint accepts category path slugs and offset-based pagination, while get_category_id resolves a top-level slug like imobiliare to its internal OLX category identifier.

Try it
Number of items to return per page.
Pagination offset (number of items to skip).
Top-level category path/slug such as imobiliare or electronice-si-electrocasnice.
api.parse.bot/scraper/fedbcb5c-92db-48e1-8adb-9fec6ce76fd0/<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/fedbcb5c-92db-48e1-8adb-9fec6ce76fd0/search_real_estate?limit=5&offset=0&category_path=electronice-si-electrocasnice' \
  -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 m-olx-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.

from parse_apis.olx_romania_real_estate_api import OLX, Listing, Category

olx = OLX()

# Resolve a category slug to its internal ID
category = olx.categories.get(path="imobiliare")
print(category.category_id)

# List real estate listings
for listing in olx.listings.list(category_path="imobiliare"):
    print(listing.title, listing.price, listing.currency, listing.location.full)
All endpoints · 2 totalmissing one? ·

Search for real estate listings on OLX.ro. Returns paginated results with details for each listing including price, area, location, and description. Pagination is offset-based; advance by incrementing offset by limit. Total available listings capped at 1000 by OLX.

Input
ParamTypeDescription
limitintegerNumber of items to return per page.
offsetintegerPagination offset (number of items to skip).
category_pathstringTop-level category path/slug such as imobiliare or electronice-si-electrocasnice.
Response
{
  "type": "object",
  "fields": {
    "items": "array of listing objects with id, title, url, posting_date, price, currency, area, rooms, location, description, and photos",
    "limit": "integer number of items requested",
    "total": "integer total number of listings available",
    "offset": "integer current pagination offset"
  },
  "sample": {
    "data": {
      "items": [
        {
          "id": 304192608,
          "url": "https://www.olx.ro/d/oferta/bloc-cu-lift-soarelui-direct-proprietar-IDkAmoo.html",
          "area": "57 m2",
          "floor": "5",
          "price": 113900,
          "rooms": null,
          "title": "Bloc Cu Lift, Soarelui, Direct Proprietar",
          "photos": [
            "https://frankfurt.apollo.olxcdn.com/v1/files/mm9nhixjqxzi-RO/image"
          ],
          "currency": "EUR",
          "location": {
            "city": "Timisoara",
            "full": "Timisoara, Timis",
            "region": "Timis",
            "district": null
          },
          "description": "De vanzare, direct de la proprietar...",
          "price_label": "113 900 EUR",
          "posting_date": "2026-05-20T12:51:55+03:00",
          "property_type": null,
          "construction_year": "Dupa 2000",
          "compartmentalization": null
        }
      ],
      "limit": 5,
      "total": 1000,
      "offset": 0
    },
    "status": "success"
  }
}

About the OLX API

What the API Returns

The search_real_estate endpoint returns an array of listing objects, each containing id, title, url, posting_date, price, currency, area, rooms, location, description, and photos. Alongside the items array, the response includes limit, offset, and total so you can track pagination state accurately. OLX caps total accessible listings at 1,000 regardless of how many exist on the platform for a given query.

Filtering and Pagination

Pagination is offset-based. To advance through pages, increment offset by the value of limit. For example, with limit=20, successive requests use offset=0, offset=20, offset=40, and so on. The category_path parameter accepts top-level slugs such as imobiliare or electronice-si-electrocasnice. Only top-level slugs work — passing a subcategory path returns an upstream error.

Resolving Category IDs

The get_category_id endpoint accepts a single required path string and returns the integer category_id used internally by OLX. This is useful when you need to cross-reference category identifiers against other data or build category-aware tooling. As with search_real_estate, only top-level slugs are supported — subcategory paths are not currently handled.

Coverage Notes

The API targets the Romanian OLX platform (m.olx.ro) and returns listings in Romanian along with prices in the currency listed by the seller (typically RON or EUR). The posting_date field lets you filter fresh listings client-side, though the API itself does not expose a date-range filter parameter.

Reliability & maintenanceVerified

The OLX API is a managed, monitored endpoint for m.olx.ro — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when m.olx.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 m.olx.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
3d 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
  • Aggregate apartment and house listings by location across Romanian cities using the location and rooms fields.
  • Track asking price trends for Romanian real estate by collecting price and currency fields over time.
  • Build a property alert tool that polls search_real_estate and surfaces new listings by comparing posting_date values.
  • Populate a real estate comparison site with listing photos, descriptions, and area data from the photos, description, and area fields.
  • Resolve category slugs to internal IDs via get_category_id for use in category-driven analytics pipelines.
  • Monitor listing volume changes by checking the total field in paginated responses at regular intervals.
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 OLX Romania have an official developer API?+
OLX does not publish a public developer API for OLX.ro that is openly available for general use. This Parse API provides structured access to the listing data available on m.olx.ro.
Why are only 1,000 listings accessible per search?+
OLX limits the total results accessible per query to 1,000 entries. The total field in each response reflects the count of accessible listings, not necessarily all listings on the platform for that category. Once offset reaches 1,000, further pagination returns no additional items.
Can I filter listings by price range, number of rooms, or posting date?+
The search_real_estate endpoint accepts category_path, limit, and offset as inputs but does not expose server-side filters for price, rooms, or date. Those fields are returned in the response (price, rooms, posting_date) and can be filtered client-side after retrieval. You can fork this API on Parse and revise it to add server-side filter parameters if the source supports them.
Are subcategory paths supported in `category_path` or `get_category_id`?+
Only top-level slugs such as imobiliare are currently supported. Passing a subcategory path to either endpoint returns an upstream error. The API covers top-level category resolution and listing search within those categories. You can fork it on Parse and revise to add subcategory support if needed.
Does the API cover OLX listings outside Romania, such as OLX Poland or OLX Bulgaria?+
Not currently. The API targets m.olx.ro specifically and returns Romanian-market listings. You can fork it on Parse and revise it to point at another OLX country domain to add coverage for other markets.
Page content last updated . Spec covers 2 endpoints from m.olx.ro.
Related APIs in Real EstateSee all →
olx.ro API
Search OLX Romania listings and access detailed ad information including seller contact details. Get real-time access to product listings, pricing, and phone numbers for sellers across the platform.
olx.com.br API
Search and browse OLX Brazil real estate listings for properties available for sale or rent, with advanced filtering options to narrow down your search. Access comprehensive property details including descriptions, prices, locations, and other key information for each listing.
olx.pt API
Search and monitor real estate listings and business advertisements from OLX Portugal with advanced filtering and pagination options. Get detailed information about specific listings including prices, descriptions, and seller details to find exactly what you're looking for.
olx.ba API
Search and browse listings on OLX.ba across all categories. Retrieve listing names, prices, categories, and URLs, or drill into individual listings for detailed attributes such as location, address, area, floor, condition, and seller information. Includes dedicated support for apartment listings.
m.olx.pl API
Search and browse listings from OLX.pl across a wide range of categories including vehicles, electronics, real estate, fashion, and more. Access detailed offer information, price comparisons, seller details, and the latest postings — with support for keyword search and category filtering.
olx.in API
Search and browse OLX India listings across real estate and general products with powerful filtering by category and location. Get location suggestions, explore popular areas, and access detailed product information all in one place.
olx.ua API
Search and browse product listings on OLX.ua. Retrieve listings with pricing, descriptions, seller details, location information, and images across any category. Compare prices and explore current marketplace inventory with flexible keyword and category filters.
otodom.pl API
Search and browse real estate listings from Otodom.pl by property type, location, price, and area, then retrieve full listing details including descriptions and seller contact information. Filter results across different markets to find properties that match your specific criteria.