Federal Contractor

ANHAM FZCO Federal Contract Obligations (Last 5 Years)

Federal procurement overview for ANHAM FZCO (CAGE 1ANFW, UEI C4LYP7AAJMN5) covering award activity over the last 5 years.

ANHAM FZCO recorded 1,907 award actions with total obligations of $67,216,952.21 and an average action value of $35,247.48 in the last 5 years. The Defense Logistics Agency accounted for all reported obligations, led by NAICS 311812 Commercial Bakeries and NAICS 424410 General Line Grocery Merchant Wholesalers.

Generated at 03/21/2026

Analysis period: Last 5 years

Annual data shown here is concentrated in 2021, with smaller obligations in 2022 and 2023.

CAGE Code
1ANFW
UEI
C4LYP7AAJMN5
Total Obligated
67.22 million
67,216,952.21
Award Actions
1,907
Average Action Value
35,247.48

About ANHAM FZCO federal contract activity

ANHAM FZCO shows a concentrated federal procurement profile over the last 5 years, with 1,907 awards totaling $67.22 million. The average award value of $35,247.48 indicates a high-volume, relatively small-dollar transaction pattern rather than a small number of large obligations. The vendor is identified by CAGE 1ANFW and UEI C4LYP7AAJMN5.

Agency mix and customer concentration

All reported obligations in this window came from the Defense Logistics Agency, which accounted for the full $67.22 million and all 1,907 awards. This indicates a single-agency dependency and a procurement relationship that is highly concentrated within DLA’s buying activity. No other agency appears in the provided top-agency data.

Industry profile based on NAICS activity

The award base is split primarily between NAICS 311812, Commercial Bakeries, and NAICS 424410, General Line Grocery Merchant Wholesalers. Commercial Bakeries represents $36.24 million across 707 awards, while General Line Grocery Merchant Wholesalers represents $30.98 million across 1,200 awards, suggesting food supply and distribution activity across both manufacturing-linked and wholesale categories. The mix is balanced in dollar terms but heavier in count for wholesale transactions.

Annual contract trend over the analysis window

Annual obligations were dominated by 2021, which accounted for $64.06 million and 1,904 awards, or nearly all activity in the period provided. Activity fell sharply in 2022 to $1.82 million across 1 award and remained comparatively low in 2023 at $1.34 million across 2 awards. The pattern suggests a one-year surge followed by materially reduced procurement volume.

How to interpret this page

This summary is based solely on the FPDS Query data provided for the last 5 years and uses the reported obligations, award counts, agency totals, NAICS breakdowns, and annual trend values. Totals and percentages are interpreted directly from the supplied figures; no external sources or unprovided contract-level details were used. Where only top-category data were supplied, the narrative is limited to those reported categories.

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 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
97AS DEFENSE LOGISTICS AGENCY 67,216,952.21 67.22 million 1,907

Insight

Over the last 5 years, ANHAM FZCO’s obligations are fully concentrated in the Defense Logistics Agency, which accounts for the entire $67.22 million total and all 1,907 awards recorded for the vendor. This indicates a highly concentrated customer base with no diversification across agencies in the provided period. The average award value of about $35.2K suggests the activity is characterized by a large number of relatively small awards rather than a few high-value obligations.

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 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
311812 COMMERCIAL BAKERIES 36,238,094.26 36.24 million 707
424410 GENERAL LINE GROCERY MERCHANT WHOLESALERS 30,978,857.95 30.98 million 1,200

Insight

Over the last 5 years, ANHAM FZCO’s obligations are concentrated in two food-related NAICS codes that together account for the full reported $67.22 million. NAICS 311812, Commercial Bakeries, represents $36.24 million across 707 awards, or about 54% of total obligations, while NAICS 424410, General Line Grocery Merchant Wholesalers, represents $30.98 million across 1,200 awards, or about 46%. The award distribution is more dispersed than the dollars, with 424410 driving the larger share of actions but a slightly smaller share of obligated value.

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

Insight

ANHAM FZCO’s 5-year obligations are highly concentrated in 2021, when it received $64.06 million across 1,904 awards, accounting for nearly all of the $67.22 million obligated in the period. Activity drops sharply in 2022 and 2023, with only $1.82 million and $1.34 million obligated, respectively, on minimal award counts. This pattern indicates a one-year spike followed by a materially reduced obligation profile 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.