1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "items": [
10 {
11 "title": "Managed Detection and Response for Texas School District",
12 "description": "District needs cybersecurity MDR, cloud security assessment, and incident response support.",
13 "buyer": "Austin ISD",
14 "deadline": "2026-08-10",
15 "value": "$120,000",
16 "category": "Cybersecurity",
17 "location": "Texas",
18 "url": "https://procurement.example/rfp/mdr-texas-schools",
19 "requirements": [
20 "Vendor must show SOC 2 evidence",
21 "Remote delivery accepted",
22 ],
23 "proposalEffortHours": 48,
24 "publishedAt": "2026-07-01",
25 },
26 {
27 "solicitationTitle": "Cloud Security Assessment Services",
28 "scope": "Assessment for public sector cloud controls and incident response readiness.",
29 "organization": "Regional Transit Authority",
30 "responseDeadline": "2026-08-05T17:00:00-05:00",
31 "contractValue": "USD 75,500",
32 "naics": "541519",
33 "state": "Texas",
34 "solicitationUrl": "procurement.example/rfp/cloud-assessment",
35 },
36 {
37 "name": "Statewide Security Operations Center Support",
38 "summary": "Mandatory FedRAMP authorization and onsite delivery required.",
39 "agency": "State Technology Office",
40 "dueDate": "2026-07-01",
41 "estimatedValue": 180000,
42 "sector": "Cybersecurity",
43 "region": "Texas",
44 "tenderUrl": "https://procurement.example/rfp/fedramp-soc",
45 "mandatoryRequirements": "Bidder must have FedRAMP authorization and SOC 2.",
46 },
47 ],
48 "companyProfile": {
49 "companyName": "Northstar Cyber Services",
50 "capabilities": [
51 "managed detection and response",
52 "incident response",
53 "cloud security assessment",
54 ],
55 "industries": [
56 "education",
57 "public sector",
58 ],
59 "certifications": [
60 "SOC 2",
61 "CMMC Level 2",
62 ],
63 "regions": [
64 "Texas",
65 "Remote",
66 "United States",
67 ],
68 "targetKeywords": [
69 "cybersecurity",
70 "MDR",
71 "incident response",
72 ],
73 "avoidKeywords": [
74 "janitorial",
75 "construction",
76 ],
77 "minContractValue": 25000,
78 "maxContractValue": 500000,
79 "maxProposalEffortHours": 80,
80 "currentCapacity": "medium",
81 "relationshipKeywords": [
82 "incumbent partner",
83 "existing vendor",
84 ],
85 },
86 "scrapedAt": "2026-07-08T00:00:00.000Z",
87}
88
89
90run = client.actor("rotvuvo/rfp-bid-fit-risk-scorer").call(run_input=run_input)
91
92
93print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
94for item in client.dataset(run["defaultDatasetId"]).iterate_items():
95 print(item)
96
97