1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = { "competitors": [
9 {
10 "name": "Notion",
11 "pricingUrl": "https://www.notion.so/pricing",
12 },
13 {
14 "name": "Coda",
15 "pricingUrl": "https://coda.io/pricing",
16 },
17 {
18 "name": "Linear",
19 "pricingUrl": "https://linear.app/pricing",
20 },
21 ] }
22
23
24run = client.actor("congism/competitor-pricing-monitor").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