Federal Contractor

ANHAM FZCO Federal Contract Obligations (Last 10 Years)

ANHAM FZCO procurement history shows 81,453 award actions and $2.16 billion obligated over the last 10 years, led almost entirely by the Defense Logistics Agency.

ANHAM FZCO (CAGE 1ANFW, UEI C4LYP7AAJMN5) recorded $2,163,430,841.68 in obligations across 81,453 award actions in the last 10 years, for an average action value of $26,560.48. The portfolio is concentrated with the Defense Logistics Agency and is dominated by NAICS 424410, General Line Grocery Merchant Wholesalers, followed by NAICS 311812, Commercial Bakeries.

Generated at 03/21/2026

Analysis period: Last 10 years

Annual totals show peak activity in 2019 and 2020, with much smaller obligated amounts in 2021 through 2023.

CAGE Code
1ANFW
UEI
C4LYP7AAJMN5
Total Obligated
2.16 billion
2,163,430,841.68
Award Actions
81,453
Average Action Value
26,560.48

About ANHAM FZCO federal contract activity

ANHAM FZCO recorded $2.16 billion in FPDS obligations across 81,453 awards over the last 10 years, for an average award value of $26,560.48. The vendor profile is heavily concentrated in federal logistics-related food and supply procurement, with almost all observed obligations attributable to a single civilian-support defense agency.

Agency mix and customer concentration

The Defense Logistics Agency accounts for essentially the full observed footprint, with $2.16 billion across 81,452 awards. The Department of the Air Force appears only once in the period, with $10,123.24 obligated, indicating a highly concentrated agency relationship rather than a diversified federal customer base.

Industry profile based on NAICS activity

NAICS 424410, General Line Grocery Merchant Wholesalers, dominates the vendor’s activity with $2.09 billion and 79,769 awards. NAICS 311812, Commercial Bakeries, is a secondary but materially smaller category at $77.02 million across 1,679 awards, while NAICS 484230 contributes only a negligible amount, suggesting the core business is food distribution with limited ancillary transportation activity.

Annual contract trend over the analysis window

Obligations in the visible annual data rose sharply from 2019 to 2020, then fell substantially in 2021 and continued to taper in 2022 and 2023. Award counts follow the same pattern, peaking in 2020 at 10,072 awards and then declining to just 1 award in 2022 and 2 awards in 2023, which points to a contracting rather than expanding recent spend profile.

How to interpret this page

This summary is based on FPDS award records associated with CAGE 1ANFW and UEI C4LYP7AAJMN5 for the last 10 years. Totals reflect obligated dollars and award counts as provided in the source metrics, with agency, NAICS, and annual views interpreted from the same dataset without extrapolation beyond the supplied values.

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 = '1ANFW'
        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
97AS DEFENSE LOGISTICS AGENCY 2,163,420,718.44 2.16 billion 81,452
5700 DEPT OF THE AIR FORCE 10,123.24 10.12 thousand 1

Insight

ANHAM FZCO’s obligational history over the last 10 years is highly concentrated in the Defense Logistics Agency, which accounts for $2.16 billion of the $2.16 billion total obligated and 81,452 of 81,453 awards. The Department of the Air Force represents only a de minimis share of activity, with one award totaling $10.12 thousand. This pattern indicates a near-exclusive dependency on DLA funding, with negligible agency diversification during the period.

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 = '1ANFW'
        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
424410 GENERAL LINE GROCERY MERCHANT WHOLESALERS 2,086,352,715.97 2.09 billion 79,769
311812 COMMERCIAL BAKERIES 77,015,306.47 77.02 million 1,679
484230 SPECIALIZED FREIGHT (EXCEPT USED GOODS) TRUCKING, LONG-DISTANCE 62,819.24 62.82 thousand 5

Insight

ANHAM FZCO’s obligations over the last 10 years are highly concentrated in NAICS 424410, General Line Grocery Merchant Wholesalers, which accounts for $2.09 billion of the $2.16 billion total obligated and 79,769 of 81,453 awards. NAICS 311812, Commercial Bakeries, is a distant secondary category at $77.02 million and 1,679 awards, while all other listed NAICS activity is immaterial in comparison. This profile indicates a procurement base dominated by grocery wholesale activity, with limited diversification into related food and logistics 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 = '1ANFW'
        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
2023 1,335,237.36 1.34 million 2
2022 1,821,173.57 1.82 million 1
2021 64,060,541.28 64.06 million 1,904
2020 308,384,365.53 308.38 million 10,072
2019 362,709,856.94 362.71 million 12,246
2018 691,711,894.85 691.71 million 26,816
2017 603,660,101.06 603.66 million 24,322
2016 129,747,671.09 129.75 million 6,090

Insight

ANHAM FZCO’s last 10 years of obligations are heavily concentrated in FY2017-FY2020, which together account for the bulk of the 2.16 billion obligated and most of the 81,453 awards. FY2018 is the peak year at 691.71 million across 26,816 awards, followed by FY2017 at 603.66 million and FY2019 at 362.71 million; FY2020 remains elevated at 308.38 million. Obligations then decline sharply to 64.06 million in FY2021 and fall to 1.82 million in FY2022 and 1.34 million in FY2023, indicating a pronounced contraction in recent activity.

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.