Federal Contractor

CHEMONICS INTERNATIONAL, INC Federal Contract Obligations (Last Year)

CHEMONICS INTERNATIONAL, INC (CAGE 3DNC8, UEI DSUSFJFR9A33) received 111 federal award actions totaling $893,758,635.25 in the last full year.

In the last full year, CHEMONICS INTERNATIONAL, INC obligated $893.76 million across 111 award actions, with average action value of $8.05 million. The AGENCY FOR INTERNATIONAL DEVELOPMENT accounted for all reported obligations in this period, and NAICS 541611 drove most of the total at $785.14 million.

Generated at 03/21/2026

Analysis period: Last full year

Figures reflect the analysis window provided and may not include obligations outside the reported FPDS-derived set.

CAGE Code
3DNC8
UEI
DSUSFJFR9A33
Total Obligated
893.76 million
893,758,635.25
Award Actions
111
Average Action Value
8,051,879.59

About CHEMONICS INTERNATIONAL, INC federal contract activity

CHEMONICS INTERNATIONAL, INC (CAGE 3DNC8, UEI DSUSFJFR9A33) obligated 893.76 million across 111 awards in the last full year, for an average award value of 8.05 million. The vendor’s federal activity is highly concentrated in a single agency, with all reported obligations flowing through AGENCY FOR INTERNATIONAL DEVELOPMENT.

Agency mix and customer concentration

AGENCY FOR INTERNATIONAL DEVELOPMENT accounted for 893.76 million and all 111 awards, indicating a fully concentrated agency profile for the period. This pattern suggests a dependent relationship with a single federal customer rather than a diversified agency base.

Industry profile based on NAICS activity

The portfolio is dominated by NAICS 541611, Administrative Management and General Management Consulting Services, which accounts for 785.14 million across 22 awards. Secondary activity is spread across 541330 Engineering Services and 541990 All Other Professional, Scientific, and Technical Services, with smaller amounts in 541690 and 541614, indicating a consulting-heavy mix with limited technical-service diversification.

Annual contract trend over the analysis window

The annual trend shows all reported obligations occurring in 2025, with 893.76 million across 111 awards. Because only one year is represented in the analysis window, the data supports a point-in-time profile rather than a multi-year growth or decline assessment.

How to interpret this page

This summary is based on FPDS obligation records for the last full year associated with CAGE 3DNC8 and UEI DSUSFJFR9A33. Agency and NAICS mixes are calculated from total obligated dollars and award counts in the provided dataset; no out-of-scope records or inferred values were added.

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 = '3DNC8'
        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 893,758,635.25 893.76 million 111

Insight

Over the last full year, CHEMONICS INTERNATIONAL, INC’s obligations were entirely concentrated within one top agency: the Agency for International Development, which accounted for the full $893.76 million obligated across 111 awards. This indicates a highly concentrated agency footprint with no visible diversification across other agencies in the provided Top Agencies view. The average award value across the period was $8.05 million, suggesting a mix of award sizes within a single-agency portfolio.

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 = '3DNC8'
        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
541611 ADMINISTRATIVE MANAGEMENT AND GENERAL MANAGEMENT CONSULTING SERVICES 785,138,187.83 785.14 million 22
541330 ENGINEERING SERVICES 52,547,565.87 52.55 million 17
541990 ALL OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES 44,903,646.52 44.90 million 55
541690 OTHER SCIENTIFIC AND TECHNICAL CONSULTING SERVICES 8,969,848.50 8.97 million 6
541614 PROCESS, PHYSICAL DISTRIBUTION, AND LOGISTICS CONSULTING SERVICES 2,687,634.42 2.69 million 1
541618 OTHER MANAGEMENT CONSULTING SERVICES 0.00 0.00 1
611710 EDUCATIONAL SUPPORT SERVICES 0.00 0.00 2
924110 ADMINISTRATION OF AIR AND WATER RESOURCE AND SOLID WASTE MANAGEMENT PROGRAMS 0.00 0.00 2
221310 WATER SUPPLY AND IRRIGATION SYSTEMS -112,488.54 -112.49 thousand 1
541620 ENVIRONMENTAL CONSULTING SERVICES -375,759.35 -375.76 thousand 4

Insight

CHEMONICS INTERNATIONAL, INC. shows a highly concentrated NAICS profile in the last full year, with NAICS 541611 accounting for $785.14 million of the $893.76 million obligated total, or the clear majority of awards in this window. Secondary obligations were much smaller and spread across 541330, 541990, 541690, and 541614, indicating a broad but comparatively low-dollar mix outside the dominant consulting category. Several NAICS lines carried zero obligations, and two codes posted negative obligations, suggesting limited activity or post-award adjustments in those areas.

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 = '3DNC8'
        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 893,758,635.25 893.76 million 111

Insight

In the last full year, CHEMONICS INTERNATIONAL, INC (CAGE 3DNC8) obligated $893.76 million across 111 awards, for an average award value of $8.05 million. The reported annual activity is concentrated in a single year within the 1-year window, so no year-over-year trend can be assessed from the provided data. The award profile indicates substantial obligation volume distributed across a moderate number of awards, consistent with a mix of larger procurement actions rather than a small number of outsized 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.