Discover/inmuebles24.com API
live

inmuebles24.com APIwww.inmuebles24.com

Search Mexican property listings from inmuebles24.com. Filter by location, property type, and operation. Returns price, size, bedrooms, and more.

Endpoints
1
Updated
3mo ago
Try it
Starting page number (1-based)
Location slug for search (e.g., 'ciudad-de-mexico', 'guadalajara', 'monterrey', 'puebla')
Maximum number of pages to fetch
Operation type: 'renta' (rent), 'venta' (sale), or 'temporal' (temporary)
Property type slug: 'departamentos', 'casas', 'terrenos', 'oficinas', 'locales-comerciales', 'inmuebles'
api.parse.bot/scraper/1f9c00cd-0e91-4ffa-b270-798554cb52ac/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/1f9c00cd-0e91-4ffa-b270-798554cb52ac/search_listings?page=1&query=ciudad-de-mexico&max_pages=1&operation=renta&property_type=departamentos' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 1 totalclick to expand

Search for real estate listings by location, property type, and operation. Returns structured listing data including price, features, location, and URLs. Each page contains approximately 30 listings.

Input
ParamTypeDescription
pageintegerStarting page number (1-based)
querystringLocation slug for search (e.g., 'ciudad-de-mexico', 'guadalajara', 'monterrey', 'puebla')
max_pagesintegerMaximum number of pages to fetch
operationstringOperation type: 'renta' (rent), 'venta' (sale), or 'temporal' (temporary)
property_typestringProperty type slug: 'departamentos', 'casas', 'terrenos', 'oficinas', 'locales-comerciales', 'inmuebles'
Response
{
  "type": "object",
  "fields": {
    "page": "integer - starting page number",
    "count": "integer - total listings returned in this response",
    "listings": "array of listing objects with id, title, price, currency, price_text, maintenance, location, bedrooms, bathrooms, size_m2, parking, description, url, posting_type",
    "pages_fetched": "integer - number of pages fetched",
    "search_params": "object with query, property_type, operation used for the search",
    "total_available": "integer or null - total listings available on site for this search"
  },
  "sample": {
    "data": {
      "page": 1,
      "count": 30,
      "listings": [
        {
          "id": "141933064",
          "url": "https://www.inmuebles24.com/propiedades/desarrollo/ememvein-ri-a-bosques-renta-y-estrena-nuestros-depas.-loft-1-141933064.html?n_src=Listado&n_pg=1&n_pos=1",
          "price": 23500,
          "title": "Renta sin Aval en 24 horas",
          "parking": null,
          "size_m2": 57,
          "bedrooms": 1,
          "currency": "MXN",
          "location": "Santa Fe Cuajimalpa, Cuajimalpa de Morelos",
          "bathrooms": null,
          "price_text": "Departamentos desdeMN 23,500",
          "description": "Renta sin Aval en 24 horas. Proceso ágil y flexible...",
          "maintenance": null,
          "posting_type": "DEVELOPMENT"
        }
      ],
      "pages_fetched": 1,
      "search_params": {
        "query": "ciudad-de-mexico",
        "operation": "renta",
        "property_type": "departamentos"
      },
      "total_available": null
    },
    "status": "success"
  }
}

About the inmuebles24.com API

The Inmuebles24 API provides access to Mexico's leading property portal through a single search_listings endpoint that returns up to 30 structured listing objects per page, covering 12 response fields including price, currency, size in square meters, bedrooms, bathrooms, and parking. You can filter searches by city slug, property type, and operation type (rent, sale, or temporary), then paginate across the full result set using the max_pages parameter.

What the API Returns

The search_listings endpoint returns an array of listing objects, each containing id, title, price, currency, price_text, maintenance, location, bedrooms, bathrooms, size_m2, and parking. The response also includes count (listings returned in this batch), total_available (total matching listings on the site, when available), pages_fetched, and a search_params object echoing the query, property_type, and operation values used.

Filtering and Pagination

The query parameter accepts location slugs such as ciudad-de-mexico, guadalajara, monterrey, and puebla. The operation parameter distinguishes between venta (sale), renta (rent), and temporal (short-term/temporary). The property_type parameter accepts slugs including departamentos, casas, terrenos, oficinas, locales-comerciales, and inmuebles. Results are paginated at approximately 30 listings per page; use page to set the starting page and max_pages to control how many pages are fetched in a single call.

Data Shape and Coverage

Prices are returned as both a numeric price value and a formatted price_text string, alongside currency to distinguish MXN from USD listings. The maintenance field carries monthly HOA or maintenance fee data where listed. Location is returned as a text field from the listing itself rather than structured coordinates. Not all fields are guaranteed to be populated on every listing — bedrooms, bathrooms, and size_m2 depend on what the original listing author provided.

Common use cases
  • Build a rental price index for Mexican cities using price, currency, and location across multiple pages of renta results.
  • Compare apartment availability in CDMX vs. Guadalajara by running parallel departamentos searches with different query slugs.
  • Track new venta listings for a specific city over time by storing id fields and diffing results on a schedule.
  • Aggregate size_m2 and price data to compute price-per-square-meter estimates for casas in Monterrey.
  • Populate a property search tool with structured listing data including bedrooms, bathrooms, and parking for user-facing filters.
  • Identify commercial real estate inventory by querying locales-comerciales or oficinas across major Mexican metros.
  • Monitor total_available counts for specific location and property-type combinations to spot supply trends.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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 inmuebles24.com offer an official developer API?+
Inmuebles24.com does not publish a public developer API or documented data access program for third-party developers.
What does the `search_listings` endpoint return for each listing?+
Each listing object includes id, title, price, currency, price_text, maintenance, location, bedrooms, bathrooms, size_m2, and parking. The outer response includes count, total_available, pages_fetched, and search_params reflecting the filters applied.
Are listing photos or contact details included in the response?+
Not currently. The API returns structured listing metadata — price, size, location, and room counts — but does not expose listing images, agent contact information, or phone numbers. You can fork this API on Parse and revise it to add an endpoint that fetches individual listing detail pages where that data appears.
How does pagination work, and is there a limit on pages fetched per call?+
Set page to the starting page number (1-based) and max_pages to control how many consecutive pages are retrieved. Each page returns approximately 30 listings. The total_available field in the response tells you how many total listings match your search on the site, letting you calculate how many pages exist.
Does the API cover property listings outside major Mexican cities?+
The query parameter accepts city and region slugs, so coverage depends on what inmuebles24.com indexes for that location. Smaller municipalities may have few or no results. The API currently exposes only the slugs available in the search — it does not include a browse-by-state or region-hierarchy endpoint. You can fork this API on Parse and revise it to add an endpoint that enumerates available location slugs.
Page content last updated . Spec covers 1 endpoint from www.inmuebles24.com.
Related APIs in Real EstateSee all →
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.
encuentra24.com API
Browse Encuentra24 real estate listings by region and property category, and retrieve full details for individual listings including price, attributes, description, photos, and seller contact info.
casasyterrenos.com API
Search and browse real estate listings across Mexico with detailed property information, pricing, and seller contacts from Casas y Terrenos. Find your perfect home or land by accessing comprehensive property details and comparing available options in one place.
portalinmobiliario.com API
Search and analyze property listings from Chile's top real estate platform, accessing detailed information like prices in UF or CLP, room and bathroom counts, square footage, and locations for apartments, houses, and other properties. Quickly compare available properties and gather market data to find your ideal home or investment opportunity.
properati.com.ar API
Search and browse real estate listings in Argentina with detailed property information, including descriptions, prices, and similar properties. Filter listings by property type and operation type (buy, rent, etc.) to find exactly what you're looking for.
zonaprop.com.ar API
Search and retrieve property listings from Zonaprop, Argentina's leading real estate portal. Filter by operation type, property category, and location, then fetch full details for any listing.
inmuebles.mercadolibre.com.ar API
Search and browse apartment listings on Mercado Libre Argentina with detailed information including prices, addresses, and full descriptions. Get access to paginated results to easily explore available properties across different areas.
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.