1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "brand": {
10 "name": "Clash Coach AI",
11 "aliases": [
12 "ClashCoachAI",
13 "Clash Coach",
14 "ClashCoach.ai",
15 ],
16 "ownedDomains": ["clashcoachai.com"],
17 },
18 "competitors": [
19 {
20 "name": "Royale Buddy",
21 "aliases": ["RoyaleBuddy"],
22 "ownedDomains": ["royalebuddy.com"],
23 },
24 {
25 "name": "MetaDecks",
26 "aliases": ["Meta Decks"],
27 "ownedDomains": ["metadecks.gg"],
28 },
29 {
30 "name": "RoyaleAPI",
31 "aliases": ["Royale API"],
32 "ownedDomains": ["royaleapi.com"],
33 },
34 ],
35 "templateVariables": {
36 "category": "Clash Royale coaching app",
37 "audience": "competitive Clash Royale players",
38 },
39 "locale": {
40 "country": "US",
41 "language": "en",
42 },
43}
44
45
46run = client.actor("glaciological_hexahedron/aeo-citation-monitor").call(run_input=run_input)
47
48
49print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
50for item in client.dataset(run["defaultDatasetId"]).iterate_items():
51 print(item)
52
53