Federal Contractor

B.I. INCORPORATED Federal Contract Obligations (Last 10 Years)

B.I. INCORPORATED (CAGE 3CUH9, UEI PKK6L9KLMYR5) recorded 125 federal award actions and $1.97 billion in obligations over the last 10 years.

B.I. INCORPORATED’s federal contract history is concentrated with U.S. Immigration and Customs Enforcement, which accounts for all $1.97 billion in obligations across 125 actions in the analysis window. Most obligations fall under NAICS 561210, Facilities Support Services, with smaller activity in investigation and personal background check services.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals reflect the last 10 years of readable FPDS-observed obligations and may include awards with zero obligated value in some NAICS categories.

CAGE Code
3CUH9
UEI
PKK6L9KLMYR5
Total Obligated
1.97 billion
1,968,710,209.13
Award Actions
125
Average Action Value
15,749,681.67

About B.I. INCORPORATED federal contract activity

B.I. INCORPORATED (CAGE 3CUH9, UEI PKK6L9KLMYR5) recorded 125 FPDS awards totaling $1.97 billion over the last 10 years, with an average award value of $15.75 million. The obligation base is concentrated in a small number of awards at a relatively high average dollar value, indicating a sustained role in large federal service contracts.

Agency mix and customer concentration

All tracked obligations are with U.S. Immigration and Customs Enforcement, which accounts for the full $1.97 billion and all 125 awards in the analysis window. This indicates a highly concentrated customer profile with no diversification across agencies in the provided dataset.

Industry profile based on NAICS activity

The contract profile is overwhelmingly concentrated in NAICS 561210, Facilities Support Services, which represents $1.97 billion across 117 awards. Secondary activity is limited to NAICS 561611, Investigation and Personal Background Check Services, at $1.62 million across one award, while the remaining listed NAICS categories show award counts but no obligated dollars in the provided data.

Annual contract trend over the analysis window

Annual obligations peaked in 2023 at $332.98 million, followed by $324.91 million in 2022 and $281.38 million in 2021. The most recent years remain material but lower than the 2023 high, with $245.56 million in 2024 and $171.51 million in 2025, suggesting a moderation in annual obligation volume within the current period.

How to interpret this page

This summary is based on FPDS award records for the last 10 years using the vendor identifiers provided for B.I. INCORPORATED. Totals, award counts, agency concentration, NAICS distribution, and annual trends reflect only the values supplied in the input and are not adjusted for inflation, obligation timing nuances, or missing-record validation.

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 = '3CUH9'
        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
)
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Award Actions
7012 U.S. IMMIGRATION AND CUSTOMS ENFORCEMENT 1,968,710,209.13 1.97 billion 125

Insight

Over the last 10 years, B.I. INCORPORATED’s obligated dollars are fully concentrated in a single Top Agency: U.S. Immigration and Customs Enforcement, which accounts for the full $1.97 billion in obligations. The vendor received 125 awards from this agency over the period, for an average award value of about $15.7 million. This pattern indicates a highly concentrated customer base with no visible agency diversification in the provided data.

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 = '3CUH9'
        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
)
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Award Actions
561210 FACILITIES SUPPORT SERVICES 1,967,085,709.13 1.97 billion 117
561611 INVESTIGATION AND PERSONAL BACKGROUND CHECK SERVICES 1,624,500.00 1.62 million 1
315999 OTHER APPAREL ACCESSORIES AND OTHER APPAREL MANUFACTURING 0.00 0.00 1
624190 OTHER INDIVIDUAL AND FAMILY SERVICES 0.00 0.00 6

Insight

Over the last 10 years, B.I. INCORPORATED’s obligations are highly concentrated in NAICS 561210, Facilities Support Services, which accounts for $1.97 billion across 117 awards and essentially all of the vendor’s $1.97 billion total obligated. A much smaller share is in NAICS 561611, Investigation and Personal Background Check Services, at $1.62 million on 1 award. The remaining listed NAICS codes have awards recorded but no obligated dollars, indicating limited diversification beyond the core facilities support category.

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 = '3CUH9'
        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 DESC
Year Total Obligated Readable Award Actions
2025 171,510,932.72 171.51 million 9
2024 245,556,256.98 245.56 million 14
2023 332,982,324.87 332.98 million 17
2022 324,911,416.65 324.91 million 7
2021 281,382,937.72 281.38 million 9
2020 215,499,659.42 215.50 million 12
2019 161,446,014.84 161.45 million 13
2018 119,524,190.91 119.52 million 16
2017 115,896,475.02 115.90 million 28

Insight

B.I. INCORPORATED’s obligations total $1.97 billion across 125 awards over the last 10 years, averaging $15.75 million per award. Funding is concentrated in the more recent years, with annual obligations rising from $115.90 million in 2017 to a peak of $332.98 million in 2023 before declining to $171.51 million in 2025. Award volume is less tightly aligned to dollars obligated, ranging from 7 awards in 2022 to 28 awards in 2017, indicating that higher annual obligation levels were driven more by award size than by award count.

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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.