# Kyero Property Search Extractor (`kawsar/kyero-property-search-extractor`) Actor

Give the actor a search URL for a city, region, or coastal area and it walks the pagination, collecting every listing shown: price, currency, property type, location, bedrooms, bathrooms, build size, photo gallery, agency name, and a short summary — ready to use as clean JSON, CSV, or Excel.

- **URL**: https://apify.com/kawsar/kyero-property-search-extractor.md
- **Developed by:** [Kawsar](https://apify.com/kawsar) (community)
- **Categories:** Real estate, Automation, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.99 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

## Kyero Property Search Extractor

Extract structured property listing data from any [Kyero](https://www.kyero.com) search-results page. Give the actor a search URL for a city, region, or coastal area and it walks the pagination, collecting every listing shown: price, currency, property type, location, bedrooms, bathrooms, build size, photo gallery, agency name, and a short summary — ready to use as clean JSON, CSV, or Excel.

### What it does

Kyero aggregates property listings for sale across Spain, Portugal, France, Italy, and other markets. Browsing page by page and copying details into a spreadsheet gets old fast, especially when comparing dozens of listings in one area. This actor automates that: point it at a search-results page and it follows pagination automatically, pulling every listing it finds until it hits your item limit or runs out of pages.

Each listing returned includes:

- Listing URL and unique property ID
- Title, property type, and location (locality and region)
- Price and currency
- Bedrooms, bathrooms, and build size (m²)
- Full photo gallery URLs
- Listing agency name
- Short summary text from the listing card
- Whether the listing is marked as "featured"
- Timestamp of when the listing was scraped

No login, API key, or Kyero account is required — the actor works directly against public search-results pages.

### How to use it

1. Go to [Kyero](https://www.kyero.com) and run a search for the location you care about (a city, region, or coastal area).
2. Copy the URL of the search-results page.
3. Paste that URL into the **Kyero search URL** input field.
4. Optionally set **Max items** to cap how many listings are returned (default 20).
5. Click **Start** to run the actor.

Results appear in the actor's **Dataset** tab and can be exported directly to JSON, CSV, Excel, HTML table, or pushed to an external system via Apify's integrations (Zapier, Make, webhooks, etc.).

#### Example input

```json
{
  "searchUrl": "https://www.kyero.com/en/costa-del-sol-property-for-sale-0l10186",
  "maxItems": 20
}
```

#### Example output

```json
{
  "listingUrl": "https://www.kyero.com/en/property/20912844-apartment-for-sale-paris-city",
  "propertyId": "20912844",
  "listingTitle": "Apartment in Paris City, Paris",
  "price": 1750000,
  "currency": "EUR",
  "propertyType": "Apartment",
  "locationName": "Paris City",
  "regionName": "Paris",
  "bedrooms": 4,
  "bathrooms": 1,
  "buildSizeSqm": 126,
  "listingImages": [
    "https://img.kyero.com/crop/960x720/properties/20912/20912844/419013210.jpg"
  ],
  "listingSummary": "Exclusive, exceptional apartment in Paris 16th, Chaillot...",
  "agencyName": "IAD France",
  "isFeatured": true,
  "scrapedAt": "2026-08-09T12:00:00.000000+00:00"
}
```

### Input parameters

| Field | Type | Required | Default | Description |
|---|---|---|---|---|
| `searchUrl` | String | Yes | — | A Kyero search-results URL for the location you want listings from. |
| `maxItems` | Integer | No | 20 | Maximum number of property listings to return (max 1000). |
| `requestTimeoutSecs` | Integer | No | 30 | Per-request timeout in seconds (5–120). |

### Output fields

| Field | Type | Description |
|---|---|---|
| `listingUrl` | String | Direct link to the property listing page. |
| `propertyId` | String | Kyero's unique identifier for the listing. |
| `listingTitle` | String | Listing title as shown on the card. |
| `price` | Number | Listing price. |
| `currency` | String | Currency code (e.g. `EUR`, `GBP`). |
| `propertyType` | String | Property category (apartment, villa, townhouse, etc.). |
| `locationName` | String | Locality / town of the property. |
| `regionName` | String | Broader region the property is in. |
| `bedrooms` | Number | Number of bedrooms. |
| `bathrooms` | Number | Number of bathrooms. |
| `buildSizeSqm` | Number | Build size in square meters. |
| `listingImages` | Array | Photo gallery URLs for the listing. |
| `listingSummary` | String | Short description text from the listing card. |
| `agencyName` | String | Name of the listing agency. |
| `isFeatured` | Boolean | Whether the listing is marked as featured. |
| `scrapedAt` | String | ISO 8601 timestamp of when the listing was scraped. |

### Use cases

- **Real estate agents** pulling comparable listings when pricing a new property.
- **Investors and analysts** tracking price movement and inventory across a market over time.
- **Lead generation** — building a contact list of active listing agencies in a region.
- **Property aggregators and portals** keeping a live feed of current listings without checking Kyero manually.
- **Market research** comparing property types, sizes, and pricing across different regions or countries.

### How it works

The actor requests the Kyero search-results page for the given URL, parses each listing card on the page, and follows pagination links automatically — continuing until it reaches `maxItems` or there are no more pages of results. If a page fails to load, the run logs the issue and stops gracefully rather than crashing partway through, so you still get all the listings collected up to that point.

### Limitations & notes

- The actor extracts data as published on Kyero's public search-results pages; it does not access private or authenticated listing data.
- Field availability can vary by listing (e.g. not every listing publishes bathroom count or build size).
- Respect Kyero's terms of service when using extracted data.

### Support

Found a bug or have a feature request? Open an issue on the actor's GitHub repository, or reach out via the Apify platform's contact options on the actor's page.

# Actor input Schema

## `searchUrl` (type: `string`):

Paste a Kyero search-results page URL for the location you want to extract listings from.

## `maxItems` (type: `integer`):

Maximum number of property listings to return.

## `requestTimeoutSecs` (type: `integer`):

Per-request timeout in seconds.

## Actor input object example

```json
{
  "searchUrl": "https://www.kyero.com/en/costa-del-sol-property-for-sale-0l10186",
  "maxItems": 20,
  "requestTimeoutSecs": 30
}
```

# Actor output Schema

## `listings` (type: `string`):

All property listings extracted from the Kyero search results.

## `runSummary` (type: `string`):

Search URL, total listings scraped, and run timing.

# 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 = {
    "searchUrl": "https://www.kyero.com/en/paris-property-for-sale-0l63322"
};

// Run the Actor and wait for it to finish
const run = await client.actor("kawsar/kyero-property-search-extractor").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 = { "searchUrl": "https://www.kyero.com/en/paris-property-for-sale-0l63322" }

# Run the Actor and wait for it to finish
run = client.actor("kawsar/kyero-property-search-extractor").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 '{
  "searchUrl": "https://www.kyero.com/en/paris-property-for-sale-0l63322"
}' |
apify call kawsar/kyero-property-search-extractor --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,kawsar/kyero-property-search-extractor"
        }
    }
}

```

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/GMdWYBGg32jKiuaGA/builds/xMrqQe14sZIZzPyJj/openapi.json
