# Inmuebles24 Scraper - Mexico Real Estate Listings (`pioneering_explosion/i24-monitor-mx`) Actor

Live Inmuebles24 listings by zone: prices, location and links for sale and rent in Mexico. Hunt deals, track agencies and detect price drops daily.

- **URL**: https://apify.com/pioneering\_explosion/i24-monitor-mx.md
- **Developed by:** [Xavier Hernández López](https://apify.com/pioneering_explosion) (community)
- **Categories:** Real estate
- **Stats:** 1 total users, 0 monthly users, 0.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.00 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

### What does Inmuebles24 Scraper do?

**Inmuebles24 Scraper** extracts live property listings from [Inmuebles24](https://www.inmuebles24.com), Mexico's leading real estate portal. Search by neighborhood and operation (sale/rent) and get price, location and direct links for every listing.

Use it to **hunt opportunities**, watch competitor agencies and **detect price drops** in any zona of Mexico.

### Why scrape Inmuebles24?

- **Deal hunting** — be the first to see new listings in Roma Norte, Del Valle, Narvarte and any colonia.
- **Price-drop alerts** — run it on a schedule and diff datasets to spot motivated sellers.
- **Agency intel** — track what competitors publish, where, and at what prices.
- **Investment research** — compare sale vs rent prices by zone to estimate yields.

### What data can Inmuebles24 Scraper extract?

| Field | Type | Description |
|---|---|---|
| `title` | string | Listing title |
| `price` | number | Numeric price when published |
| `location` | string | Colonia / zone |
| `permalink` | string | Direct listing link |
| `operation` | string | venta or renta |
| `property_type` | string | departamentos, casas, terrenos, oficinas… |
| `parse_confidence` | number | Extraction confidence 0–1 |

Enable `extendedDetails` and the Actor opens each listing for bedrooms, bathrooms, surface (m²) and more.

### How to scrape Inmuebles24

1. Click **Try for free**.
2. Enter the **zona** slug (e.g. `benito-juarez`), the property **tipo** and **operacion**.
3. Optionally set **maxResults** (up to 200).
4. Click **Run**.
5. Download your data as **JSON, CSV, Excel or HTML** from the Dataset tab.

### How much does it cost to scrape Inmuebles24?

**$2 per 1,000 listings.** Platform compute and proxy costs are paid by you (Store standard). A **residential MX proxy is recommended**, as datacenter IPs get rate-limited.

### Tips

- Schedule daily runs and compare `permalink` sets to detect **new listings** automatically.
- Looking at Spain too? See our [Idealista Monitor](https://apify.com/pioneering_explosion/idealista-monitor). For Mexico jobs data, see [Glassdoor Monitor](https://apify.com/pioneering_explosion/glassdoor-monitor).

Our Actors are ethical and only extract publicly visible listing data. They do not collect private user information.

# Actor input Schema

## `tipo` (type: `string`):

departamentos, casas, terrenos, oficinas

## `operacion` (type: `string`):

venta o renta

## `zona` (type: `string`):

Slug de la zona, ej. benito-juarez, del-valle, narvarte

## `maxResults` (type: `integer`):

Tope de avisos (1-200)

## `extendedDetails` (type: `boolean`):

Abre cada aviso (recámaras, baños, m2). Más lento.

## `proxy` (type: `object`):

Residencial MX recomendado: la IP de datacenter la limita Inmuebles24

## Actor input object example

```json
{
  "tipo": "departamentos",
  "operacion": "venta",
  "maxResults": 20,
  "extendedDetails": false
}
```

# Actor output Schema

## `results` (type: `string`):

Un item por aviso: titulo, precio, moneda, ubicacion, caracteristicas y enlace.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("pioneering_explosion/i24-monitor-mx").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("pioneering_explosion/i24-monitor-mx").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call pioneering_explosion/i24-monitor-mx --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,pioneering_explosion/i24-monitor-mx"
        }
    }
}
```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/WtokUnrV0PoRH2dTp/builds/nxXbsplhHaMpVuWCm/openapi.json
