Skip to main content

Company Government Opportunities

Find open federal solicitations where a specific company is the incumbent contractor or a likely bidder based on their NAICS codes and existing contract portfolio.

Parameters

NameTypeRequiredDefaultDescription
companyDomainstringYes-The company domain to look up (e.g., "boozallen.com").
includeIncumbentOnlybooleanNofalseOnly show opportunities where the company is the incumbent.

Required Integrations

  • datagov (SAM.gov / Data.gov API key)

How It Works

  1. Resolves the company via SAM.gov entity registration (by domain)
  2. Identifies the company's NAICS codes and existing contract portfolio
  3. Searches SAM.gov for matching open solicitations
  4. Tags each opportunity with incumbentStatus ("incumbent", "likely_bidder", or "unknown")

Use Cases

  • Identifying recompete opportunities for government contractors
  • Finding new opportunities aligned with a company's capabilities
  • Tracking incumbent status on expiring contracts
  • Government sales intelligence and pipeline building

Example Usage

Find all matching opportunities

{
"tool": "company_gov_opportunities",
"parameters": {
"companyDomain": "boozallen.com"
}
}

Incumbent-only opportunities

{
"tool": "company_gov_opportunities",
"parameters": {
"companyDomain": "palantir.com",
"includeIncumbentOnly": true
}
}

Response Format

The tool returns a structured JSON response with:

  • companyName, companyDomain
  • samEntity: SAM.gov registration data (uei, cageCode, legalBusinessName)
  • opportunities: Array of opportunity objects with opportunityId, title, agency, responseDeadline, daysUntilDeadline, incumbentStatus, matchReason, and link
  • totalOpportunities: Count of matching opportunities

Error Handling

Common errors:

  • Missing Integration: SAM.gov / Data.gov API key not configured (requires datagov integration)
  • Company Not Found: Domain not found in SAM.gov entity registry
  • Rate Limit: API rate limit exceeded
  • company_gov_relationships - Prime/sub contractor relationships
  • search_gov_opportunities - Broader opportunity search (not company-specific)
  • search_federal_contracts - Search past contract awards
  • company_contracts - ICT outsourced contracts

Next Steps