In the last full year, AAR GOVERNMENT SERVICES, INC. recorded $274,670,973.81 in obligated federal action value across 530 awards, for an average action value of $518,247.12. The vendor's largest obligations came from the Department of the Air Force and the Department of the Navy, with additional activity at the Department of State.
Federal Contractor
AAR GOVERNMENT SERVICES, INC. Federal Contract Obligations (Last Year)
AAR GOVERNMENT SERVICES, INC. (CAGE 814N0, UEI GFWVNNYFEVR2) received $274.67 million across 530 award actions in the last full year, led by Department of the Air Force and support activities for air transportation.
Agency and NAICS totals reflect obligated amounts for the selected analysis window and may include negative obligations and zero-obligation actions where shown.
About AAR GOVERNMENT SERVICES, INC. federal contract activity
AAR GOVERNMENT SERVICES, INC. (CAGE 814N0, UEI GFWVNNYFEVR2) received $274.67 million across 530 awards in the last full year, for an average award value of $518,247.12. The obligation profile indicates a high-volume, mid-dollar contracting footprint with substantial concentration in defense and transportation support activities.
Agency mix and customer concentration
The Department of the Air Force was the primary obligating agency with $116.08 million across 218 awards, followed by the Department of the Navy with $93.56 million across 136 awards. The Department of State contributed $74.60 million across 59 awards, while DCMA recorded a net negative obligation of $9.58 million across 112 awards; the Department of Energy had 5 awards with no obligated dollars reported.
Industry profile based on NAICS activity
The vendor's obligations were overwhelmingly concentrated in NAICS 488190, Other Support Activities for Air Transportation, at $213.81 million across 434 awards. Smaller but material activity appears in NAICS 336413, Other Aircraft Parts and Auxiliary Equipment Manufacturing, at $55.59 million across 14 awards, and NAICS 336412, Aircraft Engine and Engine Parts Manufacturing, at $5.27 million across 82 awards. This mix suggests a portfolio centered on aviation logistics and support, with supplementary aircraft component-related work.
Annual contract trend over the analysis window
The annual trend shows all reported obligations and awards occurring in 2025, totaling $274.67 million across 530 awards. With only one year in the analysis window, the available data supports a point-in-time view rather than a multi-year trajectory.
How to interpret this page
This summary is based on FPDS award records associated with CAGE code 814N0 and UEI GFWVNNYFEVR2 during the last full year. Obligations are reported as recorded in FPDS, including negative values where present, and agency and NAICS groupings reflect the highest reported totals in the provided dataset.
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 = '814N0'
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 |
|---|---|---|---|---|
| 5700 | DEPT OF THE AIR FORCE | 116,081,687.00 | 116.08 million | 218 |
| 1700 | DEPT OF THE NAVY | 93,563,578.67 | 93.56 million | 136 |
| 1900 | STATE, DEPARTMENT OF | 74,604,133.61 | 74.60 million | 59 |
| 8900 | ENERGY, DEPARTMENT OF | 0.00 | 0.00 | 5 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | -9,578,425.47 | -9.58 million | 112 |
Insight
AAR GOVERNMENT SERVICES, INC. derived most of its last full-year obligations from two defense agencies: the Department of the Air Force ($116.08 million across 218 awards) and the Department of the Navy ($93.56 million across 136 awards). The Department of State was the third-largest customer at $74.60 million across 59 awards, indicating meaningful non-DoD concentration as well. DCMA recorded a negative obligation total of $9.58 million across 112 awards, while the Department of Energy obligations were zero despite five awards, suggesting obligation adjustments or deobligations in part of the 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 = '814N0'
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 |
|---|---|---|---|---|
| 488190 | OTHER SUPPORT ACTIVITIES FOR AIR TRANSPORTATION | 213,809,273.61 | 213.81 million | 434 |
| 336413 | OTHER AIRCRAFT PARTS AND AUXILIARY EQUIPMENT MANUFACTURING | 55,588,143.26 | 55.59 million | 14 |
| 336412 | AIRCRAFT ENGINE AND ENGINE PARTS MANUFACTURING | 5,273,556.94 | 5.27 million | 82 |
Insight
During the last full year, AAR GOVERNMENT SERVICES, INC. (CAGE 814N0) received $274.67 million across 530 awards, with obligations highly concentrated in NAICS 488190, Other Support Activities for Air Transportation, which accounted for $213.81 million across 434 awards. NAICS 336413, Other Aircraft Parts and Auxiliary Equipment Manufacturing, was the second-largest category at $55.59 million but with only 14 awards, indicating fewer but higher-value actions. NAICS 336412, Aircraft Engine and Engine Parts Manufacturing, contributed $5.27 million across 82 awards, reflecting a smaller share of obligated dollars despite relatively frequent award activity.
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 = '814N0'
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 | 274,670,973.81 | 274.67 million | 530 |
Insight
In the last full year, AAR GOVERNMENT SERVICES, INC. (CAGE 814N0) recorded $274.67 million in obligated value across 530 awards, indicating a moderate spread of activity rather than reliance on a small number of transactions. The average award value was about $518.2 thousand, which suggests the portfolio was weighted toward mid-sized obligations. With only one year reflected in the 1-year window, no year-over-year trend can be assessed from this view.
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.