Airbnb Fast Scraper avatar
Airbnb Fast Scraper

Deprecated

Pricing

$2.00 / 1,000 results

Go to Store
Airbnb Fast Scraper

Airbnb Fast Scraper

Deprecated

Developed by

Tri⟁angle

Tri⟁angle

Maintained by Apify

Scrape Airbnb Listing pages fast to get a small subset of details

0.0 (0)

Pricing

$2.00 / 1,000 results

1

Total users

41

Monthly users

1

Runs succeeded

>99%

Last modified

10 months ago

You can access the Airbnb Fast 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": "BVx2TLrAF0eIjA3K0"
6  },
7  "servers": [
8    {
9      "url": "https://api.apify.com/v2"
10    }
11  ],
12  "paths": {
13    "/acts/tri_angle~airbnb-fast-scraper/run-sync-get-dataset-items": {
14      "post": {
15        "operationId": "run-sync-get-dataset-items-tri_angle-airbnb-fast-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/tri_angle~airbnb-fast-scraper/runs": {
50      "post": {
51        "operationId": "runs-sync-tri_angle-airbnb-fast-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/tri_angle~airbnb-fast-scraper/run-sync": {
93      "post": {
94        "operationId": "run-sync-tri_angle-airbnb-fast-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        "properties": {
134          "locationQuery": {
135            "title": "Destination",
136            "type": "string",
137            "description": "Location name as you would search it on Airbnb."
138          },
139          "maxListings": {
140            "title": "Number of results",
141            "type": "integer",
142            "description": "Limit the amount of results you want. Higher limits will take longer to scrape. If you want to get all results, leave this field blank or use a really big number."
143          },
144          "startUrls": {
145            "title": "Link to an Airbnb Place",
146            "type": "array",
147            "description": "Link to a room, house, flat, or apartment. When using this field, the scraper will ignore the Destination field and will get results only for specific listings.",
148            "items": {
149              "type": "object",
150              "required": [
151                "url"
152              ],
153              "properties": {
154                "url": {
155                  "type": "string",
156                  "title": "URL of a web page",
157                  "format": "uri"
158                }
159              }
160            }
161          },
162          "locale": {
163            "title": "Locale",
164            "enum": [
165              "sk-SK",
166              "en-US",
167              "en-GB",
168              "en-AU",
169              "cs-CZ",
170              "az-AZ",
171              "id-ID",
172              "bs-BA",
173              "ca-ES",
174              "sr-ME",
175              "da-DK",
176              "de-DE",
177              "de-AT",
178              "de-CH",
179              "et-EE",
180              "en-CA",
181              "en-GY",
182              "en-IN",
183              "en-IE",
184              "en-NZ",
185              "en-SG",
186              "en-AE",
187              "es-AR",
188              "es-BZ",
189              "es-BO",
190              "es-CL",
191              "es-CO",
192              "es-CR",
193              "es-EC",
194              "es-SV",
195              "es-ES",
196              "es-US",
197              "es-GT",
198              "es-HN",
199              "es-419",
200              "es-MX",
201              "es-NI",
202              "es-PA",
203              "es-PY",
204              "es-PE",
205              "es-VE",
206              "fr-BE",
207              "fr-CA",
208              "fr-FR",
209              "fr-CH",
210              "ga-IE",
211              "hr-HR",
212              "xh-ZA",
213              "zu-ZA",
214              "is-IS",
215              "it-IT",
216              "it-CH",
217              "sw-XX",
218              "lv-LV",
219              "lt-LT",
220              "hu-HU",
221              "mt-MT",
222              "ms-MY",
223              "nl-BE",
224              "nl-NL",
225              "no-NO",
226              "pl-PL",
227              "pt-BR",
228              "pt-PT",
229              "ro-RO",
230              "sq-AL",
231              "sl-SI",
232              "sr-RS",
233              "fi-FI",
234              "sv-SE",
235              "tl-PH",
236              "vi-VN",
237              "tr-TR",
238              "el-GR",
239              "bg-BG",
240              "mk-MK",
241              "ru-RU",
242              "uk-UA",
243              "ka-GE",
244              "hy-AM",
245              "he-IL",
246              "ar-XX",
247              "hi-IN",
248              "th-TH",
249              "ko-KR",
250              "ja-JP",
251              "zh-US",
252              "zh-TW-US",
253              "zh-CN",
254              "zh-HK",
255              "zh-TW"
256            ],
257            "type": "string",
258            "description": "Localization that should be used for listing details and review comments. If unset, localization is inferred from each Airbnb start URL or is set to English if no start URLs are provided."
259          },
260          "currency": {
261            "title": "Currency",
262            "enum": [
263              "ADP",
264              "AED",
265              "AFA",
266              "AFN",
267              "ALK",
268              "ALL",
269              "AMD",
270              "ANG",
271              "AOA",
272              "AOK",
273              "AON",
274              "AOR",
275              "ARA",
276              "ARP",
277              "ARS",
278              "ARY",
279              "ATS",
280              "AUD",
281              "AWG",
282              "AYM",
283              "AZM",
284              "AZN",
285              "BAD",
286              "BAM",
287              "BBD",
288              "BDT",
289              "BEC",
290              "BEF",
291              "BEL",
292              "BGJ",
293              "BGK",
294              "BGL",
295              "BGN",
296              "BHD",
297              "BIF",
298              "BMD",
299              "BND",
300              "BOB",
301              "BOP",
302              "BOV",
303              "BRB",
304              "BRC",
305              "BRE",
306              "BRL",
307              "BRN",
308              "BRR",
309              "BSD",
310              "BTN",
311              "BUK",
312              "BWP",
313              "BYB",
314              "BYN",
315              "BYR",
316              "BZD",
317              "CAD",
318              "CDF",
319              "CHC",
320              "CHE",
321              "CHF",
322              "CHW",
323              "CLF",
324              "CLP",
325              "CNX",
326              "CNY",
327              "COP",
328              "COU",
329              "CRC",
330              "CSD",
331              "CSJ",
332              "CSK",
333              "CUC",
334              "CUP",
335              "CVE",
336              "CYP",
337              "CZK",
338              "DDM",
339              "DEM",
340              "DJF",
341              "DKK",
342              "DOP",
343              "DZD",
344              "ECS",
345              "ECV",
346              "EEK",
347              "EGP",
348              "ERN",
349              "ESA",
350              "ESB",
351              "ESP",
352              "ETB",
353              "EUR",
354              "FIM",
355              "FJD",
356              "FKP",
357              "FRF",
358              "GBP",
359              "GEK",
360              "GEL",
361              "GHC",
362              "GHP",
363              "GHS",
364              "GIP",
365              "GMD",
366              "GNE",
367              "GNF",
368              "GNS",
369              "GQE",
370              "GRD",
371              "GTQ",
372              "GWE",
373              "GWP",
374              "GYD",
375              "HKD",
376              "HNL",
377              "HRD",
378              "HRK",
379              "HTG",
380              "HUF",
381              "IDR",
382              "IEP",
383              "ILP",
384              "ILR",
385              "ILS",
386              "INR",
387              "IQD",
388              "IRR",
389              "ISJ",
390              "ISK",
391              "ITL",
392              "JMD",
393              "JOD",
394              "JPY",
395              "KES",
396              "KGS",
397              "KHR",
398              "KMF",
399              "KPW",
400              "KRW",
401              "KWD",
402              "KYD",
403              "KZT",
404              "LAJ",
405              "LAK",
406              "LBP",
407              "LKR",
408              "LRD",
409              "LSL",
410              "LSM",
411              "LTL",
412              "LTT",
413              "LUC",
414              "LUF",
415              "LUL",
416              "LVL",
417              "LVR",
418              "LYD",
419              "MAD",
420              "MDL",
421              "MGA",
422              "MGF",
423              "MKD",
424              "MLF",
425              "MMK",
426              "MNT",
427              "MOP",
428              "MRO",
429              "MTL",
430              "MTP",
431              "MUR",
432              "MVQ",
433              "MVR",
434              "MWK",
435              "MXN",
436              "MXP",
437              "MXV",
438              "MYR",
439              "MZE",
440              "MZM",
441              "MZN",
442              "NAD",
443              "NGN",
444              "NIC",
445              "NIO",
446              "NLG",
447              "NOK",
448              "NPR",
449              "NZD",
450              "OMR",
451              "PAB",
452              "PEH",
453              "PEI",
454              "PEN",
455              "PES",
456              "PGK",
457              "PHP",
458              "PKR",
459              "PLN",
460              "PLZ",
461              "PTE",
462              "PYG",
463              "QAR",
464              "RHD",
465              "ROK",
466              "ROL",
467              "RON",
468              "RSD",
469              "RUB",
470              "RUR",
471              "RWF",
472              "SAR",
473              "SBD",
474              "SCR",
475              "SDD",
476              "SDG",
477              "SDP",
478              "SEK",
479              "SGD",
480              "SHP",
481              "SIT",
482              "SKK",
483              "SLL",
484              "SOS",
485              "SRD",
486              "SRG",
487              "SSP",
488              "STD",
489              "SUR",
490              "SVC",
491              "SYP",
492              "SZL",
493              "THB",
494              "TJR",
495              "TJS",
496              "TMM",
497              "TMT",
498              "TND",
499              "TOP",
500              "TPE",
501              "TRL",
502              "TRY",
503              "TTD",
504              "TWD",
505              "TZS",
506              "UAH",
507              "UAK",
508              "UGS",
509              "UGW",
510              "UGX",
511              "USD",
512              "USN",
513              "USS",
514              "UYI",
515              "UYN",
516              "UYP",
517              "UYU",
518              "UZS",
519              "VEB",
520              "VEF",
521              "VNC",
522              "VND",
523              "VUV",
524              "WST",
525              "XAF",
526              "XAG",
527              "XAU",
528              "XBA",
529              "XBB",
530              "XBC",
531              "XBD",
532              "XCD",
533              "XDR",
534              "XEU",
535              "XFO",
536              "XFU",
537              "XOF",
538              "XPD",
539              "XPF",
540              "XPT",
541              "XRE",
542              "XSU",
543              "XTS",
544              "XUA",
545              "XXX",
546              "YDD",
547              "YER",
548              "YUD",
549              "YUM",
550              "YUN",
551              "ZAL",
552              "ZAR",
553              "ZMK",
554              "ZMW",
555              "ZRN",
556              "ZRZ",
557              "ZWC",
558              "ZWD",
559              "ZWL",
560              "ZWN",
561              "ZWR"
562            ],
563            "type": "string",
564            "description": "Currency for displayed prices.",
565            "default": "USD"
566          },
567          "minPrice": {
568            "title": "Minimum price",
569            "type": "integer",
570            "description": "Filter listings based on a minimum price per night."
571          },
572          "maxPrice": {
573            "title": "Maximum price",
574            "type": "integer",
575            "description": "Filter listings based on a maximum price per night."
576          },
577          "limitPoints": {
578            "title": "Limit points",
579            "minimum": 1,
580            "type": "integer",
581            "description": "Limits the number of geo points returned by the reverse API. The higher the number, the longer it takes. There's no upper limit.",
582            "default": 100
583          }
584        }
585      },
586      "runsResponseSchema": {
587        "type": "object",
588        "properties": {
589          "data": {
590            "type": "object",
591            "properties": {
592              "id": {
593                "type": "string"
594              },
595              "actId": {
596                "type": "string"
597              },
598              "userId": {
599                "type": "string"
600              },
601              "startedAt": {
602                "type": "string",
603                "format": "date-time",
604                "example": "2025-01-08T00:00:00.000Z"
605              },
606              "finishedAt": {
607                "type": "string",
608                "format": "date-time",
609                "example": "2025-01-08T00:00:00.000Z"
610              },
611              "status": {
612                "type": "string",
613                "example": "READY"
614              },
615              "meta": {
616                "type": "object",
617                "properties": {
618                  "origin": {
619                    "type": "string",
620                    "example": "API"
621                  },
622                  "userAgent": {
623                    "type": "string"
624                  }
625                }
626              },
627              "stats": {
628                "type": "object",
629                "properties": {
630                  "inputBodyLen": {
631                    "type": "integer",
632                    "example": 2000
633                  },
634                  "rebootCount": {
635                    "type": "integer",
636                    "example": 0
637                  },
638                  "restartCount": {
639                    "type": "integer",
640                    "example": 0
641                  },
642                  "resurrectCount": {
643                    "type": "integer",
644                    "example": 0
645                  },
646                  "computeUnits": {
647                    "type": "integer",
648                    "example": 0
649                  }
650                }
651              },
652              "options": {
653                "type": "object",
654                "properties": {
655                  "build": {
656                    "type": "string",
657                    "example": "latest"
658                  },
659                  "timeoutSecs": {
660                    "type": "integer",
661                    "example": 300
662                  },
663                  "memoryMbytes": {
664                    "type": "integer",
665                    "example": 1024
666                  },
667                  "diskMbytes": {
668                    "type": "integer",
669                    "example": 2048
670                  }
671                }
672              },
673              "buildId": {
674                "type": "string"
675              },
676              "defaultKeyValueStoreId": {
677                "type": "string"
678              },
679              "defaultDatasetId": {
680                "type": "string"
681              },
682              "defaultRequestQueueId": {
683                "type": "string"
684              },
685              "buildNumber": {
686                "type": "string",
687                "example": "1.0.0"
688              },
689              "containerUrl": {
690                "type": "string"
691              },
692              "usage": {
693                "type": "object",
694                "properties": {
695                  "ACTOR_COMPUTE_UNITS": {
696                    "type": "integer",
697                    "example": 0
698                  },
699                  "DATASET_READS": {
700                    "type": "integer",
701                    "example": 0
702                  },
703                  "DATASET_WRITES": {
704                    "type": "integer",
705                    "example": 0
706                  },
707                  "KEY_VALUE_STORE_READS": {
708                    "type": "integer",
709                    "example": 0
710                  },
711                  "KEY_VALUE_STORE_WRITES": {
712                    "type": "integer",
713                    "example": 1
714                  },
715                  "KEY_VALUE_STORE_LISTS": {
716                    "type": "integer",
717                    "example": 0
718                  },
719                  "REQUEST_QUEUE_READS": {
720                    "type": "integer",
721                    "example": 0
722                  },
723                  "REQUEST_QUEUE_WRITES": {
724                    "type": "integer",
725                    "example": 0
726                  },
727                  "DATA_TRANSFER_INTERNAL_GBYTES": {
728                    "type": "integer",
729                    "example": 0
730                  },
731                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
732                    "type": "integer",
733                    "example": 0
734                  },
735                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
736                    "type": "integer",
737                    "example": 0
738                  },
739                  "PROXY_SERPS": {
740                    "type": "integer",
741                    "example": 0
742                  }
743                }
744              },
745              "usageTotalUsd": {
746                "type": "number",
747                "example": 0.00005
748              },
749              "usageUsd": {
750                "type": "object",
751                "properties": {
752                  "ACTOR_COMPUTE_UNITS": {
753                    "type": "integer",
754                    "example": 0
755                  },
756                  "DATASET_READS": {
757                    "type": "integer",
758                    "example": 0
759                  },
760                  "DATASET_WRITES": {
761                    "type": "integer",
762                    "example": 0
763                  },
764                  "KEY_VALUE_STORE_READS": {
765                    "type": "integer",
766                    "example": 0
767                  },
768                  "KEY_VALUE_STORE_WRITES": {
769                    "type": "number",
770                    "example": 0.00005
771                  },
772                  "KEY_VALUE_STORE_LISTS": {
773                    "type": "integer",
774                    "example": 0
775                  },
776                  "REQUEST_QUEUE_READS": {
777                    "type": "integer",
778                    "example": 0
779                  },
780                  "REQUEST_QUEUE_WRITES": {
781                    "type": "integer",
782                    "example": 0
783                  },
784                  "DATA_TRANSFER_INTERNAL_GBYTES": {
785                    "type": "integer",
786                    "example": 0
787                  },
788                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
789                    "type": "integer",
790                    "example": 0
791                  },
792                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
793                    "type": "integer",
794                    "example": 0
795                  },
796                  "PROXY_SERPS": {
797                    "type": "integer",
798                    "example": 0
799                  }
800                }
801              }
802            }
803          }
804        }
805      }
806    }
807  }
808}

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