1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = { "noticeText": """Title: Example Network Services Contract
9Buyer: Example Borough Council
10Reference: EX-2026-001
11Submission deadline: 15 October 2026 at 14:00 UTC
12Estimated value: GBP 250000
13Location: London
14CPV: 72400000
15The supplier must provide 24/7 network monitoring.""" }
16
17
18run = client.actor("zahi90/tenderbrief").call(run_input=run_input)
19
20
21print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
22for item in client.dataset(run.default_dataset_id).iterate_items():
23 print(item)
24
25