1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "startUrls": [
10 { "url": "https://github.blog/changelog/" },
11 { "url": "https://nodejs.org/en/blog/release" },
12 ],
13 "sourceTexts": [
14 "July 18, 2026: FlowBase launched beta support for Salesforce field mapping, improved API rate-limit headers, and fixed webhook retry failures for enterprise customers.",
15 "Release notes 2026-08-02: CartPilot added Shopify Markets integration, new checkout analytics dashboard, and admin controls for multi-store teams.",
16 ],
17}
18
19
20run = client.actor("seeb/changelog-radar-for-saas").call(run_input=run_input)
21
22
23print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
24for item in client.dataset(run["defaultDatasetId"]).iterate_items():
25 print(item)
26
27