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
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 →
padmapper.com API
Search and browse rental listings across cities with detailed property information including prices, contact details, and market trends. Discover apartments and homes through city-wide searches or map-based exploration, and access comprehensive listing details to help you find your next rental.
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.
catastro.minhap.es API
Search Spanish property records by address, coordinates, or cadastral reference to find detailed land parcel information, ownership details, and location data across all Spanish provinces and municipalities. Browse the complete hierarchy of Spanish geographic and administrative divisions including provinces, municipalities, and streets to pinpoint exact property locations.
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.
amberstudent.com API
Search student accommodation listings across popular cities and access comprehensive property information including room types, pricing trends, and tenant reviews. Get detailed insights into student housing options to compare amenities, prices, and community feedback all in one place.
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.
homes.com API
Search for real estate agents and properties available for sale or rent, while accessing detailed agent profiles with their 1-year transaction history, active listings, and performance statistics. Get comprehensive property details and agent information all in one place to help you find the right agent or property that matches your needs.
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.
Inmuebles24 API – Mexico Real Estate Listings · Parse