Idealista-scraper avatar
Idealista-scraper

Pricing

$20.00/month + usage

Go to Store
Idealista-scraper

Idealista-scraper

axlymxp/idealista-scraper

Developed by

axly

Maintained by Community

0.0 (0)

Pricing

$20.00/month + usage

1

Monthly users

3

Runs succeeded

84%

Last modified

20 days ago

You can access the Idealista-scraper programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.

1{
2  "openapi": "3.0.1",
3  "info": {
4    "version": "0.0",
5    "x-build-id": "zQfe3TFB3ocaVxgsE"
6  },
7  "servers": [
8    {
9      "url": "https://api.apify.com/v2"
10    }
11  ],
12  "paths": {
13    "/acts/axlymxp~idealista-scraper/run-sync-get-dataset-items": {
14      "post": {
15        "operationId": "run-sync-get-dataset-items-axlymxp-idealista-scraper",
16        "x-openai-isConsequential": false,
17        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
18        "tags": [
19          "Run Actor"
20        ],
21        "requestBody": {
22          "required": true,
23          "content": {
24            "application/json": {
25              "schema": {
26                "$ref": "#/components/schemas/inputSchema"
27              }
28            }
29          }
30        },
31        "parameters": [
32          {
33            "name": "token",
34            "in": "query",
35            "required": true,
36            "schema": {
37              "type": "string"
38            },
39            "description": "Enter your Apify token here"
40          }
41        ],
42        "responses": {
43          "200": {
44            "description": "OK"
45          }
46        }
47      }
48    },
49    "/acts/axlymxp~idealista-scraper/runs": {
50      "post": {
51        "operationId": "runs-sync-axlymxp-idealista-scraper",
52        "x-openai-isConsequential": false,
53        "summary": "Executes an Actor and returns information about the initiated run in response.",
54        "tags": [
55          "Run Actor"
56        ],
57        "requestBody": {
58          "required": true,
59          "content": {
60            "application/json": {
61              "schema": {
62                "$ref": "#/components/schemas/inputSchema"
63              }
64            }
65          }
66        },
67        "parameters": [
68          {
69            "name": "token",
70            "in": "query",
71            "required": true,
72            "schema": {
73              "type": "string"
74            },
75            "description": "Enter your Apify token here"
76          }
77        ],
78        "responses": {
79          "200": {
80            "description": "OK",
81            "content": {
82              "application/json": {
83                "schema": {
84                  "$ref": "#/components/schemas/runsResponseSchema"
85                }
86              }
87            }
88          }
89        }
90      }
91    },
92    "/acts/axlymxp~idealista-scraper/run-sync": {
93      "post": {
94        "operationId": "run-sync-axlymxp-idealista-scraper",
95        "x-openai-isConsequential": false,
96        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
97        "tags": [
98          "Run Actor"
99        ],
100        "requestBody": {
101          "required": true,
102          "content": {
103            "application/json": {
104              "schema": {
105                "$ref": "#/components/schemas/inputSchema"
106              }
107            }
108          }
109        },
110        "parameters": [
111          {
112            "name": "token",
113            "in": "query",
114            "required": true,
115            "schema": {
116              "type": "string"
117            },
118            "description": "Enter your Apify token here"
119          }
120        ],
121        "responses": {
122          "200": {
123            "description": "OK"
124          }
125        }
126      }
127    }
128  },
129  "components": {
130    "schemas": {
131      "inputSchema": {
132        "type": "object",
133        "required": [
134          "country",
135          "propertyType",
136          "operation",
137          "locationName",
138          "locationId"
139        ],
140        "properties": {
141          "country": {
142            "title": "Country Code",
143            "enum": [
144              "es",
145              "it",
146              "pt"
147            ],
148            "type": "string",
149            "description": "Country code (es: Spain, it: Italy, pt: Portugal)",
150            "default": "es"
151          },
152          "locationName": {
153            "title": "Location Name",
154            "type": "string",
155            "description": "Name of the location to search in",
156            "default": "Callosa de Segura, Alicante"
157          },
158          "distance": {
159            "title": "Distance",
160            "minimum": 0,
161            "type": "integer",
162            "description": "Search radius in kilometers",
163            "default": 0
164          },
165          "locationId": {
166            "title": "Location ID",
167            "type": "string",
168            "description": "Idealista location ID",
169            "default": "0-EU-ES-03-05-015-049"
170          },
171          "propertyType": {
172            "title": "Property Type",
173            "enum": [
174              "newDevelopments",
175              "homes",
176              "offices",
177              "premises",
178              "transfers",
179              "garages",
180              "lands",
181              "storageRooms",
182              "buildings"
183            ],
184            "type": "string",
185            "description": "Type of property to search for",
186            "default": "homes"
187          },
188          "sort": {
189            "title": "Sort Direction",
190            "enum": [
191              "asc",
192              "desc"
193            ],
194            "type": "string",
195            "description": "Sort direction for results",
196            "default": "desc"
197          },
198          "operation": {
199            "title": "Operation Type",
200            "enum": [
201              "sale",
202              "rent"
203            ],
204            "type": "string",
205            "description": "Type of operation",
206            "default": "sale"
207          },
208          "order": {
209            "title": "Order By",
210            "enum": [
211              "weigh",
212              "price",
213              "publicationDate",
214              "priceDown",
215              "ratioeurm2",
216              "size"
217            ],
218            "type": "string",
219            "description": "Field to order results by",
220            "default": "weigh"
221          },
222          "locale": {
223            "title": "Language",
224            "enum": [
225              "en",
226              "es",
227              "it",
228              "pt"
229            ],
230            "type": "string",
231            "description": "Language for results",
232            "default": "en"
233          },
234          "quality": {
235            "title": "Image Quality",
236            "enum": [
237              "high",
238              "medium",
239              "low"
240            ],
241            "type": "string",
242            "description": "Quality of images",
243            "default": "high"
244          },
245          "gallery": {
246            "title": "Include Gallery",
247            "type": "boolean",
248            "description": "Whether to include image gallery",
249            "default": true
250          }
251        }
252      },
253      "runsResponseSchema": {
254        "type": "object",
255        "properties": {
256          "data": {
257            "type": "object",
258            "properties": {
259              "id": {
260                "type": "string"
261              },
262              "actId": {
263                "type": "string"
264              },
265              "userId": {
266                "type": "string"
267              },
268              "startedAt": {
269                "type": "string",
270                "format": "date-time",
271                "example": "2025-01-08T00:00:00.000Z"
272              },
273              "finishedAt": {
274                "type": "string",
275                "format": "date-time",
276                "example": "2025-01-08T00:00:00.000Z"
277              },
278              "status": {
279                "type": "string",
280                "example": "READY"
281              },
282              "meta": {
283                "type": "object",
284                "properties": {
285                  "origin": {
286                    "type": "string",
287                    "example": "API"
288                  },
289                  "userAgent": {
290                    "type": "string"
291                  }
292                }
293              },
294              "stats": {
295                "type": "object",
296                "properties": {
297                  "inputBodyLen": {
298                    "type": "integer",
299                    "example": 2000
300                  },
301                  "rebootCount": {
302                    "type": "integer",
303                    "example": 0
304                  },
305                  "restartCount": {
306                    "type": "integer",
307                    "example": 0
308                  },
309                  "resurrectCount": {
310                    "type": "integer",
311                    "example": 0
312                  },
313                  "computeUnits": {
314                    "type": "integer",
315                    "example": 0
316                  }
317                }
318              },
319              "options": {
320                "type": "object",
321                "properties": {
322                  "build": {
323                    "type": "string",
324                    "example": "latest"
325                  },
326                  "timeoutSecs": {
327                    "type": "integer",
328                    "example": 300
329                  },
330                  "memoryMbytes": {
331                    "type": "integer",
332                    "example": 1024
333                  },
334                  "diskMbytes": {
335                    "type": "integer",
336                    "example": 2048
337                  }
338                }
339              },
340              "buildId": {
341                "type": "string"
342              },
343              "defaultKeyValueStoreId": {
344                "type": "string"
345              },
346              "defaultDatasetId": {
347                "type": "string"
348              },
349              "defaultRequestQueueId": {
350                "type": "string"
351              },
352              "buildNumber": {
353                "type": "string",
354                "example": "1.0.0"
355              },
356              "containerUrl": {
357                "type": "string"
358              },
359              "usage": {
360                "type": "object",
361                "properties": {
362                  "ACTOR_COMPUTE_UNITS": {
363                    "type": "integer",
364                    "example": 0
365                  },
366                  "DATASET_READS": {
367                    "type": "integer",
368                    "example": 0
369                  },
370                  "DATASET_WRITES": {
371                    "type": "integer",
372                    "example": 0
373                  },
374                  "KEY_VALUE_STORE_READS": {
375                    "type": "integer",
376                    "example": 0
377                  },
378                  "KEY_VALUE_STORE_WRITES": {
379                    "type": "integer",
380                    "example": 1
381                  },
382                  "KEY_VALUE_STORE_LISTS": {
383                    "type": "integer",
384                    "example": 0
385                  },
386                  "REQUEST_QUEUE_READS": {
387                    "type": "integer",
388                    "example": 0
389                  },
390                  "REQUEST_QUEUE_WRITES": {
391                    "type": "integer",
392                    "example": 0
393                  },
394                  "DATA_TRANSFER_INTERNAL_GBYTES": {
395                    "type": "integer",
396                    "example": 0
397                  },
398                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
399                    "type": "integer",
400                    "example": 0
401                  },
402                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
403                    "type": "integer",
404                    "example": 0
405                  },
406                  "PROXY_SERPS": {
407                    "type": "integer",
408                    "example": 0
409                  }
410                }
411              },
412              "usageTotalUsd": {
413                "type": "number",
414                "example": 0.00005
415              },
416              "usageUsd": {
417                "type": "object",
418                "properties": {
419                  "ACTOR_COMPUTE_UNITS": {
420                    "type": "integer",
421                    "example": 0
422                  },
423                  "DATASET_READS": {
424                    "type": "integer",
425                    "example": 0
426                  },
427                  "DATASET_WRITES": {
428                    "type": "integer",
429                    "example": 0
430                  },
431                  "KEY_VALUE_STORE_READS": {
432                    "type": "integer",
433                    "example": 0
434                  },
435                  "KEY_VALUE_STORE_WRITES": {
436                    "type": "number",
437                    "example": 0.00005
438                  },
439                  "KEY_VALUE_STORE_LISTS": {
440                    "type": "integer",
441                    "example": 0
442                  },
443                  "REQUEST_QUEUE_READS": {
444                    "type": "integer",
445                    "example": 0
446                  },
447                  "REQUEST_QUEUE_WRITES": {
448                    "type": "integer",
449                    "example": 0
450                  },
451                  "DATA_TRANSFER_INTERNAL_GBYTES": {
452                    "type": "integer",
453                    "example": 0
454                  },
455                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
456                    "type": "integer",
457                    "example": 0
458                  },
459                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
460                    "type": "integer",
461                    "example": 0
462                  },
463                  "PROXY_SERPS": {
464                    "type": "integer",
465                    "example": 0
466                  }
467                }
468              }
469            }
470          }
471        }
472      }
473    }
474  }
475}

Idealista-scraper OpenAPI definition

OpenAPI is a standard for designing and describing RESTful APIs, allowing developers to define API structure, endpoints, and data formats in a machine-readable way. It simplifies API development, integration, and documentation.

OpenAPI is effective when used with AI agents and GPTs by standardizing how these systems interact with various APIs, for reliable integrations and efficient communication.

By defining machine-readable API specifications, OpenAPI allows AI models like GPTs to understand and use varied data sources, improving accuracy. This accelerates development, reduces errors, and provides context-aware responses, making OpenAPI a core component for AI applications.

You can download the OpenAPI definitions for Idealista-scraper from the options below:

If you’d like to learn more about how OpenAPI powers GPTs, read our blog post.

You can also check out our other API clients:

Pricing

Pricing model

Rental 

To use this Actor, you have to pay a monthly rental fee to the developer. The rent is subtracted from your prepaid usage every month after the free trial period. You also pay for the Apify platform usage.

Free trial

7 days

Price

$20.00