1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "prompt": "Monitor buyer intent for Example SaaS using https://example.com/careers and https://example.com/blog for the Head of Sales persona. Look for RevOps, CRM, automation, expansion, and AI signals.",
10 "companies": [{
11 "companyName": "Example SaaS",
12 "urls": ["https://example.com/careers"],
13 "targetPersona": "Head of Sales",
14 }],
15 "signalKeywords": [
16 "hiring",
17 "sales operations",
18 "revops",
19 "crm",
20 "automation",
21 ],
22}
23
24
25run = client.actor("techionik9993/techionik-buyer-signal-mcp").call(run_input=run_input)
26
27
28print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
29for item in client.dataset(run["defaultDatasetId"]).iterate_items():
30 print(item)
31
32