1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "mode": "searchItems",
10 "query": "iPhone",
11 "sortBy": "relevance",
12 "location": "",
13 "publishedToday": False,
14 "category": "",
15 "itemCondition": "",
16 "tradeType": "",
17 "forRent": "",
18 "sellerType": "",
19 "itemFreeShippingOnly": False,
20 "carFuel": "",
21 "carBodyType": "",
22 "carTransmission": "",
23 "carDealerSegment": "",
24 "carWheelDrive": "",
25 "carColour": "",
26 "carSalesForm": "",
27 "carRegistrationClass": "",
28 "carWarrantyInsurance": "",
29 "carDocumentation": "",
30 "carWheelSets": "",
31 "carSmoothTrade": False,
32 "mcType": "",
33 "mcCondition": "",
34 "mcFuel": "",
35 "boatClass": "",
36 "boatMotorType": "",
37 "boatFuel": "",
38 "boatMaterial": "",
39 "truckSegment": "",
40 "commercialDealerSegment": "",
41 "busSegment": "",
42 "constructionSegment": "",
43 "agricultureToolsType": "",
44 "caravanSegment": "",
45 "rvCondition": "",
46 "rvLocation": "",
47 "rvSleepers": "",
48 "caravanDealerSegment": "",
49 "motorhomeSegment": "",
50 "motorhomeSeats": "",
51 "motorhomeTransmission": "",
52 "motorhomeWheelDrive": "",
53 "jobExtent": "",
54 "jobDuration": "",
55 "jobSector": "",
56 "jobWorkingLanguage": "",
57 "jobHomeOffice": "",
58 "jobManagerRole": "",
59 "jobWorkExperience": "",
60 "jobEducation": "",
61 "jobOccupation": "",
62 "jobIndustry": "",
63 "jobApplicationDeadline": "",
64 "propertyType": "",
65 "realEstateLifecycle": "",
66 "realEstateIsNewProperty": "",
67 "realEstateOwnershipType": "",
68 "realEstateEnergyLabel": "",
69 "realEstateFloor": "",
70 "realEstateFurnished": "",
71 "realEstateAnimalsAllowed": "",
72 "realEstateMinBedrooms": "",
73 "realEstateSellerType": "",
74 "maxItems": 20,
75}
76
77
78run = client.actor("crawlerbros/finn-no-scraper").call(run_input=run_input)
79
80
81print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
82for item in client.dataset(run.default_dataset_id).iterate_items():
83 print(item)
84
85