Federal Contractor

AMERIQUAL GROUP, LLC Federal Contract Obligations (Last 5 Years)

AMERIQUAL GROUP, LLC (CAGE 08KA0, UEI YHJKT5C6J4B6) has received $1.01 billion across 2,134 federal award actions in the last five years.

Most of the obligated value is tied to the Defense Logistics Agency, with additional awards from FEMA. The vendor’s activity is concentrated in food manufacturing, led by fruit and vegetable canning and other miscellaneous food manufacturing.

Generated at 03/21/2026

Analysis period: Last 5 years

Annual obligations peaked in 2024 at $271.93 million and were lowest in 2021 at $155.17 million.

CAGE Code
08KA0
UEI
YHJKT5C6J4B6
Total Obligated
1.01 billion
1,010,856,006.58
Award Actions
2,134
Average Action Value
473,690.72

About AMERIQUAL GROUP, LLC federal contract activity

AMERIQUAL GROUP, LLC (CAGE 08KA0, UEI YHJKT5C6J4B6) recorded $1.01 billion in obligated obligations across 2,134 awards over the last 5 years, with an average award value of $473,690.72. The profile indicates a high-volume federal supplier relationship with spending concentrated in food-related supply and manufacturing categories.

Agency mix and customer concentration

The award portfolio is heavily concentrated with the Defense Logistics Agency, which accounts for $942.59 million and 2,099 awards, or the clear majority of observed activity. Federal Emergency Management Agency obligations are materially smaller at $68.26 million across 35 awards, indicating a secondary but meaningful relationship outside the defense supply channel.

Industry profile based on NAICS activity

The largest NAICS category is 311421 Fruit and Vegetable Canning at $702.55 million across 126 awards, followed by 311999 All Other Miscellaneous Food Manufacturing at $239.61 million across 1,971 awards. Smaller amounts appear in 311991 Perishable Prepared Food Manufacturing and 424410 General Line Grocery Merchant Wholesalers, confirming that the vendor's federal work is anchored in food production and related distribution.

Annual contract trend over the analysis window

Annual obligations peaked in 2024 at $271.93 million, after which 2025 shows $187.03 million through the reported period. The remaining years were comparatively stable but lower, ranging from $155.17 million in 2021 to $208.70 million in 2022, with 2023 at $188.02 million; award counts were highest in 2021 and generally declined as annual obligated dollars increased and then moderated.

How to interpret this page

This summary is based on FPDS obligation and award records for the last 5 years, grouped by vendor, agency, NAICS code, and fiscal year. Totals reflect observed obligated dollars and award counts only; they do not infer contract performance, scope beyond recorded classifications, or unreported relationships.

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 = '08KA0'
        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 942,594,983.90 942.59 million 2,099
7022 FEDERAL EMERGENCY MANAGEMENT AGENCY 68,261,022.68 68.26 million 35

Insight

Over the last 5 years, AMERIQUAL GROUP, LLC (CAGE 08KA0) received $1.01 billion across 2,134 awards, with obligations highly concentrated at the Defense Logistics Agency. DLA accounted for $942.59 million and 2,099 awards, representing the overwhelming share of both dollars and transactions. FEMA was the only other top agency, with $68.26 million across 35 awards, indicating limited but material diversification outside DLA.

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 = '08KA0'
        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
311421 FRUIT AND VEGETABLE CANNING 702,545,214.10 702.55 million 126
311999 ALL OTHER MISCELLANEOUS FOOD MANUFACTURING 239,614,313.80 239.61 million 1,971
311991 PERISHABLE PREPARED FOOD MANUFACTURING 68,261,022.68 68.26 million 35
424410 GENERAL LINE GROCERY MERCHANT WHOLESALERS 435,456.00 435.46 thousand 2

Insight

Over the last 5 years, AMERIQUAL GROUP, LLC (CAGE 08KA0) has received $1.01 billion across 2,134 awards, with obligations heavily concentrated in NAICS 311421, Fruit and Vegetable Canning, which accounts for $702.55 million across 126 awards. The next largest share is NAICS 311999, All Other Miscellaneous Food Manufacturing, with $239.61 million across 1,971 awards, indicating a high volume of smaller awards relative to dollars obligated. NAICS 311991, Perishable Prepared Food Manufacturing, adds $68.26 million across 35 awards, while NAICS 424410, General Line Grocery Merchant Wholesalers, is immaterial at $435.46 thousand across 2 awards.

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 = '08KA0'
        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 187,026,235.64 187.03 million 304
2024 271,930,414.03 271.93 million 375
2023 188,024,206.07 188.02 million 451
2022 208,700,487.97 208.70 million 483
2021 155,174,662.87 155.17 million 521

Insight

AMERIQUAL GROUP, LLC shows 1.01 billion in obligated value across 2,134 awards over the last 5 years, with an average award value of 473,690.72. Annual obligations were highest in 2024 at 271.93 million, followed by 2025 at 187.03 million, indicating a recent decline from the peak. Award counts were highest in 2021 at 521 and generally trended downward to 304 in 2025, suggesting a shift toward fewer awards with higher annual obligated value in the mid-period.

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.