In the last full year, AMERIQUAL GROUP, LLC recorded $187,026,235.64 in obligated federal awards across 304 actions, for an average action value of $615,217.88. Defense Logistics Agency accounted for most of the obligation at $173.70 million, while FEMA obligated $13.32 million.
Federal Contractor
AMERIQUAL GROUP, LLC Federal Contract Obligations (Last Year)
AMERIQUAL GROUP, LLC (CAGE 08KA0, UEI YHJKT5C6J4B6) received 304 federal contract actions totaling $187.03 million in the last full year.
NAICS 311421, Fruit and Vegetable Canning, led obligations at $132.04 million, followed by NAICS 311999 at $41.66 million and NAICS 311991 at $13.32 million.
About AMERIQUAL GROUP, LLC federal contract activity
AMERIQUAL GROUP, LLC (CAGE 08KA0, UEI YHJKT5C6J4B6) received 304 awards totaling 187.03 million over the last full year, with an average award value of 615,217.88. The vendor’s obligation base is concentrated and substantial, indicating sustained federal buying activity at meaningful contract values.
Agency mix and customer concentration
The Defense Logistics Agency accounted for 173.70 million across 294 awards, or the clear majority of obligated dollars in the period. The Federal Emergency Management Agency contributed the remaining 13.32 million across 10 awards, showing a limited but distinct secondary agency relationship.
Industry profile based on NAICS activity
Obligations were led by NAICS 311421, Fruit and Vegetable Canning, at 132.04 million across 25 awards, making it the primary revenue driver. NAICS 311999, All Other Miscellaneous Food Manufacturing, added 41.66 million across 269 awards, while NAICS 311991, Perishable Prepared Food Manufacturing, contributed 13.32 million across 10 awards. The mix suggests a food manufacturing profile with concentration in canned products and high award volume in broader miscellaneous food manufacturing categories.
Annual contract trend over the analysis window
The annual trend shows 187.03 million in obligated value across 304 awards in 2025. Because the analysis window is limited to the last full year, this result establishes the baseline period rather than a multi-year trajectory.
How to interpret this page
This summary is based on FPDS award obligations associated with AMERIQUAL GROUP, LLC using CAGE 08KA0 and UEI YHJKT5C6J4B6 for the last full year. Agency and NAICS groupings are ranked by total obligated dollars, and award counts reflect the number of reported awards in each category.
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 1 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 | 173,702,829.48 | 173.70 million | 294 |
| 7022 | FEDERAL EMERGENCY MANAGEMENT AGENCY | 13,323,406.16 | 13.32 million | 10 |
Insight
AMERIQUAL GROUP, LLC’s obligations were highly concentrated in the last full year, with 173.70 million of 187.03 million total obligated, or about 93%, coming from the Defense Logistics Agency across 294 awards. Federal Emergency Management Agency accounted for the remaining 13.32 million across 10 awards, indicating a much smaller secondary relationship. The distribution suggests the vendor’s federal activity is dominated by DLA, with limited diversification across top agencies 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 = '08KA0'
AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
AND content__award__productOrServiceInformation__principalNAICSCode != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 | 132,038,733.44 | 132.04 million | 25 |
| 311999 | ALL OTHER MISCELLANEOUS FOOD MANUFACTURING | 41,664,096.04 | 41.66 million | 269 |
| 311991 | PERISHABLE PREPARED FOOD MANUFACTURING | 13,323,406.16 | 13.32 million | 10 |
Insight
Over the last full year, AMERIQUAL GROUP, LLC (CAGE 08KA0) obligated $187.03 million across 304 awards, with activity concentrated in a small number of food manufacturing NAICS. NAICS 311421, Fruit and Vegetable Canning, accounted for $132.04 million across 25 awards, representing the dominant share of obligations. NAICS 311999, All Other Miscellaneous Food Manufacturing, generated 269 awards but only $41.66 million, indicating a high-volume, lower-dollar distribution relative to 311421. NAICS 311991, Perishable Prepared Food Manufacturing, was a smaller contributor at $13.32 million across 10 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 1 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 |
Insight
AMERIQUAL GROUP, LLC (CAGE 08KA0) recorded $187.03 million in obligated awards across 304 awards in the last full year, indicating a materially concentrated annual funding profile. The average award value was $615,217.88, suggesting obligations were distributed across a moderate number of mid-sized awards rather than a small number of exceptionally large actions. With only one year of data provided for the 1-year window, trend assessment is limited to annual volume and concentration rather than year-over-year change.
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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.