PAE GOVERNMENT SERVICES, INC. (CAGE 00TB2, UEI JENBF1KKWZ93) received $378,280,469.56 in federal obligations across 857 award actions in the analysis window. Most spending was concentrated at the Department of State and in facilities support services, with additional activity across consulting and administrative management work.
Federal Contractor
PAE GOVERNMENT SERVICES, INC. Federal Contract Obligations (Last Year)
PAE GOVERNMENT SERVICES, INC. recorded 857 federal award actions and $378.28 million in obligated spending in the last full year.
This summary reflects the last full year and uses obligated dollars and award counts from FPDS query data.
About PAE GOVERNMENT SERVICES, INC. federal contract activity
PAE GOVERNMENT SERVICES, INC. (CAGE 00TB2, UEI JENBF1KKWZ93) recorded 857 awards and $378.28 million in obligated value during the last full year, for an average award value of $441,400.78. The profile indicates a high-volume contracting footprint with obligations concentrated in a small number of agencies and mission areas.
Agency mix and customer concentration
The Department of State accounted for the largest share of obligations at $312.40 million across 174 awards, representing the dominant customer relationship in this period. Offsets from Offices, Boards and Divisions added $45.26 million across 671 awards, while the Department of the Navy contributed $20.62 million across 12 awards, indicating a mix of one large-value agency relationship and a broader base of smaller awards.
Industry profile based on NAICS activity
Facilities Support Services (NAICS 561210) was the primary revenue driver at $290.57 million across 94 awards, showing that the vendor’s largest obligations were tied to facilities-oriented work. Administrative Management and General Management Consulting Services (541611) accounted for $45.26 million across 671 awards, while Other Management Consulting Services (541618) and Other Scientific and Technical Consulting Services (541690) added $27.39 million and $15.07 million, respectively, reflecting a secondary consulting-heavy portfolio.
Annual contract trend over the analysis window
All reported obligations fall in 2025, with no additional annual history shown in the provided analysis window. The 2025 total of $378.28 million across 857 awards establishes the baseline for the last full year and suggests a highly active award year rather than a multi-year trend line.
How to interpret this page
This summary is based on FPDS award records tied to CAGE 00TB2 and UEI JENBF1KKWZ93 for the last full year. Agency, NAICS, and annual figures reflect obligated amounts and award counts as provided, with no normalization beyond the supplied FPDS aggregate 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 = '00TB2'
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 |
|---|---|---|---|---|
| 1900 | STATE, DEPARTMENT OF | 312,401,826.35 | 312.40 million | 174 |
| 1501 | OFFICES, BOARDS AND DIVISIONS | 45,259,186.40 | 45.26 million | 671 |
| 1700 | DEPT OF THE NAVY | 20,619,456.81 | 20.62 million | 12 |
Insight
Over the last full year, PAE GOVERNMENT SERVICES, INC. received $378.28 million across 857 awards, with obligation concentration heavily weighted toward the Department of State. The Department of State accounted for $312.40 million, or about 82.6% of total obligations, but only 174 awards, indicating relatively high-dollar transactions. OFFICES, BOARDS AND DIVISIONS obligated $45.26 million across 671 awards, showing a much more dispersed award pattern, while the Department of the Navy contributed $20.62 million across 12 awards.
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 = '00TB2'
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 |
|---|---|---|---|---|
| 561210 | FACILITIES SUPPORT SERVICES | 290,566,870.99 | 290.57 million | 94 |
| 541611 | ADMINISTRATIVE MANAGEMENT AND GENERAL MANAGEMENT CONSULTING SERVICES | 45,259,186.40 | 45.26 million | 671 |
| 541618 | OTHER MANAGEMENT CONSULTING SERVICES | 27,388,064.20 | 27.39 million | 77 |
| 541690 | OTHER SCIENTIFIC AND TECHNICAL CONSULTING SERVICES | 15,066,347.97 | 15.07 million | 15 |
Insight
PAE GOVERNMENT SERVICES, INC. (CAGE 00TB2) obligated $378.28 million across 857 awards in the last full year, with activity concentrated in NAICS 561210, Facilities Support Services, which accounted for $290.57 million across 94 awards. NAICS 541611, Administrative Management and General Management Consulting Services, generated the highest award count at 671 awards but only $45.26 million, indicating a high-volume, lower-dollar segment. The remaining top NAICS categories—541618 and 541690—contributed comparatively smaller shares of obligation, suggesting spending is heavily weighted toward facilities support rather than evenly distributed across service lines.
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 = '00TB2'
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 | 378,280,469.56 | 378.28 million | 857 |
Insight
During the last full year, PAE GOVERNMENT SERVICES, INC. (CAGE 00TB2) recorded $378.28 million in obligated value across 857 awards, for an average award value of about $441.4K. With only one annual data point available in the 1-year window, no year-over-year trend can be assessed from this view. The obligation base is distributed across a relatively large number of awards, indicating a broad award profile rather than reliance on a small number of actions.
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.