TYSON FOODS, INC. shows nearly all of its federal procurement activity with the Agricultural Marketing Service, which accounts for the full $1.60 billion obligated in this analysis window. Contracting is concentrated in poultry processing under NAICS 311615, with smaller obligations in animal slaughtering and meat processed from carcasses.
Federal Contractor
TYSON FOODS, INC. Federal Contract Obligations (Last 10 Years)
TYSON FOODS, INC. (CAGE 6N915, UEI DX7AU4JMLPC7) recorded 765 federal award actions and $1.60 billion in obligations over the last 10 years.
This page summarizes FPDS-observed obligations and award actions for the last 10 years; annual figures shown here include 2021 through 2025.
About TYSON FOODS, INC. federal contract activity
TYSON FOODS, INC. (CAGE 6N915, UEI DX7AU4JMLPC7) recorded 765 FPDS-observed awards over the last 10 years, with total obligations of $1.60 billion and an average award value of $2.08 million. The obligation base is concentrated in food supply activity tied to federal procurement, indicating a recurring vendor relationship rather than isolated transactions.
Agency mix and customer concentration
All observed obligations in the analysis window are attributed to the AGRICULTURAL MARKETING SERVICE, which accounted for the full $1.60 billion and all 765 awards. This indicates a highly concentrated buyer relationship with no meaningful agency diversification in the provided dataset.
Industry profile based on NAICS activity
The portfolio is dominated by NAICS 311615, Poultry Processing, which represents $1.55 billion across 711 awards and accounts for the overwhelming share of total obligations. Secondary activity appears in NAICS 311611, Animal (Except Poultry) Slaughtering, at $42.72 million across 51 awards, with a minimal residual amount in NAICS 311612, Meat Processed from Carcasses, at $1.66 million across 3 awards.
Annual contract trend over the analysis window
Annual obligations remained relatively stable in the 2022-2025 period, ranging from $227.69 million to $244.10 million, with award counts fluctuating between 84 and 170. The 2021 level of $115.88 million was materially lower than subsequent years, suggesting a step-up in procurement volume beginning in 2022.
How to interpret this page
This summary is based on FPDS award-obligation records associated with CAGE 6N915 and UEI DX7AU4JMLPC7 over the last 10 years. Obligations are summarized by agency, NAICS, and fiscal year as provided, and averages are calculated from total obligated dollars divided by award count.
Top Agencies
SELECT
agency_id,
agency_name,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
anyHeavy(content__award__purchaserInformation__contractingOfficeAgencyID__name) AS agency_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
contract_type = 1
AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '6N915'
AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY agency_id
)
ORDER BY total_obligated DESC
LIMIT 10
| Agency ID | Agency Name | Total Obligated | Readable | Award Actions |
|---|---|---|---|---|
| 12K2 | AGRICULTURAL MARKETING SERVICE | 1,595,008,207.88 | 1.60 billion | 765 |
Insight
Over the last 10 years, TYSON FOODS, INC. (CAGE 6N915) has $1.60 billion in obligated contract value across 765 awards, with an average award value of about $2.08 million. All reported obligations in this period are concentrated in a single agency, the Agricultural Marketing Service (12K2), indicating complete agency-level concentration of federal spending for this vendor in the provided data. This pattern suggests a highly focused procurement relationship rather than a diversified agency portfolio.
Top NAICS
SELECT
naics_code,
naics_name,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
anyHeavy(content__award__productOrServiceInformation__principalNAICSCode__description) AS naics_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
contract_type = 1
AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '6N915'
AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
AND content__award__productOrServiceInformation__principalNAICSCode != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY naics_code
)
ORDER BY total_obligated DESC
LIMIT 10
| NAICS Code | Description | Total Obligated | Readable | Award Actions |
|---|---|---|---|---|
| 311615 | POULTRY PROCESSING | 1,550,628,487.91 | 1.55 billion | 711 |
| 311611 | ANIMAL (EXCEPT POULTRY) SLAUGHTERING | 42,718,531.77 | 42.72 million | 51 |
| 311612 | MEAT PROCESSED FROM CARCASSES | 1,661,188.20 | 1.66 million | 3 |
Insight
Over the last 10 years, TYSON FOODS, INC. shows a highly concentrated obligation profile in NAICS 311615 (Poultry Processing), which accounts for $1.55 billion across 711 awards, or the vast majority of the vendor’s $1.60 billion total obligated. The remaining obligations are much smaller and are distributed primarily across NAICS 311611 (Animal, except Poultry, Slaughtering) at $42.72 million in 51 awards and NAICS 311612 (Meat Processed from Carcasses) at $1.66 million in 3 awards. This distribution indicates that procurement activity is overwhelmingly centered on poultry processing, with limited secondary activity in other meat processing categories.
Annual Trend
SELECT
year,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
contract_type = 1
AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '6N915'
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
)
ORDER BY year DESC
| Year | Total Obligated | Readable | Award Actions |
|---|---|---|---|
| 2025 | 233,936,975.41 | 233.94 million | 170 |
| 2024 | 235,704,034.43 | 235.70 million | 159 |
| 2023 | 227,694,259.21 | 227.69 million | 84 |
| 2022 | 244,098,034.11 | 244.10 million | 85 |
| 2021 | 115,884,291.16 | 115.88 million | 50 |
| 2020 | 142,986,534.50 | 142.99 million | 92 |
| 2019 | 184,235,855.42 | 184.24 million | 59 |
| 2018 | 108,279,200.19 | 108.28 million | 39 |
| 2017 | 102,189,023.45 | 102.19 million | 26 |
| 2016 | 0.00 | 0.00 | 1 |
Insight
TYSON FOODS, INC. shows a concentrated 10-year obligation profile, with total FPDS obligations of $1.60 billion across 765 awards and an average award value of $2.08 million. Annual obligations were relatively stable and elevated from 2019 through 2025, ranging from $115.88 million to $244.10 million, with the highest annual obligation in 2022 and similarly strong levels in 2023–2025. Earlier activity was materially lower, including $102.19 million in 2017, $108.28 million in 2018, and no obligated value in 2016 despite one award, indicating that recent years account for the bulk of funding volume.
Use FPDS Query for deeper contractor analysis
Explore federal procurement data with custom SQL, fast filtering, and deeper contractor analysis across buying agencies, NAICS, and annual trends.
Continue from this last 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.