Federal Contractor

TYSON FOODS, INC. Federal Contract Obligations (Last 5 Years)

TYSON FOODS, INC. federal contract activity for the last 5 years shows 548 award actions and $1.06 billion in obligated value, led by the Agricultural Marketing Service.

TYSON FOODS, INC. (CAGE 6N915, UEI DX7AU4JMLPC7) received 548 federal award actions in the last 5 years, with total obligated value of $1,057,317,594.32 and an average action value of $1,929,411.66. Most of this activity was under NAICS 311615, Poultry Processing, with smaller obligations under NAICS 311611, Animal (Except Poultry) Slaughtering.

Generated at 03/21/2026

Analysis period: Last 5 years

Annual obligations ranged from $115.88 million in 2021 to $244.10 million in 2022, with the Agricultural Marketing Service accounting for all recorded obligations in the analysis window.

CAGE Code
6N915
UEI
DX7AU4JMLPC7
Total Obligated
1.06 billion
1,057,317,594.32
Award Actions
548
Average Action Value
1,929,411.66

About TYSON FOODS, INC. federal contract activity

TYSON FOODS, INC. (CAGE 6N915, UEI DX7AU4JMLPC7) recorded 1.06 billion in obligated contract value across 548 awards over the last 5 years, for an average award value of 1.93 million. The award profile indicates a high-volume federal procurement relationship concentrated in a single buying activity and aligned to food processing requirements.

Agency mix and customer concentration

All observed obligations came from AGRICULTURAL MARKETING SERVICE, which accounted for 1.06 billion across 548 awards. This indicates a fully concentrated agency mix with no material diversification across federal buyers in the analysis window.

Industry profile based on NAICS activity

The spending base is overwhelmingly concentrated in NAICS 311615, POULTRY PROCESSING, which represents 1.06 billion across 529 awards. A small residual amount, 772.19 thousand across 19 awards, appears under NAICS 311611, ANIMAL (EXCEPT POULTRY) SLAUGHTERING, showing limited activity outside the core poultry processing classification.

Annual contract trend over the analysis window

Annual obligations remained broadly stable at a high level from 2022 through 2025, ranging from 227.69 million to 244.10 million, with award counts also elevated during that period. The only notable dip in the window is 2021, when obligated value fell to 115.88 million across 50 awards, followed by a substantial rebound in 2022.

How to interpret this page

This summary reflects FPDS-observed obligations associated with TYSON FOODS, INC. by CAGE code 6N915 and UEI DX7AU4JMLPC7 over the last 5 years. Agency, NAICS, and annual views are derived from the provided aggregate totals and are rounded as reported; no additional assumptions or external sources were used.

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 5 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,057,317,594.32 1.06 billion 548

Insight

Over the last 5 years, TYSON FOODS, INC. has $1.06 billion in obligations across 548 awards, with an average award value of about $1.93 million. All reported obligations are concentrated in a single agency, the Agricultural Marketing Service (12K2), indicating complete agency concentration in this period. This pattern suggests the vendor’s federal activity is highly concentrated rather than broadly distributed across multiple agencies.

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 5 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,056,545,408.79 1.06 billion 529
311611 ANIMAL (EXCEPT POULTRY) SLAUGHTERING 772,185.53 772.19 thousand 19

Insight

Over the last 5 years, TYSON FOODS, INC. (CAGE 6N915) received 1.06 billion in total obligations across 548 awards, with a high concentration in NAICS 311615, Poultry Processing. That NAICS accounts for 1.06 billion of total obligated value and 529 awards, indicating this is the dominant procurement category for the vendor. NAICS 311611, Animal (Except Poultry) Slaughtering, is a minor secondary category at 772.19 thousand across 19 awards, reflecting limited diversification beyond poultry-related work.

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 5 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

Insight

TYSON FOODS, INC. (CAGE 6N915) obligated 1.06 billion across 548 awards over the last 5 years, with an average award value of 1.93 million. Obligations are concentrated at a relatively stable annual level from 2022 through 2025, ranging from 227.69 million to 244.10 million, after a lower baseline in 2021 at 115.88 million. Award volume increased in 2024 and 2025, reaching 159 and 170 awards respectively, while obligations remained broadly flat, indicating smaller average award sizes in the most recent years.

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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.