Skip to main content

Company Government Relationships

Show prime/subcontractor relationships for a company from federal subaward data on USAspending.gov.

Parameters

NameTypeRequiredDefaultDescription
companyDomainstringYes-The company domain to look up (e.g., "boozallen.com").
minSubawardValuenumberNo-Minimum subaward value filter in USD.

Required Integrations

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

How It Works

  1. Resolves the company via SAM.gov entity registration (by domain)
  2. Searches USAspending.gov subaward records for the company
  3. Identifies relationships both as a prime contractor (who they subcontract to) and as a subcontractor (who hires them)
  4. Aggregates by partner with contract counts and total values

Use Cases

  • Identifying teaming partners for government proposals
  • Understanding prime/sub relationships in government contracting
  • Competitive intelligence on government deal structures
  • Mapping the ecosystem around a government contractor

Example Usage

Basic relationship lookup

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

Response Format

The tool returns a structured JSON response with:

  • companyName, companyDomain
  • samEntity: SAM.gov registration data (uei, cageCode, legalBusinessName)
  • asSubcontractor: Relationships where the company is a sub, with totalValue, totalValueFormatted, and primeContractors array
  • asPrimeContractor: Relationships where the company is the prime, with totalValue, totalValueFormatted, and subcontractors array

Each partner includes partnerName, contractCount, totalValue, agencies, and recentContract details.

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_opportunities - Find open opportunities for a company
  • search_federal_contracts - Search past contract awards
  • search_gov_opportunities - Search open solicitations
  • company_contracts - ICT outsourced contracts

Next Steps