RFP Bid Fit Risk Scorer
Pricing
Pay per usage
Go to Apify Store
RFP Bid Fit Risk Scorer
Turn imported RFP and tender rows into deterministic bid/no-bid fit scores, risk flags, and next actions.
RFP Bid Fit Risk Scorer
Pricing
Pay per usage
Turn imported RFP and tender rows into deterministic bid/no-bid fit scores, risk flags, and next actions.
You can access the RFP Bid Fit Risk Scorer programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.
1from apify_client import ApifyClient2
3# Initialize the ApifyClient with your Apify API token4# Replace '<YOUR_API_TOKEN>' with your token.5client = ApifyClient("<YOUR_API_TOKEN>")6
7# Prepare the Actor input8run_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# Run the Actor and wait for it to finish90run = client.actor("rotvuvo/rfp-bid-fit-risk-scorer").call(run_input=run_input)91
92# Fetch and print Actor results from the run's dataset (if there are any)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# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-startThe Apify API client for Python is the official library that allows you to use RFP Bid Fit Risk Scorer API in Python, providing convenience functions and automatic retries on errors.
Install the apify-client
$pip install apify-clientOther API clients include: