Airbnb Scraper avatar

Airbnb Scraper

Try for free

1 day trial then $20.00/month - No credit card required now

Go to Store
Airbnb Scraper

Airbnb Scraper

hello.datawizard-owner/my-airbnb-scraper
Try for free

1 day trial then $20.00/month - No credit card required now

Get your desired data from the Airbnb actor with a single input location and additional filters.(our usage cost and CPU cost is low :))

You can access the Airbnb Scraper programmatically from your own applications by using the Apify API. You can 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": "m1KZ6oby4UMxlggfj"
6  },
7  "servers": [
8    {
9      "url": "https://api.apify.com/v2"
10    }
11  ],
12  "paths": {
13    "/acts/hello.datawizard-owner~my-airbnb-scraper/run-sync-get-dataset-items": {
14      "post": {
15        "operationId": "run-sync-get-dataset-items-hello.datawizard-owner-my-airbnb-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/hello.datawizard-owner~my-airbnb-scraper/runs": {
50      "post": {
51        "operationId": "runs-sync-hello.datawizard-owner-my-airbnb-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/hello.datawizard-owner~my-airbnb-scraper/run-sync": {
93      "post": {
94        "operationId": "run-sync-hello.datawizard-owner-my-airbnb-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          "location"
135        ],
136        "properties": {
137          "location": {
138            "title": "Location Queries",
139            "type": "array",
140            "description": "💡 One or more locations where the crawler will start.",
141            "items": {
142              "type": "string"
143            }
144          },
145          "itemLimit": {
146            "title": "Item Limit",
147            "type": "integer",
148            "description": "💡 Specifies the maximum number of items to process.",
149            "default": 10
150          },
151          "checkin": {
152            "title": "Check In",
153            "type": "string",
154            "description": "💡 Check in date"
155          },
156          "checkout": {
157            "title": "Check Out",
158            "type": "string",
159            "description": "💡 Check out date"
160          },
161          "priceMin": {
162            "title": "Minimum Price",
163            "type": "integer",
164            "description": "💡 Enter the minimum price per night."
165          },
166          "priceMax": {
167            "title": "Maximum Price",
168            "type": "integer",
169            "description": "💡 Enter the maximum price per night."
170          },
171          "adults": {
172            "title": "Number of Adults",
173            "type": "integer",
174            "description": "💡 Enter the minimum number of Adults"
175          },
176          "children": {
177            "title": "Number of Childrens",
178            "type": "integer",
179            "description": "💡 Enter the minimum number of Childrens"
180          },
181          "infants": {
182            "title": "Number of Infants",
183            "type": "integer",
184            "description": "💡 Enter the minimum number of Infants"
185          },
186          "pets": {
187            "title": "Number of Pets",
188            "type": "integer",
189            "description": "💡 Enter the minimum number of Pets"
190          },
191          "minBathrooms": {
192            "title": "Minimum Number of Bathrooms",
193            "type": "integer",
194            "description": "💡 Enter the minimum number of Bathrooms"
195          },
196          "minBedrooms": {
197            "title": "Minimum Number of Bedrooms",
198            "type": "integer",
199            "description": "💡 Enter the minimum number of Bedrooms"
200          },
201          "minBeds": {
202            "title": "Minimum Number of Beds",
203            "type": "integer",
204            "description": "💡 Enter the minimum number of Beds"
205          },
206          "currency": {
207            "title": "Currency Option",
208            "enum": [
209              "USD",
210              "EUR",
211              "AUD",
212              "BRL",
213              "BGN",
214              "CAD",
215              "CPL",
216              "CNY",
217              "COP",
218              "CRC",
219              "HRK",
220              "CZK",
221              "DRK",
222              "EGP",
223              "AED",
224              "GHS",
225              "HKD",
226              "HUF",
227              "INR",
228              "IDR",
229              "ILS",
230              "JPY",
231              "KZT",
232              "KES",
233              "MYR",
234              "MXN",
235              "MAD",
236              "TWD",
237              "NZD",
238              "NOK",
239              "PEN",
240              "PHP",
241              "PLN",
242              "GBP",
243              "QAR",
244              "RON",
245              "SAR",
246              "SGD",
247              "ZAR",
248              "KRW",
249              "SEK",
250              "CHF",
251              "THB",
252              "TRY",
253              "UGX",
254              "UAH",
255              "UYU",
256              "VND"
257            ],
258            "type": "string",
259            "description": "💡 Select Currency to display",
260            "default": "USD"
261          }
262        }
263      },
264      "runsResponseSchema": {
265        "type": "object",
266        "properties": {
267          "data": {
268            "type": "object",
269            "properties": {
270              "id": {
271                "type": "string"
272              },
273              "actId": {
274                "type": "string"
275              },
276              "userId": {
277                "type": "string"
278              },
279              "startedAt": {
280                "type": "string",
281                "format": "date-time",
282                "example": "2025-01-08T00:00:00.000Z"
283              },
284              "finishedAt": {
285                "type": "string",
286                "format": "date-time",
287                "example": "2025-01-08T00:00:00.000Z"
288              },
289              "status": {
290                "type": "string",
291                "example": "READY"
292              },
293              "meta": {
294                "type": "object",
295                "properties": {
296                  "origin": {
297                    "type": "string",
298                    "example": "API"
299                  },
300                  "userAgent": {
301                    "type": "string"
302                  }
303                }
304              },
305              "stats": {
306                "type": "object",
307                "properties": {
308                  "inputBodyLen": {
309                    "type": "integer",
310                    "example": 2000
311                  },
312                  "rebootCount": {
313                    "type": "integer",
314                    "example": 0
315                  },
316                  "restartCount": {
317                    "type": "integer",
318                    "example": 0
319                  },
320                  "resurrectCount": {
321                    "type": "integer",
322                    "example": 0
323                  },
324                  "computeUnits": {
325                    "type": "integer",
326                    "example": 0
327                  }
328                }
329              },
330              "options": {
331                "type": "object",
332                "properties": {
333                  "build": {
334                    "type": "string",
335                    "example": "latest"
336                  },
337                  "timeoutSecs": {
338                    "type": "integer",
339                    "example": 300
340                  },
341                  "memoryMbytes": {
342                    "type": "integer",
343                    "example": 1024
344                  },
345                  "diskMbytes": {
346                    "type": "integer",
347                    "example": 2048
348                  }
349                }
350              },
351              "buildId": {
352                "type": "string"
353              },
354              "defaultKeyValueStoreId": {
355                "type": "string"
356              },
357              "defaultDatasetId": {
358                "type": "string"
359              },
360              "defaultRequestQueueId": {
361                "type": "string"
362              },
363              "buildNumber": {
364                "type": "string",
365                "example": "1.0.0"
366              },
367              "containerUrl": {
368                "type": "string"
369              },
370              "usage": {
371                "type": "object",
372                "properties": {
373                  "ACTOR_COMPUTE_UNITS": {
374                    "type": "integer",
375                    "example": 0
376                  },
377                  "DATASET_READS": {
378                    "type": "integer",
379                    "example": 0
380                  },
381                  "DATASET_WRITES": {
382                    "type": "integer",
383                    "example": 0
384                  },
385                  "KEY_VALUE_STORE_READS": {
386                    "type": "integer",
387                    "example": 0
388                  },
389                  "KEY_VALUE_STORE_WRITES": {
390                    "type": "integer",
391                    "example": 1
392                  },
393                  "KEY_VALUE_STORE_LISTS": {
394                    "type": "integer",
395                    "example": 0
396                  },
397                  "REQUEST_QUEUE_READS": {
398                    "type": "integer",
399                    "example": 0
400                  },
401                  "REQUEST_QUEUE_WRITES": {
402                    "type": "integer",
403                    "example": 0
404                  },
405                  "DATA_TRANSFER_INTERNAL_GBYTES": {
406                    "type": "integer",
407                    "example": 0
408                  },
409                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
410                    "type": "integer",
411                    "example": 0
412                  },
413                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
414                    "type": "integer",
415                    "example": 0
416                  },
417                  "PROXY_SERPS": {
418                    "type": "integer",
419                    "example": 0
420                  }
421                }
422              },
423              "usageTotalUsd": {
424                "type": "number",
425                "example": 0.00005
426              },
427              "usageUsd": {
428                "type": "object",
429                "properties": {
430                  "ACTOR_COMPUTE_UNITS": {
431                    "type": "integer",
432                    "example": 0
433                  },
434                  "DATASET_READS": {
435                    "type": "integer",
436                    "example": 0
437                  },
438                  "DATASET_WRITES": {
439                    "type": "integer",
440                    "example": 0
441                  },
442                  "KEY_VALUE_STORE_READS": {
443                    "type": "integer",
444                    "example": 0
445                  },
446                  "KEY_VALUE_STORE_WRITES": {
447                    "type": "number",
448                    "example": 0.00005
449                  },
450                  "KEY_VALUE_STORE_LISTS": {
451                    "type": "integer",
452                    "example": 0
453                  },
454                  "REQUEST_QUEUE_READS": {
455                    "type": "integer",
456                    "example": 0
457                  },
458                  "REQUEST_QUEUE_WRITES": {
459                    "type": "integer",
460                    "example": 0
461                  },
462                  "DATA_TRANSFER_INTERNAL_GBYTES": {
463                    "type": "integer",
464                    "example": 0
465                  },
466                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
467                    "type": "integer",
468                    "example": 0
469                  },
470                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
471                    "type": "integer",
472                    "example": 0
473                  },
474                  "PROXY_SERPS": {
475                    "type": "integer",
476                    "example": 0
477                  }
478                }
479              }
480            }
481          }
482        }
483      }
484    }
485  }
486}

Airbnb 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 Airbnb 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:

Developer
Maintained by Community

Actor Metrics

  • 4 monthly users

  • 0 No bookmarks yet

  • >99% runs succeeded

  • Created in Dec 2024

  • Modified 2 months ago