1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "companyProfile": {
10 "name": "Northstar Cloud",
11 "capabilities": [
12 "cloud infrastructure",
13 "managed services",
14 "migration",
15 ],
16 "sectors": [
17 "technology",
18 "public sector",
19 ],
20 "regions": ["Europe"],
21 "certifications": ["ISO 27001"],
22 "keywords": [
23 "Kubernetes",
24 "AWS",
25 ],
26 },
27 "opportunities": [{
28 "id": "RFP-2026-104",
29 "title": "Cloud infrastructure migration and managed services",
30 "buyer": "Example Public Agency",
31 "description": "Migrate workloads and operate Kubernetes infrastructure across Europe.",
32 "deadline": "2026-09-15",
33 "location": "Europe",
34 "estimatedValue": 250000,
35 "currency": "EUR",
36 "requiredCertifications": ["ISO 27001"],
37 }],
38}
39
40
41run = client.actor("egeusta/tender-rfp-opportunity-matcher").call(run_input=run_input)
42
43
44print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
45for item in client.dataset(run.default_dataset_id).iterate_items():
46 print(item)
47
48