Facebook Marketplace Scraper avatar

Facebook Marketplace Scraper

Try for free

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

Go to Store
Facebook Marketplace Scraper

Facebook Marketplace Scraper

inquisitive_sarangi/facebook-marketplace-scraper
Try for free

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

Scrape facebook marketplace with highly targeted/customized search queries and filters. Export and download data to CSV/JSON etc.

You can access the Facebook Marketplace 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": "8yyPKEzcGtzGjQiYz"
6  },
7  "servers": [
8    {
9      "url": "https://api.apify.com/v2"
10    }
11  ],
12  "paths": {
13    "/acts/inquisitive_sarangi~facebook-marketplace-scraper/run-sync-get-dataset-items": {
14      "post": {
15        "operationId": "run-sync-get-dataset-items-inquisitive_sarangi-facebook-marketplace-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/inquisitive_sarangi~facebook-marketplace-scraper/runs": {
50      "post": {
51        "operationId": "runs-sync-inquisitive_sarangi-facebook-marketplace-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/inquisitive_sarangi~facebook-marketplace-scraper/run-sync": {
93      "post": {
94        "operationId": "run-sync-inquisitive_sarangi-facebook-marketplace-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          "proxy",
135          "lat",
136          "lng",
137          "radius"
138        ],
139        "properties": {
140          "listingUrls": {
141            "title": "Listing urls",
142            "uniqueItems": true,
143            "type": "array",
144            "description": "Using no-empty listing urls list, all fields except proxy will be ignored.",
145            "default": [],
146            "items": {
147              "type": "string"
148            }
149          },
150          "searchUrls": {
151            "title": "Search urls",
152            "uniqueItems": true,
153            "type": "array",
154            "description": "Supported pattern: /^https://www.facebook.com/marketplace/(\\d+|\\w+)/(search|vehicles|propertyrentals|apparel|electronics|entertainment|family|free|garden|hobbies|home|home-improvements|instruments|office-supplies|pets|propertyforsale|sports|toys)/?(?query=.+)/. For category based search urls(/category/), the actors uses lat/lng/radius setting from input.",
155            "default": [],
156            "items": {
157              "type": "string"
158            }
159          },
160          "proxy": {
161            "title": "Proxy configuration",
162            "type": "object",
163            "description": "Select proxies to be used by your scraper. For searchUrls, it has been observed that apify proxies has a low chance of success. Please use a different residential proxy."
164          },
165          "maxPage": {
166            "title": "Max Page Limit",
167            "minimum": 0,
168            "type": "integer",
169            "description": "0 means no limit",
170            "default": 0
171          },
172          "local": {
173            "title": "Show price in local currency",
174            "type": "boolean",
175            "description": "If enabled, output prices in targeted location currency, otherwise USD",
176            "default": false
177          },
178          "extendItem": {
179            "title": "Get item extended data",
180            "type": "boolean",
181            "description": "if enabled we fetch item details",
182            "default": false
183          },
184          "search": {
185            "title": "Custom Search(Overrides category, if set)",
186            "type": "string",
187            "description": "Can be used to custom search where searchurl not supported. Acceptable pattern: {location}/{query}. eg. nyc/ps5 or ps5. If set, category will be ignored. For missing {location} part, lat/lng/radius will be used instead to target a location. You can also add below filters, if they applies for your search.",
188            "default": "nyc/ps5"
189          },
190          "category": {
191            "title": "Category",
192            "enum": [
193              "",
194              "vehicles",
195              "propertyrentals",
196              "apparel",
197              "electronics",
198              "entertainment",
199              "family",
200              "free",
201              "garden",
202              "hobbies",
203              "home",
204              "home-improvements",
205              "instruments",
206              "office-supplies",
207              "pets",
208              "propertyforsale",
209              "sports",
210              "toys"
211            ],
212            "type": "string",
213            "description": "Select your category",
214            "default": ""
215          },
216          "lat": {
217            "title": "Latitude",
218            "type": "string",
219            "description": "N/E(+), S/W(-)"
220          },
221          "lng": {
222            "title": "Longitude",
223            "type": "string",
224            "description": "N/E(+), S/W(-)"
225          },
226          "radius": {
227            "title": "Radius",
228            "enum": [
229              "1",
230              "2",
231              "5",
232              "10",
233              "20",
234              "40",
235              "60",
236              "65",
237              "80",
238              "100",
239              "250",
240              "500"
241            ],
242            "type": "string",
243            "description": "Select area radius",
244            "default": "65"
245          },
246          "itemCondition": {
247            "title": "Condition",
248            "uniqueItems": true,
249            "type": "array",
250            "description": "Options: new|used_like_new|used_good|used_fair. NOTE: not applicable to property rentals",
251            "default": [],
252            "items": {
253              "type": "string"
254            }
255          },
256          "minPrice": {
257            "title": "Price Min.",
258            "minimum": 0,
259            "maximum": 2147483647,
260            "type": "integer",
261            "description": "Prices are in units of target location currency. Eg. for target location US, unit is in USD",
262            "default": 0
263          },
264          "maxPrice": {
265            "title": "Price Max.",
266            "minimum": 1,
267            "maximum": 2147483647,
268            "type": "integer",
269            "description": "Prices are in units of target location currency. eg for target location US, unit is in USD",
270            "default": 2147483647
271          },
272          "sortBy": {
273            "title": "Sort By",
274            "enum": [
275              "",
276              "price_ascend",
277              "price_descend",
278              "creation_time_ascend",
279              "creation_time_descend",
280              "distance_ascend",
281              "distance_descend",
282              "mileage_ascend",
283              "mileage_descend",
284              "year_ascend",
285              "year_descend"
286            ],
287            "type": "string",
288            "description": "Attribute by which you may want to sort the listings.",
289            "default": ""
290          },
291          "topLevelVehicleType": {
292            "title": "Type",
293            "enum": [
294              "",
295              "car_truck",
296              "motorcycle",
297              "powersport",
298              "boat",
299              "commercial",
300              "trailer",
301              "rv_camper",
302              "other"
303            ],
304            "type": "string",
305            "description": "Type of vehicle.",
306            "default": ""
307          },
308          "minMileage": {
309            "title": "Mileage Min.",
310            "type": "integer",
311            "description": "Mileage Min."
312          },
313          "maxMileage": {
314            "title": "Mileage Max.",
315            "type": "integer",
316            "description": "Mileage Max."
317          },
318          "carType": {
319            "title": "Body Style",
320            "uniqueItems": true,
321            "type": "array",
322            "description": "Options: convertible|coupe|hatchback|minivan|sedan|wagon|suv|truck|small_car|other, NOTE: not applicable to propery rentals",
323            "default": [],
324            "items": {
325              "type": "string"
326            }
327          },
328          "transmissionType": {
329            "title": "Transmission",
330            "enum": [
331              "",
332              "automatic",
333              "manual"
334            ],
335            "type": "string",
336            "description": "Type of transmission",
337            "default": ""
338          },
339          "minYear": {
340            "title": "Year Min.",
341            "minimum": 1900,
342            "maximum": 2147483647,
343            "type": "integer",
344            "description": "Year Min"
345          },
346          "maxYear": {
347            "title": "Year Max.",
348            "minimum": 1900,
349            "maximum": 2147483647,
350            "type": "integer",
351            "description": "Year Max"
352          },
353          "make": {
354            "title": "Make",
355            "enum": [
356              "",
357              "Acura",
358              "Alfa Romeo",
359              "Aston Martin",
360              "Audi",
361              "BMW",
362              "Bentley",
363              "Buick",
364              "CODA",
365              "Cadillac",
366              "Chevrolet",
367              "Chrysler",
368              "Daewoo",
369              "Daihatsu",
370              "Dodge",
371              "Eagle",
372              "Ferrari",
373              "Fiat",
374              "Fisker",
375              "Ford",
376              "Freightliner",
377              "GMC",
378              "Genesis",
379              "Geo",
380              "Honda",
381              "Hummer",
382              "Hyundai",
383              "Infiniti",
384              "Isuzu",
385              "Jaguar",
386              "Jeep",
387              "Kia",
388              "Lamborghini",
389              "Land Rover",
390              "Lexus",
391              "Lincoln",
392              "Lotus",
393              "Lucid",
394              "MINI",
395              "Maserati",
396              "Maybach",
397              "Mazda",
398              "McLaren",
399              "Mercedes-Benz",
400              "Mercury",
401              "Mitsubishi",
402              "Nissan",
403              "Oldsmobile",
404              "Panoz",
405              "Plymouth",
406              "Polestar",
407              "Pontiac",
408              "Porsche",
409              "Ram",
410              "Rivian",
411              "Rolls-Royce",
412              "SRT",
413              "Saab",
414              "Saturn",
415              "Scion",
416              "Smart",
417              "Subaru",
418              "Suzuki",
419              "Tesla",
420              "Toyota",
421              "Volkswagen",
422              "Volvo",
423              "A.P.C Motor Company",
424              "Adly",
425              "Aermacchi",
426              "AJP",
427              "AJS",
428              "Alcyon",
429              "Alta",
430              "Ambassador",
431              "American IronHorse",
432              "American Lifan",
433              "Apollo",
434              "Aprilia",
435              "ARC",
436              "Arch",
437              "Arctic Cat",
438              "Ariane",
439              "Ariel",
440              "Arlen Ness",
441              "Armor",
442              "Armstrong",
443              "Artisan",
444              "ASPT",
445              "Bajaj",
446              "Baotian",
447              "Barossa",
448              "Bashan",
449              "Battistinis",
450              "Beeline",
451              "Benelli",
452              "Beta",
453              "Better",
454              "Bianchi",
455              "Big Bear Choppers",
456              "Big Dog Motorcycles",
457              "Bimota",
458              "Bintelli",
459              "Blata",
460              "BMC",
461              "Boom",
462              "Borile",
463              "Boss Hoss",
464              "Bourget",
465              "Bown",
466              "Boxer",
467              "Brammo",
468              "Branson",
469              "Bridgestone",
470              "Brixton",
471              "Brough Superior",
472              "BSA",
473              "BTS",
474              "Buell",
475              "Bullit",
476              "Bultaco",
477              "Butler",
478              "Cagiva",
479              "California Motorcycle Company",
480              "California Scooter Company",
481              "Campagna",
482              "Can-Am",
483              "Cannondale",
484              "Casal",
485              "Cazador",
486              "CCM",
487              "CFMOTO",
488              "CH Racing",
489              "Champ",
490              "Chang Jiang",
491              "Chicago Scooter Co",
492              "Chunlan",
493              "Cimatti",
494              "Citycoco",
495              "Club Car",
496              "Cobra",
497              "Coleman",
498              "Condor",
499              "Confederate",
500              "Conquest Trikes",
501              "Coolster",
502              "Cotton",
503              "Cougar",
504              "Coventry Eagle",
505              "CPI",
506              "Cushman",
507              "CZ",
508              "Daelim",
509              "Daix",
510              "Dayang",
511              "Demon X",
512              "Derbi",
513              "Di Blasi",
514              "Diamo",
515              "Dichao",
516              "Direct Bikes",
517              "DKW",
518              "Dnepr",
519              "Dong Fang",
520              "Dot",
521              "Douglas",
522              "Dresda",
523              "Ducati",
524              "E-TON",
525              "E-Z-Go",
526              "Easy-Rider",
527              "EBR",
528              "Eclipse",
529              "Electric Motion",
530              "Electricycle",
531              "Energica",
532              "Eped",
533              "Erider",
534              "Erik Buell Racing",
535              "Excelsior Henderson",
536              "Fantic",
537              "Feiying",
538              "Fenian",
539              "Fosti",
540              "Francis-Barnett",
541              "Garelli",
542              "Gas Gas",
543              "Geely",
544              "Genata",
545              "Generic",
546              "Genuine Scooter Company",
547              "Ghezzi-Brian",
548              "Giantco",
549              "Gilera",
550              "Greeves",
551              "Grinnall",
552              "Hanway",
553              "Hao Nuo",
554              "Haotian",
555              "Harley-Davidson",
556              "Harris",
557              "Hartford",
558              "Hellbound Steel",
559              "Herald",
560              "Hesketh",
561              "Himo",
562              "Hisun",
563              "Honchin",
564              "Hongdu",
565              "Honley",
566              "Horex",
567              "Huatian",
568              "Huoniao",
569              "Husaberg",
570              "Husqvarna",
571              "Huvo",
572              "Hyosung",
573              "Ice Bear",
574              "Indian",
575              "Iron Eagle Motorcycle",
576              "Isomoto",
577              "Italika",
578              "Italjet",
579              "Itom",
580              "IZH",
581              "James",
582              "Jawa",
583              "Jbwco",
584              "JCM",
585              "Jialing",
586              "Jianshe",
587              "Jincheng",
588              "Jinfeng",
589              "Jinlun",
590              "John Deere",
591              "Johnny Pag",
592              "Jonway",
593              "Jotagas",
594              "Juicy Bike",
595              "Kalex",
596              "Kangchao",
597              "Kawasaki",
598              "Kayo",
599              "Keeway",
600              "Kinroad-Rock",
601              "KTM",
602              "Kymco",
603              "Lambretta",
604              "Lance",
605              "Lanying",
606              "Laverda",
607              "Lehman",
608              "Lehman Trikes",
609              "Leike",
610              "Lem",
611              "Levis",
612              "Lexmoto",
613              "Lifan",
614              "Linhai",
615              "Lintex",
616              "LML",
617              "Loncin",
618              "Longjia",
619              "Lyric",
620              "Magni",
621              "Maico",
622              "Malaguti",
623              "Martin",
624              "Masai",
625              "Mash",
626              "Matchless",
627              "Mavizen",
628              "Maxus",
629              "MBK",
630              "Megelli",
631              "Metisse",
632              "Mig",
633              "Mikilon",
634              "Mini Moto",
635              "Mobylette",
636              "Modenas",
637              "Mondial",
638              "Montesa",
639              "Morini",
640              "Moto Guzzi",
641              "Moto Morini",
642              "Moto-Hispania",
643              "Moto-Martin",
644              "Moto-Parilla",
645              "Moto-Roma",
646              "Motobecane",
647              "Motobi",
648              "Motor Trike",
649              "Motorini",
650              "Motus",
651              "Munch",
652              "Mutt",
653              "MV Agusta",
654              "MZ",
655              "Neco",
656              "New Hudson",
657              "New Imperial",
658              "New Map",
659              "Nippi",
660              "Nipponia",
661              "NIU",
662              "Norton",
663              "NSU",
664              "NVT",
665              "Omega",
666              "Oset",
667              "Ossa",
668              "Pannonia",
669              "Panther",
670              "Paramount Custom Cycles",
671              "Paton",
672              "Peace Sports",
673              "Peirspeed",
674              "Pembleton",
675              "Peripoli",
676              "Petronas",
677              "Peugeot",
678              "PGO",
679              "Piaggio",
680              "Pioneer",
681              "Pitster Pro",
682              "Polaris",
683              "Polini",
684              "Por",
685              "Precision Cycle Works",
686              "Puch",
687              "Pulse",
688              "Qingqi",
689              "Quadro",
690              "Quantya",
691              "Raleigh",
692              "Red Horse",
693              "Regent",
694              "Revtech",
695              "Rewaco",
696              "Rhino",
697              "Rickman",
698              "Ridley",
699              "Rieju",
700              "Roadsmith",
701              "Roehr",
702              "Rokon",
703              "Romarsh",
704              "Romeo",
705              "Rovigo",
706              "Roxon",
707              "Royal Alloy",
708              "Royal Enfield",
709              "Rudge",
710              "Rumi",
711              "Sachs",
712              "Sanglas",
713              "Sanya",
714              "Saxon",
715              "Schwinn",
716              "Scomadi",
717              "Scorpa",
718              "Scott",
719              "Secma",
720              "Seeley",
721              "Segway",
722              "Senke",
723              "SFM",
724              "Sherco",
725              "Shineray",
726              "Siamoto",
727              "Silk",
728              "Simson",
729              "Sinnis",
730              "Skygo",
731              "Skyjet",
732              "Skyteam",
733              "Slam",
734              "Slingshot",
735              "Smc",
736              "Spirit",
737              "Spondon",
738              "SSR Motorsports",
739              "Stacyc",
740              "Star Motorcycles",
741              "Starway",
742              "Stomp",
743              "Sucker Punch Sallys",
744              "Sukida",
745              "Sumo",
746              "Sunbeam",
747              "Super Soco",
748              "Superbyke",
749              "Swift",
750              "SWM",
751              "SYM",
752              "Taizhou Zhongneng",
753              "Tamoretti",
754              "Tao Motor",
755              "Tao Tao",
756              "Terrot",
757              "TGB",
758              "Thoroughbred Motorsports",
759              "Thumpstar",
760              "Thunder Mountain",
761              "Titan",
762              "TM",
763              "Tmec",
764              "Tomos",
765              "TOR",
766              "Track",
767              "Trailmaster",
768              "Triton",
769              "Triumph",
770              "UBCO",
771              "UM",
772              "Ural",
773              "Urban",
774              "Vanderhall",
775              "Vectrix",
776              "Velocette",
777              "Velosolex",
778              "Vespa",
779              "Victoria",
780              "Victory",
781              "Vincent",
782              "Vitacci",
783              "Vor",
784              "Voxan",
785              "Vyrus",
786              "Wangye",
787              "Wild West",
788              "WK Bikes",
789              "Wolf Brand Scooters",
790              "Wuyang",
791              "Xgjao",
792              "Xispa",
793              "Xtreme Motor Co.",
794              "Yamaha",
795              "Yamasaki",
796              "Yamoto",
797              "YCF",
798              "Yiben",
799              "Yuan",
800              "Zenardi",
801              "Zennco",
802              "Zero",
803              "Zero Engineering",
804              "Zhejiang",
805              "Znen",
806              "Zodiac",
807              "Zongshen",
808              "Zontes",
809              "Zoom",
810              "Zündapp",
811              "Zycoo"
812            ],
813            "type": "string",
814            "description": "Make of vehicle",
815            "default": ""
816          },
817          "vehicleExteriorColors": {
818            "title": "Exterior Colors",
819            "uniqueItems": true,
820            "type": "array",
821            "description": "Options: black|charcoal|grey|white|off_white|tan|beige|yellow|gold|brown|orange|red|burgundy|pink|purple|blue|turquoise|green|silver|other",
822            "default": [],
823            "items": {
824              "type": "string"
825            }
826          },
827          "vehicleInteriorColors": {
828            "title": "Interior Colors",
829            "uniqueItems": true,
830            "type": "array",
831            "description": "Options: black|charcoal|grey|white|off_white|tan|beige|yellow|gold|brown|orange|red|burgundy|pink|purple|blue|turquoise|green|silver|other",
832            "default": [],
833            "items": {
834              "type": "string"
835            }
836          },
837          "propertyType": {
838            "title": "Rental Type",
839            "uniqueItems": true,
840            "type": "array",
841            "description": "Options: apartment-condo|house|private_room-shared_room|builder_floor",
842            "default": [],
843            "items": {
844              "type": "string"
845            }
846          },
847          "isC2CListingOnly": {
848            "title": "Listings from individuals only",
849            "type": "boolean",
850            "description": "Is listed by individual",
851            "default": false
852          },
853          "minBedrooms": {
854            "title": "Min Bedrooms",
855            "enum": [
856              "",
857              "1",
858              "2",
859              "3",
860              "4",
861              "5",
862              "6"
863            ],
864            "type": "string",
865            "description": "Enter minimum required bedrooms",
866            "default": ""
867          },
868          "minBathrooms": {
869            "title": "Min Bathrooms",
870            "enum": [
871              "",
872              "4",
873              "6",
874              "8",
875              "12",
876              "16",
877              "20"
878            ],
879            "type": "string",
880            "description": "Enter minimum required bathrooms",
881            "default": ""
882          },
883          "minAreaSize": {
884            "title": "Min Area",
885            "minimum": 0,
886            "maximum": 2147483647,
887            "type": "integer",
888            "description": "Enter minimum required Area: 0 represents no min. area"
889          },
890          "maxAreaSize": {
891            "title": "Max Area",
892            "minimum": 0,
893            "maximum": 2147483647,
894            "type": "integer",
895            "description": "Enter maximum required Area: 0 represents no max. area"
896          },
897          "deliveryMethod": {
898            "title": "Delivery method",
899            "enum": [
900              "",
901              "local_pick_up",
902              "shipping"
903            ],
904            "type": "string",
905            "description": "Not applicable to Property Rentals/Home Sales",
906            "default": ""
907          },
908          "maxConcurrency": {
909            "title": "Max Concurrency",
910            "type": "integer",
911            "description": "Depends on your apify plan limits, max allowed upto 25",
912            "default": 5
913          },
914          "maxRequestsPerMinute": {
915            "title": "Max request per minute",
916            "type": "integer",
917            "description": "Max allowed upto 600",
918            "default": 200
919          }
920        }
921      },
922      "runsResponseSchema": {
923        "type": "object",
924        "properties": {
925          "data": {
926            "type": "object",
927            "properties": {
928              "id": {
929                "type": "string"
930              },
931              "actId": {
932                "type": "string"
933              },
934              "userId": {
935                "type": "string"
936              },
937              "startedAt": {
938                "type": "string",
939                "format": "date-time",
940                "example": "2025-01-08T00:00:00.000Z"
941              },
942              "finishedAt": {
943                "type": "string",
944                "format": "date-time",
945                "example": "2025-01-08T00:00:00.000Z"
946              },
947              "status": {
948                "type": "string",
949                "example": "READY"
950              },
951              "meta": {
952                "type": "object",
953                "properties": {
954                  "origin": {
955                    "type": "string",
956                    "example": "API"
957                  },
958                  "userAgent": {
959                    "type": "string"
960                  }
961                }
962              },
963              "stats": {
964                "type": "object",
965                "properties": {
966                  "inputBodyLen": {
967                    "type": "integer",
968                    "example": 2000
969                  },
970                  "rebootCount": {
971                    "type": "integer",
972                    "example": 0
973                  },
974                  "restartCount": {
975                    "type": "integer",
976                    "example": 0
977                  },
978                  "resurrectCount": {
979                    "type": "integer",
980                    "example": 0
981                  },
982                  "computeUnits": {
983                    "type": "integer",
984                    "example": 0
985                  }
986                }
987              },
988              "options": {
989                "type": "object",
990                "properties": {
991                  "build": {
992                    "type": "string",
993                    "example": "latest"
994                  },
995                  "timeoutSecs": {
996                    "type": "integer",
997                    "example": 300
998                  },
999                  "memoryMbytes": {
1000                    "type": "integer",
1001                    "example": 1024
1002                  },
1003                  "diskMbytes": {
1004                    "type": "integer",
1005                    "example": 2048
1006                  }
1007                }
1008              },
1009              "buildId": {
1010                "type": "string"
1011              },
1012              "defaultKeyValueStoreId": {
1013                "type": "string"
1014              },
1015              "defaultDatasetId": {
1016                "type": "string"
1017              },
1018              "defaultRequestQueueId": {
1019                "type": "string"
1020              },
1021              "buildNumber": {
1022                "type": "string",
1023                "example": "1.0.0"
1024              },
1025              "containerUrl": {
1026                "type": "string"
1027              },
1028              "usage": {
1029                "type": "object",
1030                "properties": {
1031                  "ACTOR_COMPUTE_UNITS": {
1032                    "type": "integer",
1033                    "example": 0
1034                  },
1035                  "DATASET_READS": {
1036                    "type": "integer",
1037                    "example": 0
1038                  },
1039                  "DATASET_WRITES": {
1040                    "type": "integer",
1041                    "example": 0
1042                  },
1043                  "KEY_VALUE_STORE_READS": {
1044                    "type": "integer",
1045                    "example": 0
1046                  },
1047                  "KEY_VALUE_STORE_WRITES": {
1048                    "type": "integer",
1049                    "example": 1
1050                  },
1051                  "KEY_VALUE_STORE_LISTS": {
1052                    "type": "integer",
1053                    "example": 0
1054                  },
1055                  "REQUEST_QUEUE_READS": {
1056                    "type": "integer",
1057                    "example": 0
1058                  },
1059                  "REQUEST_QUEUE_WRITES": {
1060                    "type": "integer",
1061                    "example": 0
1062                  },
1063                  "DATA_TRANSFER_INTERNAL_GBYTES": {
1064                    "type": "integer",
1065                    "example": 0
1066                  },
1067                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
1068                    "type": "integer",
1069                    "example": 0
1070                  },
1071                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
1072                    "type": "integer",
1073                    "example": 0
1074                  },
1075                  "PROXY_SERPS": {
1076                    "type": "integer",
1077                    "example": 0
1078                  }
1079                }
1080              },
1081              "usageTotalUsd": {
1082                "type": "number",
1083                "example": 0.00005
1084              },
1085              "usageUsd": {
1086                "type": "object",
1087                "properties": {
1088                  "ACTOR_COMPUTE_UNITS": {
1089                    "type": "integer",
1090                    "example": 0
1091                  },
1092                  "DATASET_READS": {
1093                    "type": "integer",
1094                    "example": 0
1095                  },
1096                  "DATASET_WRITES": {
1097                    "type": "integer",
1098                    "example": 0
1099                  },
1100                  "KEY_VALUE_STORE_READS": {
1101                    "type": "integer",
1102                    "example": 0
1103                  },
1104                  "KEY_VALUE_STORE_WRITES": {
1105                    "type": "number",
1106                    "example": 0.00005
1107                  },
1108                  "KEY_VALUE_STORE_LISTS": {
1109                    "type": "integer",
1110                    "example": 0
1111                  },
1112                  "REQUEST_QUEUE_READS": {
1113                    "type": "integer",
1114                    "example": 0
1115                  },
1116                  "REQUEST_QUEUE_WRITES": {
1117                    "type": "integer",
1118                    "example": 0
1119                  },
1120                  "DATA_TRANSFER_INTERNAL_GBYTES": {
1121                    "type": "integer",
1122                    "example": 0
1123                  },
1124                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
1125                    "type": "integer",
1126                    "example": 0
1127                  },
1128                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
1129                    "type": "integer",
1130                    "example": 0
1131                  },
1132                  "PROXY_SERPS": {
1133                    "type": "integer",
1134                    "example": 0
1135                  }
1136                }
1137              }
1138            }
1139          }
1140        }
1141      }
1142    }
1143  }
1144}

Facebook Marketplace 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 Facebook Marketplace 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

  • 25 monthly users

  • 8 bookmarks

  • 92% runs succeeded

  • 5.6 hours response time

  • Created in Sep 2023

  • Modified 14 days ago