PERATON RISK DECISION INC. was awarded $236,136,997.02 across 29 actions in the last full year, for an average action value of $8,142,655.06. Spending was concentrated in NAICS 561611, Investigation and Personal Background Check Services, and primarily flowed through the Defense Counterintelligence and Security Agency, which accounted for $204.86 million of the total.
Federal Contractor
PERATON RISK DECISION INC. Federal Contract Obligations (Last Year)
PERATON RISK DECISION INC. (CAGE 3XUQ5, UEI P78LRLNYPUF4) recorded 29 federal award actions totaling $236.14 million in the last full year.
Figures reflect the last full year and are based on readable obligation totals, with agency and NAICS breakdowns shown for the same period.
About PERATON RISK DECISION INC. federal contract activity
PERATON RISK DECISION INC. (CAGE 3XUQ5, UEI P78LRLNYPUF4) recorded $236.14 million in obligated awards across 29 actions in the last full year, for an average award value of $8.14 million. The profile is highly concentrated in a single mission area, indicating dependence on a small set of related federal requirements rather than a broad award base.
Agency mix and customer concentration
Obligations were dominated by the DEFENSE COUNTERINTELLIGENCE AND SECURITY AGENCY, which accounted for $204.86 million across 7 awards, or most of the vendor's annual total. The remaining activity was spread across DHS components, led by U.S. Customs and Border Protection at $18.16 million and U.S. Immigration and Customs Enforcement at $6.24 million, with smaller volumes from Office of Procurement Operations and U.S. Citizenship and Immigration Services.
Industry profile based on NAICS activity
All recorded obligations fall under NAICS 561611, Investigation and Personal Background Check Services, totaling $236.14 million across 29 awards. This confirms a fully concentrated contract mix tied to personnel vetting, investigative, and background screening services.
Annual contract trend over the analysis window
The annual trend shows $236.14 million obligated in 2025 across 29 awards, with no additional years represented in the provided window. Because the dataset is limited to a single year, it supports a point-in-time view rather than a multi-year growth or decline assessment.
How to interpret this page
This summary uses FPDS award records for the last full year and aggregates obligated dollars and award counts by vendor, agency, and NAICS code. Values are reported as provided and rounded only for readability; interpretations are limited to the supplied dataset and do not infer unreported contract scope or performance.
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 = '3XUQ5'
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 |
|---|---|---|---|---|
| 97AV | DEFENSE COUNTERINTELLIGENCE AND SECURITY AGENCY (DCSA) | 204,862,578.70 | 204.86 million | 7 |
| 7014 | U.S. CUSTOMS AND BORDER PROTECTION | 18,155,467.50 | 18.16 million | 8 |
| 7012 | U.S. IMMIGRATION AND CUSTOMS ENFORCEMENT | 6,242,571.84 | 6.24 million | 8 |
| 7001 | OFFICE OF PROCUREMENT OPERATIONS | 4,019,952.98 | 4.02 million | 3 |
| 7003 | U.S. CITIZENSHIP AND IMMIGRATION SERVICES | 2,856,426.00 | 2.86 million | 3 |
Insight
PERATON RISK DECISION INC. received $236.14 million across 29 awards in the last full year, with spending highly concentrated at the Defense Counterintelligence and Security Agency (DCSA), which accounted for $204.86 million across 7 awards. DCSA represented roughly 87% of total obligated dollars, indicating a strong dependency on a single agency relationship. The remaining obligations were distributed across U.S. Customs and Border Protection ($18.16 million, 8 awards), U.S. Immigration and Customs Enforcement ($6.24 million, 8 awards), Office of Procurement Operations ($4.02 million, 3 awards), and U.S. Citizenship and Immigration Services ($2.86 million, 3 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 = '3XUQ5'
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 |
|---|---|---|---|---|
| 561611 | INVESTIGATION AND PERSONAL BACKGROUND CHECK SERVICES | 236,136,997.02 | 236.14 million | 29 |
Insight
PERATON RISK DECISION INC. shows complete concentration in NAICS 561611, Investigation and Personal Background Check Services, for the last full year. All 29 awards and the full $236.14 million obligated were recorded under this single NAICS, indicating a highly specialized and non-diversified federal contracting profile in this window. The average award value was $8.14 million, which suggests a moderate number of comparatively large awards rather than broad distribution across multiple industries.
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 = '3XUQ5'
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 | 236,136,997.02 | 236.14 million | 29 |
Insight
PERATON RISK DECISION INC. recorded $236.14 million in obligated value across 29 awards in the last full year, for an average award value of about $8.14 million. Because all reported obligations fall in a single year, there is no multi-year trend to assess within this 1-year window. The activity reflects a moderate concentration of obligation value across a relatively limited number of 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.