Skip to main content

Company Gov Relationships

Map a single company's federal teaming partners from USAspending.gov subaward records. Given a company domain, it resolves the company to its SAM.gov entity (UEI, CAGE code), then aggregates two directions: as a subcontractor, which prime contractors pass work down to it; and as a prime, which subcontractors it passes work down to. Each partner rollup includes contract count, total subaward value, and the largest recent award. Trigger on questions like "who does <company> team with on federal contracts?", "which primes subcontract to <company>?", or "who are <company>'s subcontractors on government work?". Use this when you want a company's partner/teaming network on federal deals. Do NOT use this to find OPEN solicitations a company should bid on — use company_gov_opportunities (incumbent/likely-bidder opportunities for one company) or search_gov_opportunities (broad SAM.gov RFP/RFQ search by keyword/NAICS/agency). Do NOT use this for a company's commercial ICT/outsourcing (GSI) contracts — use company_contracts instead. Only covers subaward (prime↔sub) relationships, not top-level prime award totals. Requires the SAM.gov (Data.gov) integration to be configured.

Credits

1 — Per call. See the full credit table for how AI Credits work.

Parameters

NameTypeDefaultDescription
companyDomain Requiredstring-The company domain to look up (e.g., "palantir.com"). Protocol prefixes (http://, https://), leading www., and trailing paths/queries/fragments are accepted and stripped automatically; case is normalized.
relationshipTypestringbothWhich teaming direction to return: "prime" = the company's own subcontractors (company acts as prime); "sub" = the primes that subcontract to the company (company acts as sub); "both" (default) returns both directions.
minAmountnumber-Only include subawards worth at least this many USD, e.g. 100000 for $100K+. Applied per subaward before partner rollups are computed. Omit to include all.
fiscalYearStartnumber-Earliest federal fiscal year to search, as a 4-digit year, e.g. 2020. Defaults to the current year minus 5. Data is aggregated from this year to the present.
limitnumber50Maximum number of distinct partner companies returned per direction, ranked by total subaward value descending (1-100, default 50).

Required Integrations

This tool is only available when your organization has the following integration configured in the Phoenix Integrations settings:

  • SAM.gov (Data.gov) (datagov)

Use Cases

  • Who does a company team with on federal contracts, and in which direction (prime vs. sub)?
  • Which prime contractors subcontract work to this company? — relationshipType:'sub'
  • Which subcontractors does this company pass work down to as a prime? — relationshipType:'prime'
  • Which of a company's federal partners represent the largest subaward dollars? — ranked by total value
  • Filter a teaming network to only material relationships — minAmount to drop small subawards

Example Usage

Full teaming network for a company

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

Primes that subcontract to a company, $100K+ only

{
"tool": "company_gov_relationships",
"arguments": {
"companyDomain": "palantir.com",
"relationshipType": "sub",
"minAmount": 100000
}
}

A company's own subcontractors since FY2020

{
"tool": "company_gov_relationships",
"arguments": {
"companyDomain": "boozallen.com",
"relationshipType": "prime",
"fiscalYearStart": 2020
}
}

Response Format

FieldTypeDescription
companyNamestringResolved company name from SAM.gov
companyDomainstringThe company domain that was looked up
samEntityobjectSAM.gov entity registration details
samEntity.ueistring
samEntity.cageCodestring
samEntity.legalBusinessNamestring
asSubcontractorobjectRelationships where this company acts as a subcontractor
asSubcontractor.totalValuenumber
asSubcontractor.totalValueFormattedstring
asSubcontractor.primeContractorsarray
asSubcontractor.primeContractors[].partnerNamestring
asSubcontractor.primeContractors[].contractCountnumber
asSubcontractor.primeContractors[].totalValuenumber
asSubcontractor.primeContractors[].totalValueFormattedstring
asSubcontractor.primeContractors[].agenciesarray
asPrimeContractorobjectRelationships where this company acts as the prime contractor
asPrimeContractor.totalValuenumber
asPrimeContractor.totalValueFormattedstring
asPrimeContractor.subcontractorsarray
asPrimeContractor.subcontractors[].partnerNamestring
asPrimeContractor.subcontractors[].contractCountnumber
asPrimeContractor.subcontractors[].totalValuenumber
asPrimeContractor.subcontractors[].totalValueFormattedstring
asPrimeContractor.subcontractors[].agenciesarray

company_gov_opportunities, search_gov_opportunities, company_contracts, search_federal_contracts