In the last full year, DAI GLOBAL, LLC (CAGE 9G431, UEI JKMEF5QVJK24) received 73 federal award actions with total obligations of $71,296,120.16. The profile is dominated by AGENCY FOR INTERNATIONAL DEVELOPMENT, and most obligations fall under NAICS 541990 and 541330.
Federal Contractor
DAI GLOBAL, LLC Federal Contract Obligations (Last Year)
DAI GLOBAL, LLC recorded 73 award actions totaling $71.30 million in the last full year, with obligations concentrated at AGENCY FOR INTERNATIONAL DEVELOPMENT.
This page summarizes obligations and award counts for the last full year using FPDS data, with exact totals shown where available.
About DAI GLOBAL, LLC federal contract activity
DAI GLOBAL, LLC (CAGE 9G431, UEI JKMEF5QVJK24) recorded 73 FPDS awards in the last full year with total obligated dollars of $71.30 million and an average award value of $976,659.18. The profile is highly concentrated in federal assistance and contracting activity associated with international development work.
Agency mix and customer concentration
All reported obligation in the analysis window came from the Agency for International Development (agency code 7200), which accounted for the full $71.30 million across 73 awards. This indicates a single-agency concentration with no observable diversification across other civilian or defense buyers in the provided dataset.
Industry profile based on NAICS activity
The vendor’s obligations were dominated by NAICS 541990, which represented $50.80 million across 42 awards, followed by NAICS 541330 at $18.90 million across 11 awards. NAICS 541611 contributed a smaller $1.59 million across 14 awards, while NAICS 611430 and 541690 appear only as low-volume award activity with no obligated dollars in the provided summary.
Annual contract trend over the analysis window
The annual trend shows all recorded obligations in 2025, totaling $71.30 million across 73 awards. With only one year in scope, the dataset supports a snapshot of current-year activity rather than a multi-year growth or decline assessment.
How to interpret this page
This summary is based on FPDS award records for the last full year and reflects obligated dollars, award counts, and NAICS/agency classification as provided. Totals are taken from the supplied overview and category breakdowns; zero-obligation NAICS entries are retained where present in the source data.
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 = '9G431'
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 |
|---|---|---|---|---|
| 7200 | AGENCY FOR INTERNATIONAL DEVELOPMENT | 71,296,120.16 | 71.30 million | 73 |
Insight
DAI GLOBAL, LLC’s obligations in the last full year were fully concentrated within one agency: the Agency for International Development accounted for 71.30 million across 73 awards. This indicates a highly concentrated award profile with no apparent agency diversification in the reported period. The average award value was approximately 976.7 thousand, suggesting a pattern of repeated funding actions at a relatively consistent scale.
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 = '9G431'
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 |
|---|---|---|---|---|
| 541990 | ALL OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES | 50,799,289.52 | 50.80 million | 42 |
| 541330 | ENGINEERING SERVICES | 18,903,907.00 | 18.90 million | 11 |
| 541611 | ADMINISTRATIVE MANAGEMENT AND GENERAL MANAGEMENT CONSULTING SERVICES | 1,592,923.64 | 1.59 million | 14 |
| 611430 | PROFESSIONAL AND MANAGEMENT DEVELOPMENT TRAINING | 0.00 | 0.00 | 1 |
| 541690 | OTHER SCIENTIFIC AND TECHNICAL CONSULTING SERVICES | 0.00 | 0.00 | 2 |
| 523999 | MISCELLANEOUS FINANCIAL INVESTMENT ACTIVITIES | 0.00 | 0.00 | 1 |
| 541620 | ENVIRONMENTAL CONSULTING SERVICES | 0.00 | 0.00 | 1 |
| 511110 | NEWSPAPER PUBLISHERS | 0.00 | 0.00 | 1 |
Insight
DAI GLOBAL, LLC’s last full year obligations are concentrated in NAICS 541990, which accounts for $50.80 million across 42 awards, or roughly 71% of total obligated dollars. NAICS 541330 is the second-largest category at $18.90 million across 11 awards, bringing the top two NAICS codes to about 98% of total obligations. The remaining NAICS codes are low-dollar or zero-obligation awards, indicating a narrow spending profile centered on professional, scientific, technical, and engineering services.
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 = '9G431'
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 | 71,296,120.16 | 71.30 million | 73 |
Insight
During the last full year, DAI GLOBAL, LLC recorded $71.30 million in obligations across 73 awards, for an average award value of approximately $976.7K. The activity is fully concentrated in 2025 within the 1-year window, so no year-over-year trend can be assessed from the provided data. The award profile indicates moderate dispersion across multiple actions rather than reliance on a small number of very large awards.
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.