This page provides a procurement summary for award number AIDOAATO1500009 associated with agency ID 7200. Over the last 10 years, the award shows total obligated amounts of 2.92 billion across 64 actions.
Award Number
Award Number 7200 / AIDOAATO1500009 Federal Contract Action Summary (Last 10 Years)
Federal award page for award number AIDOAATO1500009 under agency ID 7200, summarizing 10 years of obligation and action data.
Totals reflect the provided 10-year analysis window, with an exact obligated value of 2924366602.79 and an average action value of 45693228.17.
Overview
Award number AIDOAATO1500009 is the federal procurement identifier shown for agency ID 7200 in the last 10 years. The award records 64 actions and total obligated spending of 2,924,366,602.79, or 2.92 billion when rounded. The average action value across the period is 45,693,228.17.
How to use this page
Use this page to review the award’s obligation scale, action volume, and average action value over the analysis window. The figures support basic award-level comparisons and can help identify whether activity is concentrated in fewer large actions or spread across many smaller ones.
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 10 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 | 2,924,366,602.79 | 2.92 billion | 64 |
Insight
Over the 10-year window, obligations for PIID AIDOAATO1500009 are fully concentrated at the Agency for International Development (agency ID 7200), which accounts for $2.92 billion across 64 awards. This indicates a highly concentrated award pattern within a single agency rather than a broadly distributed obligation base. The volume of awards alongside the obligation total suggests repeated contracting activity under this PIID over time, but no cross-agency distribution is evident from the provided data.
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 10 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 | 2,924,366,602.79 | 2.92 billion | 64 |
Insight
CHEMONICS INTERNATIONAL, INC is the only listed top vendor for this award and accounts for $2.92 billion across 64 awards over the 10-year window. This indicates a highly concentrated vendor profile, with obligation activity centered on a single contractor rather than broadly distributed across multiple vendors. The award history suggests sustained reliance on this vendor over time.
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 10 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 | 2,924,366,602.79 | 2.92 billion | 64 |
Insight
Over the 10-year window, obligations for award AIDOAATO1500009 are concentrated entirely in NAICS 541611, Administrative Management and General Management Consulting Services. This category accounts for $2.92 billion across 64 awards, indicating a strong reliance on a single service line rather than a diversified NAICS mix. The concentration suggests this award’s historical obligations are heavily focused on consulting support services.
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 10 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 | 2,924,366,602.79 | 2.92 billion | 64 |
Insight
PSC R425 (Support- Professional: Engineering/Technical) accounts for the full reported obligated amount in this 10-year award view, totaling $2.92 billion across 64 awards. This indicates a highly concentrated procurement profile within the available PSC data, with no other PSC categories represented in the provided rows. The distribution suggests sustained reliance on engineering and technical support services for this award record.
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 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2016 | 324,307,426.00 | 324.31 million | 5 |
| 2017 | 172,953,745.70 | 172.95 million | 5 |
| 2018 | 309,271,654.00 | 309.27 million | 8 |
| 2019 | 285,055,987.60 | 285.06 million | 8 |
| 2020 | 425,719,981.00 | 425.72 million | 8 |
| 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 volatile across the 10-year window, ranging from 77.57 million in 2022 to 430.76 million in 2025. Annual activity was concentrated in several higher-obligation years, notably 2020, 2021, 2023, and 2025, while 2022 was a pronounced low point despite continued award activity. Award counts were relatively limited and uneven, varying from 4 to 10 per year, indicating that obligation levels were driven more by funding magnitude than by a steady increase in the number of awards.
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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.