FlipKey Listings Scraper avatar

FlipKey Listings Scraper

Try for free

3 days trial then $16.00/month - No credit card required now

Go to Store
FlipKey Listings Scraper

FlipKey Listings Scraper

gabrielm/flipkey-scraper
Try for free

3 days trial then $16.00/month - No credit card required now

๐Ÿ”‘ Scrape Property Listings from flipkey.com โœˆ๏ธ Access comprehensive insights about property descriptions, photos, room details, amenities, nearby places, ratings, booking quotes, and a wealth of other valuable information. Export your results in a wide range of formats with just a few clicks!!

You can access the FlipKey Listings 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": "1.0",
5    "x-build-id": "FuenCmaduBmHYQjdA"
6  },
7  "servers": [
8    {
9      "url": "https://api.apify.com/v2"
10    }
11  ],
12  "paths": {
13    "/acts/gabrielm~flipkey-scraper/run-sync-get-dataset-items": {
14      "post": {
15        "operationId": "run-sync-get-dataset-items-gabrielm-flipkey-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/gabrielm~flipkey-scraper/runs": {
50      "post": {
51        "operationId": "runs-sync-gabrielm-flipkey-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/gabrielm~flipkey-scraper/run-sync": {
93      "post": {
94        "operationId": "run-sync-gabrielm-flipkey-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",
139            "type": "string",
140            "description": "Location name",
141            "default": "New York City"
142          },
143          "check_in": {
144            "title": "๐Ÿ—“๏ธ Check-in",
145            "type": "string",
146            "description": "Date of check-in"
147          },
148          "check_out": {
149            "title": "๐Ÿ—“๏ธ Check-out",
150            "type": "string",
151            "description": "Date of check-out"
152          },
153          "num_adults": {
154            "title": "๐Ÿ‘ซ Number of adults",
155            "minimum": 1,
156            "maximum": 15,
157            "type": "integer",
158            "description": "Number of adults to book (1-15)",
159            "default": 2
160          },
161          "num_children": {
162            "title": "๐Ÿง’ Number of children",
163            "minimum": 0,
164            "maximum": 14,
165            "type": "integer",
166            "description": "Number of children to book (0-14)",
167            "default": 0
168          },
169          "min_bedrooms": {
170            "title": "๐Ÿ›๏ธ Minimum number of bedrooms",
171            "minimum": 1,
172            "maximum": 6,
173            "type": "integer",
174            "description": "Minimum allowed number of bedrooms (1-6)"
175          },
176          "min_bathrooms": {
177            "title": "๐Ÿ› Minimum number of bathrooms",
178            "minimum": 1,
179            "maximum": 6,
180            "type": "integer",
181            "description": "Minimum allowed number of bathrooms (1-6)"
182          },
183          "max_budget": {
184            "title": "๐Ÿ’ต Maximum price to pay",
185            "minimum": 1,
186            "type": "integer",
187            "description": "Maximum price to pay for the whole stay"
188          },
189          "inc_additional_information": {
190            "title": "โœ Include additional information",
191            "type": "boolean",
192            "description": "Listing description, room details, amenities, ratings, etc.",
193            "default": false
194          },
195          "inc_booking_quote": {
196            "title": "๐Ÿ’ณ Include booking quote",
197            "type": "boolean",
198            "description": "Accurate price per night, booking & owner fees, deposit amounts and exact total",
199            "default": false
200          },
201          "inc_nearby_places": {
202            "title": "๐Ÿ“ Include nearby places",
203            "type": "boolean",
204            "description": "Categorized nearby landmarks such as restaurants and attractions",
205            "default": false
206          },
207          "rental_type_apartment": {
208            "title": "Apartment",
209            "type": "boolean",
210            "description": "",
211            "default": false
212          },
213          "rental_type_villa": {
214            "title": "Villa",
215            "type": "boolean",
216            "description": "",
217            "default": false
218          },
219          "rental_type_cottage": {
220            "title": "Cottage",
221            "type": "boolean",
222            "description": "",
223            "default": false
224          },
225          "rental_type_house": {
226            "title": "House",
227            "type": "boolean",
228            "description": "",
229            "default": false
230          },
231          "rental_type_penthouse": {
232            "title": "Penthouse",
233            "type": "boolean",
234            "description": "",
235            "default": false
236          },
237          "rental_type_chalet": {
238            "title": "Chalet",
239            "type": "boolean",
240            "description": "",
241            "default": false
242          },
243          "rental_type_lodge": {
244            "title": "Lodge",
245            "type": "boolean",
246            "description": "",
247            "default": false
248          },
249          "rental_type_manor_house": {
250            "title": "Manor House",
251            "type": "boolean",
252            "description": "",
253            "default": false
254          },
255          "rental_type_bungalow": {
256            "title": "Bungalow",
257            "type": "boolean",
258            "description": "",
259            "default": false
260          },
261          "rental_type_barn": {
262            "title": "Barn",
263            "type": "boolean",
264            "description": "",
265            "default": false
266          },
267          "rental_type_castle": {
268            "title": "Castle",
269            "type": "boolean",
270            "description": "",
271            "default": false
272          },
273          "rental_type_townhouse": {
274            "title": "Townhouse",
275            "type": "boolean",
276            "description": "",
277            "default": false
278          },
279          "rental_type_camper_van": {
280            "title": "Camper van",
281            "type": "boolean",
282            "description": "",
283            "default": false
284          },
285          "rental_type_farmhouse": {
286            "title": "Farmhouse",
287            "type": "boolean",
288            "description": "",
289            "default": false
290          },
291          "rental_type_studio": {
292            "title": "Studio",
293            "type": "boolean",
294            "description": "",
295            "default": false
296          },
297          "rental_type_yacht": {
298            "title": "Yacht",
299            "type": "boolean",
300            "description": "",
301            "default": false
302          },
303          "rental_type_narrowboat": {
304            "title": "Narrowboat",
305            "type": "boolean",
306            "description": "",
307            "default": false
308          },
309          "rental_type_gite": {
310            "title": "Gite",
311            "type": "boolean",
312            "description": "",
313            "default": false
314          },
315          "rental_type_houseboat": {
316            "title": "Houseboat",
317            "type": "boolean",
318            "description": "",
319            "default": false
320          },
321          "rental_type_yurt": {
322            "title": "Yurt",
323            "type": "boolean",
324            "description": "",
325            "default": false
326          },
327          "rental_type_trullo": {
328            "title": "Trullo",
329            "type": "boolean",
330            "description": "",
331            "default": false
332          },
333          "rental_type_windmill": {
334            "title": "Windmill",
335            "type": "boolean",
336            "description": "",
337            "default": false
338          },
339          "rental_type_chateau": {
340            "title": "Chateau",
341            "type": "boolean",
342            "description": "",
343            "default": false
344          },
345          "rental_type_boathouse": {
346            "title": "Boathouse",
347            "type": "boolean",
348            "description": "",
349            "default": false
350          },
351          "rental_type_finca": {
352            "title": "Finca",
353            "type": "boolean",
354            "description": "",
355            "default": false
356          },
357          "rental_type_condo": {
358            "title": "Condo",
359            "type": "boolean",
360            "description": "",
361            "default": false
362          },
363          "rental_type_lighthouse": {
364            "title": "Lighthouse",
365            "type": "boolean",
366            "description": "",
367            "default": false
368          },
369          "rental_type_watermill": {
370            "title": "Watermill",
371            "type": "boolean",
372            "description": "",
373            "default": false
374          },
375          "rental_type_fort": {
376            "title": "Fort",
377            "type": "boolean",
378            "description": "",
379            "default": false
380          },
381          "rental_type_tower": {
382            "title": "Tower",
383            "type": "boolean",
384            "description": "",
385            "default": false
386          },
387          "rental_type_room": {
388            "title": "Private room",
389            "type": "boolean",
390            "description": "",
391            "default": false
392          },
393          "rental_type_tented_camp": {
394            "title": "Tented camp",
395            "type": "boolean",
396            "description": "",
397            "default": false
398          },
399          "rental_type_b_and_b": {
400            "title": "B&B",
401            "type": "boolean",
402            "description": "",
403            "default": false
404          },
405          "rental_type_converted_chapel": {
406            "title": "Converted Chapel",
407            "type": "boolean",
408            "description": "",
409            "default": false
410          },
411          "rental_type_beach_hut": {
412            "title": "Beach hut",
413            "type": "boolean",
414            "description": "",
415            "default": false
416          },
417          "rental_type_ski_chalet": {
418            "title": "Ski Chalet",
419            "type": "boolean",
420            "description": "",
421            "default": false
422          },
423          "rental_type_tipi_teepee": {
424            "title": "Tipi/Teepee",
425            "type": "boolean",
426            "description": "",
427            "default": false
428          },
429          "rental_type_hotel_apartment": {
430            "title": "Hotel apartment",
431            "type": "boolean",
432            "description": "",
433            "default": false
434          },
435          "rental_type_tree_house": {
436            "title": "Tree House",
437            "type": "boolean",
438            "description": "",
439            "default": false
440          },
441          "rental_type_guest_house": {
442            "title": "Guest house",
443            "type": "boolean",
444            "description": "",
445            "default": false
446          },
447          "rental_type_caravan_mobile_home": {
448            "title": "Caravan/Mobile Home",
449            "type": "boolean",
450            "description": "",
451            "default": false
452          },
453          "rental_type_log_cabin": {
454            "title": "Log cabin",
455            "type": "boolean",
456            "description": "",
457            "default": false
458          },
459          "rental_type_cave_house": {
460            "title": "Cave house",
461            "type": "boolean",
462            "description": "",
463            "default": false
464          },
465          "rental_type_shepherds_hut": {
466            "title": "Shepherds Hut",
467            "type": "boolean",
468            "description": "",
469            "default": false
470          },
471          "rental_type_riad": {
472            "title": "Riad",
473            "type": "boolean",
474            "description": "",
475            "default": false
476          },
477          "amenity_wifi": {
478            "title": "Wireless Internet",
479            "type": "boolean",
480            "description": "",
481            "default": false
482          },
483          "amenity_air_con": {
484            "title": "Air conditioning",
485            "type": "boolean",
486            "description": "",
487            "default": false
488          },
489          "amenity_pool": {
490            "title": "Swimming pool",
491            "type": "boolean",
492            "description": "",
493            "default": false
494          },
495          "amenity_private_pool": {
496            "title": "Private pool",
497            "type": "boolean",
498            "description": "",
499            "default": false
500          },
501          "amenity_heated_pool": {
502            "title": "Heated pool",
503            "type": "boolean",
504            "description": "",
505            "default": false
506          },
507          "amenity_indoor_pool": {
508            "title": "Private indoor pool",
509            "type": "boolean",
510            "description": "",
511            "default": false
512          },
513          "amenity_balcony_terrace": {
514            "title": "Balcony or terrace",
515            "type": "boolean",
516            "description": "",
517            "default": false
518          },
519          "amenity_washing_machine": {
520            "title": "Washing machine",
521            "type": "boolean",
522            "description": "",
523            "default": false
524          },
525          "amenity_jacuzzi": {
526            "title": "Jacuzzi or hot tub",
527            "type": "boolean",
528            "description": "",
529            "default": false
530          },
531          "amenity_garden": {
532            "title": "Garden",
533            "type": "boolean",
534            "description": "",
535            "default": false
536          },
537          "amenity_internet_access": {
538            "title": "Internet access",
539            "type": "boolean",
540            "description": "",
541            "default": false
542          },
543          "amenity_dvd": {
544            "title": "DVD player",
545            "type": "boolean",
546            "description": "",
547            "default": false
548          },
549          "amenity_bbq": {
550            "title": "Grill",
551            "type": "boolean",
552            "description": "",
553            "default": false
554          },
555          "amenity_fireplace": {
556            "title": "Fireplace",
557            "type": "boolean",
558            "description": "",
559            "default": false
560          },
561          "amenity_cot": {
562            "title": "Cot available",
563            "type": "boolean",
564            "description": "",
565            "default": false
566          },
567          "amenity_sauna": {
568            "title": "Sauna",
569            "type": "boolean",
570            "description": "",
571            "default": false
572          },
573          "amenity_highchair": {
574            "title": "High chair",
575            "type": "boolean",
576            "description": "",
577            "default": false
578          },
579          "amenity_seaview": {
580            "title": "Sea view",
581            "type": "boolean",
582            "description": "",
583            "default": false
584          },
585          "amenity_safe": {
586            "title": "Safe",
587            "type": "boolean",
588            "description": "",
589            "default": false
590          },
591          "amenity_dish_washer": {
592            "title": "Dishwasher",
593            "type": "boolean",
594            "description": "",
595            "default": false
596          },
597          "amenity_child_pool": {
598            "title": "Children's pool",
599            "type": "boolean",
600            "description": "",
601            "default": false
602          },
603          "amenity_communal_pool": {
604            "title": "Shared outdoor pool (unheated)",
605            "type": "boolean",
606            "description": "",
607            "default": false
608          },
609          "amenity_outdoor_heated_pool": {
610            "title": "Private outdoor pool (heated)",
611            "type": "boolean",
612            "description": "",
613            "default": false
614          },
615          "amenity_outdoor_pool": {
616            "title": "Private outdoor pool (unheated)",
617            "type": "boolean",
618            "description": "",
619            "default": false
620          },
621          "amenity_communal_heated_pool": {
622            "title": "Shared outdoor pool (heated)",
623            "type": "boolean",
624            "description": "",
625            "default": false
626          },
627          "amenity_cribs": {
628            "title": "Cribs",
629            "type": "boolean",
630            "description": "",
631            "default": false
632          },
633          "amenity_ceiling_fans": {
634            "title": "Ceiling Fans",
635            "type": "boolean",
636            "description": "",
637            "default": false
638          },
639          "amenity_gamesroom": {
640            "title": "Games room",
641            "type": "boolean",
642            "description": "",
643            "default": false
644          },
645          "amenity_clothes_dryer": {
646            "title": "Clothes dryer",
647            "type": "boolean",
648            "description": "",
649            "default": false
650          },
651          "amenity_communal_indoor_pool": {
652            "title": "Shared indoor pool",
653            "type": "boolean",
654            "description": "",
655            "default": false
656          },
657          "amenity_trampoline": {
658            "title": "Trampoline",
659            "type": "boolean",
660            "description": "",
661            "default": false
662          },
663          "amenity_pingpong": {
664            "title": "Table tennis",
665            "type": "boolean",
666            "description": "",
667            "default": false
668          },
669          "amenity_snooker": {
670            "title": "Pool or snooker table",
671            "type": "boolean",
672            "description": "",
673            "default": false
674          },
675          "amenity_fax": {
676            "title": "Fax machine",
677            "type": "boolean",
678            "description": "",
679            "default": false
680          },
681          "amenity_video": {
682            "title": "Video player",
683            "type": "boolean",
684            "description": "",
685            "default": false
686          },
687          "amenity_boat": {
688            "title": "Boat available",
689            "type": "boolean",
690            "description": "",
691            "default": false
692          },
693          "amenity_staff": {
694            "title": "Staffed property",
695            "type": "boolean",
696            "description": "",
697            "default": false
698          },
699          "amenity_private_fish": {
700            "title": "Private fishing lake or river",
701            "type": "boolean",
702            "description": "",
703            "default": false
704          },
705          "amenity_swings": {
706            "title": "Swing set or jungle gym",
707            "type": "boolean",
708            "description": "",
709            "default": false
710          },
711          "amenity_climbing_frame": {
712            "title": "Climbing frame",
713            "type": "boolean",
714            "description": "",
715            "default": false
716          },
717          "amenity_bicycles_available": {
718            "title": "Bicycles available",
719            "type": "boolean",
720            "description": "",
721            "default": false
722          },
723          "amenity_towels_provided": {
724            "title": "Towels provided",
725            "type": "boolean",
726            "description": "",
727            "default": false
728          },
729          "amenity_linen_provided": {
730            "title": "Linen provided",
731            "type": "boolean",
732            "description": "",
733            "default": false
734          },
735          "amenity_microwave": {
736            "title": "Microwave",
737            "type": "boolean",
738            "description": "",
739            "default": false
740          },
741          "amenity_freezer": {
742            "title": "Freezer",
743            "type": "boolean",
744            "description": "",
745            "default": false
746          },
747          "amenity_housekeeping_included": {
748            "title": "Housekeeping Included",
749            "type": "boolean",
750            "description": "",
751            "default": false
752          },
753          "amenity_tennis": {
754            "title": "Private tennis court",
755            "type": "boolean",
756            "description": "",
757            "default": false
758          },
759          "suitability_pets_all": {
760            "title": "Pets allowed",
761            "type": "boolean",
762            "description": "",
763            "default": false
764          },
765          "suitability_parking_space": {
766            "title": "Parking",
767            "type": "boolean",
768            "description": "",
769            "default": false
770          },
771          "suitability_no_car": {
772            "title": "Car not required",
773            "type": "boolean",
774            "description": "",
775            "default": false
776          },
777          "suitability_children_under5": {
778            "title": "Children under 5",
779            "type": "boolean",
780            "description": "",
781            "default": false
782          },
783          "suitability_smoking": {
784            "title": "Smoking allowed",
785            "type": "boolean",
786            "description": "",
787            "default": false
788          },
789          "suitability_nonsmoking": {
790            "title": "Non-Smoking property",
791            "type": "boolean",
792            "description": "",
793            "default": false
794          },
795          "suitability_liftaccess": {
796            "title": "Elevator access",
797            "type": "boolean",
798            "description": "",
799            "default": false
800          },
801          "suitability_wheelchair_adapted": {
802            "title": "Wheelchair adapted",
803            "type": "boolean",
804            "description": "",
805            "default": false
806          },
807          "suitability_wheelchair_access": {
808            "title": "Wheelchair accessible",
809            "type": "boolean",
810            "description": "",
811            "default": false
812          },
813          "activity_beach_or_lakeside": {
814            "title": "Beach or lakeside relaxation",
815            "type": "boolean",
816            "description": "",
817            "default": false
818          },
819          "activity_city_centre": {
820            "title": "City breaks",
821            "type": "boolean",
822            "description": "",
823            "default": false
824          },
825          "activity_rambling": {
826            "title": "Walking trips",
827            "type": "boolean",
828            "description": "",
829            "default": false
830          },
831          "activity_tennis": {
832            "title": "Tennis in town",
833            "type": "boolean",
834            "description": "",
835            "default": false
836          },
837          "activity_watersports": {
838            "title": "Water sports",
839            "type": "boolean",
840            "description": "",
841            "default": false
842          },
843          "activity_horse_riding": {
844            "title": "Horse riding",
845            "type": "boolean",
846            "description": "",
847            "default": false
848          },
849          "activity_fishing": {
850            "title": "Fishing",
851            "type": "boolean",
852            "description": "",
853            "default": false
854          },
855          "activity_cycling": {
856            "title": "Cycling trips",
857            "type": "boolean",
858            "description": "",
859            "default": false
860          },
861          "activity_golf_near": {
862            "title": "Golf course on site or within 15 min walk",
863            "type": "boolean",
864            "description": "",
865            "default": false
866          },
867          "activity_mountain_views": {
868            "title": "Mountain Views",
869            "type": "boolean",
870            "description": "",
871            "default": false
872          },
873          "activity_golf_far": {
874            "title": "Golf within 30mins drive",
875            "type": "boolean",
876            "description": "",
877            "default": false
878          },
879          "activity_waterfront": {
880            "title": "Waterfront",
881            "type": "boolean",
882            "description": "",
883            "default": false
884          },
885          "activity_ski": {
886            "title": "Skiing - property near ski resort",
887            "type": "boolean",
888            "description": "",
889            "default": false
890          },
891          "activity_nightlife": {
892            "title": "Nightlife",
893            "type": "boolean",
894            "description": "",
895            "default": false
896          },
897          "activity_lake": {
898            "title": "Lakefront",
899            "type": "boolean",
900            "description": "",
901            "default": false
902          },
903          "adv_max_listings": {
904            "title": "๐Ÿ›‘ Maximum number of listings",
905            "minimum": 0,
906            "type": "integer",
907            "description": "Limits the number of retrieved listings\n(zero = no limit)",
908            "default": 50
909          },
910          "adv_request_timeout": {
911            "title": "โฑ๏ธ Request timeout",
912            "minimum": 1,
913            "type": "integer",
914            "description": "Individual request timeout, in seconds",
915            "default": 30
916          },
917          "adv_request_retries": {
918            "title": "๐Ÿ”„ Request retries",
919            "minimum": 0,
920            "maximum": 9,
921            "type": "integer",
922            "description": "How many times to retry a request if it fails\n(0-9, zero = never)",
923            "default": 3
924          },
925          "adv_request_cooldown": {
926            "title": "๐Ÿ”ฅ Request cooldown",
927            "minimum": 0,
928            "maximum": 10,
929            "type": "integer",
930            "description": "Interval before retrying a failed request,\nin seconds (0-10, zero = immediate)",
931            "default": 1
932          },
933          "adv_proxy_usage": {
934            "title": "๐Ÿ•ต๐Ÿป Proxy usage",
935            "type": "object",
936            "description": "Proxies used to anonymize your requests\n(โš ๏ธ using none is discouraged โš ๏ธ)"
937          },
938          "adv_dataset_optimization": {
939            "title": "๐Ÿ—œ๏ธ Dataset optimization",
940            "type": "boolean",
941            "description": "Simplifies elements for a better layout\n(โš ๏ธ best for spreadsheet-like view โš ๏ธ)",
942            "default": true
943          },
944          "adv_show_warnings": {
945            "title": "๐Ÿ’ฌ Show warnings",
946            "type": "boolean",
947            "description": "Includes non-critical messages in the log\n(โš ๏ธ for advanced users โš ๏ธ)",
948            "default": false
949          }
950        }
951      },
952      "runsResponseSchema": {
953        "type": "object",
954        "properties": {
955          "data": {
956            "type": "object",
957            "properties": {
958              "id": {
959                "type": "string"
960              },
961              "actId": {
962                "type": "string"
963              },
964              "userId": {
965                "type": "string"
966              },
967              "startedAt": {
968                "type": "string",
969                "format": "date-time",
970                "example": "2025-01-08T00:00:00.000Z"
971              },
972              "finishedAt": {
973                "type": "string",
974                "format": "date-time",
975                "example": "2025-01-08T00:00:00.000Z"
976              },
977              "status": {
978                "type": "string",
979                "example": "READY"
980              },
981              "meta": {
982                "type": "object",
983                "properties": {
984                  "origin": {
985                    "type": "string",
986                    "example": "API"
987                  },
988                  "userAgent": {
989                    "type": "string"
990                  }
991                }
992              },
993              "stats": {
994                "type": "object",
995                "properties": {
996                  "inputBodyLen": {
997                    "type": "integer",
998                    "example": 2000
999                  },
1000                  "rebootCount": {
1001                    "type": "integer",
1002                    "example": 0
1003                  },
1004                  "restartCount": {
1005                    "type": "integer",
1006                    "example": 0
1007                  },
1008                  "resurrectCount": {
1009                    "type": "integer",
1010                    "example": 0
1011                  },
1012                  "computeUnits": {
1013                    "type": "integer",
1014                    "example": 0
1015                  }
1016                }
1017              },
1018              "options": {
1019                "type": "object",
1020                "properties": {
1021                  "build": {
1022                    "type": "string",
1023                    "example": "latest"
1024                  },
1025                  "timeoutSecs": {
1026                    "type": "integer",
1027                    "example": 300
1028                  },
1029                  "memoryMbytes": {
1030                    "type": "integer",
1031                    "example": 1024
1032                  },
1033                  "diskMbytes": {
1034                    "type": "integer",
1035                    "example": 2048
1036                  }
1037                }
1038              },
1039              "buildId": {
1040                "type": "string"
1041              },
1042              "defaultKeyValueStoreId": {
1043                "type": "string"
1044              },
1045              "defaultDatasetId": {
1046                "type": "string"
1047              },
1048              "defaultRequestQueueId": {
1049                "type": "string"
1050              },
1051              "buildNumber": {
1052                "type": "string",
1053                "example": "1.0.0"
1054              },
1055              "containerUrl": {
1056                "type": "string"
1057              },
1058              "usage": {
1059                "type": "object",
1060                "properties": {
1061                  "ACTOR_COMPUTE_UNITS": {
1062                    "type": "integer",
1063                    "example": 0
1064                  },
1065                  "DATASET_READS": {
1066                    "type": "integer",
1067                    "example": 0
1068                  },
1069                  "DATASET_WRITES": {
1070                    "type": "integer",
1071                    "example": 0
1072                  },
1073                  "KEY_VALUE_STORE_READS": {
1074                    "type": "integer",
1075                    "example": 0
1076                  },
1077                  "KEY_VALUE_STORE_WRITES": {
1078                    "type": "integer",
1079                    "example": 1
1080                  },
1081                  "KEY_VALUE_STORE_LISTS": {
1082                    "type": "integer",
1083                    "example": 0
1084                  },
1085                  "REQUEST_QUEUE_READS": {
1086                    "type": "integer",
1087                    "example": 0
1088                  },
1089                  "REQUEST_QUEUE_WRITES": {
1090                    "type": "integer",
1091                    "example": 0
1092                  },
1093                  "DATA_TRANSFER_INTERNAL_GBYTES": {
1094                    "type": "integer",
1095                    "example": 0
1096                  },
1097                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
1098                    "type": "integer",
1099                    "example": 0
1100                  },
1101                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
1102                    "type": "integer",
1103                    "example": 0
1104                  },
1105                  "PROXY_SERPS": {
1106                    "type": "integer",
1107                    "example": 0
1108                  }
1109                }
1110              },
1111              "usageTotalUsd": {
1112                "type": "number",
1113                "example": 0.00005
1114              },
1115              "usageUsd": {
1116                "type": "object",
1117                "properties": {
1118                  "ACTOR_COMPUTE_UNITS": {
1119                    "type": "integer",
1120                    "example": 0
1121                  },
1122                  "DATASET_READS": {
1123                    "type": "integer",
1124                    "example": 0
1125                  },
1126                  "DATASET_WRITES": {
1127                    "type": "integer",
1128                    "example": 0
1129                  },
1130                  "KEY_VALUE_STORE_READS": {
1131                    "type": "integer",
1132                    "example": 0
1133                  },
1134                  "KEY_VALUE_STORE_WRITES": {
1135                    "type": "number",
1136                    "example": 0.00005
1137                  },
1138                  "KEY_VALUE_STORE_LISTS": {
1139                    "type": "integer",
1140                    "example": 0
1141                  },
1142                  "REQUEST_QUEUE_READS": {
1143                    "type": "integer",
1144                    "example": 0
1145                  },
1146                  "REQUEST_QUEUE_WRITES": {
1147                    "type": "integer",
1148                    "example": 0
1149                  },
1150                  "DATA_TRANSFER_INTERNAL_GBYTES": {
1151                    "type": "integer",
1152                    "example": 0
1153                  },
1154                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
1155                    "type": "integer",
1156                    "example": 0
1157                  },
1158                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
1159                    "type": "integer",
1160                    "example": 0
1161                  },
1162                  "PROXY_SERPS": {
1163                    "type": "integer",
1164                    "example": 0
1165                  }
1166                }
1167              }
1168            }
1169          }
1170        }
1171      }
1172    }
1173  }
1174}

FlipKey Listings 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 FlipKey Listings 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

  • 2 monthly users

  • 1 bookmark

  • >99% runs succeeded

  • Created in Aug 2023

  • Modified a year ago