1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "mode": "search",
10 "resultType": "shows",
11 "queries": ["charizard"],
12 "urls": [
13 "https://www.whatnot.com/tag/pokemon_cards",
14 "https://www.whatnot.com/user/spacenarwhalz",
15 ],
16 "categories": ["pokemon_cards"],
17 "incrementalMode": False,
18 "emitUnchanged": False,
19 "emitExpired": False,
20 "proxy": { "useApifyProxy": True },
21}
22
23
24run = client.actor("abotapi/whatnot-scraper").call(run_input=run_input)
25
26
27print(f"๐พ Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
28for item in client.dataset(run.default_dataset_id).iterate_items():
29 print(item)
30
31