This award record summarizes obligation activity tied to award number AIDOAATO1500009 under agency ID 7200. Over the last 5 years, the award totals $1,407,057,808.49 across 30 actions, with an average action value of $46,901,926.95.
Award Number
Award Number 7200 / AIDOAATO1500009 Federal Contract Action Summary (Last 5 Years)
Award number AIDOAATO1500009 for agency 7200 shows 30 actions over the last 5 years with $1.41 billion obligated.
Totals reflect the last 5 years and use the exact obligated amount of $1,407,057,808.49.
Overview
Award number AIDOAATO1500009 is associated with agency ID 7200 and records 30 award actions in the last 5 years. The total obligated amount is $1,407,057,808.49, which is approximately $1.41 billion. The average action value is $46,901,926.95.
How to use this page
Use this page to review obligation volume and action count for award number AIDOAATO1500009 within the selected 5-year window. The figures support a quick comparison of total spending and average action size for this award record.
Top Agencies
SELECT
content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
content__award__purchaserInformation__contractingOfficeAgencyID__name AS agency_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count,
formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
content__award__awardID__awardContractID__agencyID = '7200' AND content__award__awardID__awardContractID__PIID = 'AIDOAATO1500009'
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,
agency_name
ORDER BY total_obligated DESC
LIMIT 10
| Agency ID | Agency Name | Total Obligated | Readable | Actions |
|---|---|---|---|---|
| 7200 | AGENCY FOR INTERNATIONAL DEVELOPMENT | 1,407,057,808.49 | 1.41 billion | 30 |
Insight
Over the 5-year window, awards under PIID AIDOAATO1500009 are entirely concentrated within Agency for International Development (agency ID 7200). USAID accounts for $1.41 billion in total obligated value across 30 awards, indicating both substantial funding volume and a limited agency distribution for this award identifier.
Top Vendors
SELECT
vendor_name,
cage_code,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
content__award__vendor__vendorHeader__vendorName AS vendor_name,
ifNull(content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode, '') AS cage_code,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
content__award__awardID__awardContractID__agencyID = '7200' AND content__award__awardID__awardContractID__PIID = 'AIDOAATO1500009'
AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
AND content__award__vendor__vendorHeader__vendorName != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
vendor_name,
cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
| Vendor | CAGE Code | Total Obligated | Readable | Actions |
|---|---|---|---|---|
| CHEMONICS INTERNATIONAL, INC | 3DNC8 | 1,407,057,808.49 | 1.41 billion | 30 |
Insight
Over the 5-year window, CHEMONICS INTERNATIONAL, INC is the only listed top vendor for award AIDOAATO1500009, accounting for $1.41 billion across 30 awards. This indicates a highly concentrated vendor profile, with all observed top-vendor obligations captured by a single contractor. The award activity suggests sustained reliance on this vendor rather than a distributed obligation pattern across multiple suppliers.
Top NAICS
SELECT
content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
content__award__productOrServiceInformation__principalNAICSCode__description AS naics_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count,
formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
content__award__awardID__awardContractID__agencyID = '7200' AND content__award__awardID__awardContractID__PIID = 'AIDOAATO1500009'
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,
naics_name
ORDER BY total_obligated DESC
LIMIT 10
| NAICS Code | Description | Total Obligated | Readable | Actions |
|---|---|---|---|---|
| 541611 | ADMINISTRATIVE MANAGEMENT AND GENERAL MANAGEMENT CONSULTING SERVICES | 1,407,057,808.49 | 1.41 billion | 30 |
Insight
Over the 5-year window for PIID AIDOAATO1500009, obligations are fully concentrated in NAICS 541611, Administrative Management and General Management Consulting Services. This category accounts for $1.41 billion across 30 awards, indicating a clear and sustained reliance on a single service type. The distribution suggests limited NAICS diversification within this award record.
Top PSC Codes
SELECT
content__award__productOrServiceInformation__productOrServiceCode AS psc_code,
content__award__productOrServiceInformation__productOrServiceCode__description AS psc_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count,
formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
content__award__awardID__awardContractID__agencyID = '7200' AND content__award__awardID__awardContractID__PIID = 'AIDOAATO1500009'
AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
AND content__award__productOrServiceInformation__productOrServiceCode != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
psc_code,
psc_name
ORDER BY total_obligated DESC
LIMIT 10
| PSC Code | Description | Total Obligated | Readable | Actions |
|---|---|---|---|---|
| R425 | SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL | 1,407,057,808.49 | 1.41 billion | 30 |
Insight
Over the 5-year window for award AIDOAATO1500009, PSC R425 (Support- Professional: Engineering/Technical) accounts for the entire reported obligation in this section, totaling $1.41 billion across 30 awards. This indicates a highly concentrated procurement profile within this PSC, with obligations spread across multiple awards rather than a single action. The distribution suggests sustained use of engineering and technical support services over the period.
Annual Trend
SELECT
toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable,
count() AS award_count
FROM fpds.data
WHERE
content__award__awardID__awardContractID__agencyID = '7200' AND content__award__awardID__awardContractID__PIID = 'AIDOAATO1500009'
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 ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2021 | 350,926,620.00 | 350.93 million | 5 |
| 2022 | 77,574,866.00 | 77.57 million | 4 |
| 2023 | 300,266,503.00 | 300.27 million | 7 |
| 2024 | 247,529,085.00 | 247.53 million | 10 |
| 2025 | 430,760,734.49 | 430.76 million | 4 |
Insight
Obligations for PIID AIDOAATO1500009 were uneven across the 5-year window, ranging from 77.57 million in 2022 to 430.76 million in 2025. Activity was most dispersed in 2024, with 10 awards supporting 247.53 million, while 2025 recorded the highest obligated value despite only 4 awards, indicating concentration in fewer actions. After the 2022 low point, obligations rebounded in 2023, remained elevated in 2024, and increased further in 2025.
Use FPDS Query for deeper award and vehicle analysis
Explore federal procurement data with custom SQL, fast filtering, and deeper contract action analysis across agencies, vendors, NAICS, PSC, 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.