Federal Contractor

INSITU, INC. Federal Contract Obligations (Last Year)

INSITU, INC. (CAGE 02FP7, UEI QXMUHJ7XTF89) recorded 88 award actions and $75.33 million in obligations in the last full year, led by Navy and Coast Guard spending.

In the last full year, INSITU, INC. received 88 federal award actions totaling $75,333,934.69. The Department of the Navy accounted for most obligations at $69.58 million, followed by the U.S. Coast Guard at $6.06 million, with activity concentrated in surveying and mapping services and engineering services.

Generated at 03/21/2026

Analysis period: Last full year

Amounts reflect the analysis window provided, and small negative or zero agency totals appear in the source data as recorded.

CAGE Code
02FP7
UEI
QXMUHJ7XTF89
Total Obligated
75.33 million
75,333,934.69
Award Actions
88
Average Action Value
856,067.43

About INSITU, INC. federal contract activity

INSITU, INC. recorded $75.33 million in obligated awards across 88 actions during the last full year, for an average award value of $856,067.43. The vendor’s federal business was heavily concentrated in Department of the Navy activity, with limited additional volume from a small number of other agencies.

Agency mix and customer concentration

The Department of the Navy accounted for $69.58 million across 73 awards, representing the clear core of INSITU, INC.’s federal receipts. The U.S. Coast Guard added $6.06 million across 6 awards, while DCMA recorded 2 awards with no obligated value; DLA and USSOCOM showed negative obligated totals, indicating downward adjustments or de-obligations during the period.

Industry profile based on NAICS activity

Contracting activity was concentrated in surveying and mapping services under NAICS 541370, which generated $39.76 million across 21 awards, and engineering services under NAICS 541330, which generated $34.61 million across 52 awards. Smaller amounts were placed in flight training and limited manufacturing-related codes, but these categories were not material relative to the core technical services profile.

Annual contract trend over the analysis window

The annual trend shows $75.33 million obligated in 2025 across 88 awards, matching the last full-year totals provided. With only one annual data point in the analysis window, this view supports a level snapshot rather than a directional trend assessment.

How to interpret this page

This summary is based on FPDS obligation records for the vendor identified by CAGE 02FP7 and UEI QXMUHJ7XTF89 over the last full year. Totals reflect obligated dollars, award counts, and NAICS and agency rollups as reported in the provided dataset; negative values are preserved as recorded and may reflect modifications or de-obligations.

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 = '02FP7'
        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
1700 DEPT OF THE NAVY 69,575,670.57 69.58 million 73
7008 U.S. COAST GUARD 6,055,474.07 6.06 million 6
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 2
97AS DEFENSE LOGISTICS AGENCY -13,857.92 -13.86 thousand 4
97ZS U.S. SPECIAL OPERATIONS COMMAND (USSOCOM) -283,352.03 -283.35 thousand 3

Insight

INSITU, INC. received 88 awards totaling $75.33 million over the last full year, with obligations highly concentrated in the DEPT OF THE NAVY, which accounted for $69.58 million across 73 awards. U.S. COAST GUARD was a distant second at $6.06 million across 6 awards, indicating that nearly all positive obligated value was concentrated in two agencies. DCMA recorded 2 awards with no obligated value, while DLA and USSOCOM posted negative obligations of $13.86 thousand and $283.35 thousand, respectively, suggesting limited downward adjustments outside the primary funding sources.

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 = '02FP7'
        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
541370 SURVEYING AND MAPPING (EXCEPT GEOPHYSICAL) SERVICES 39,763,353.24 39.76 million 21
541330 ENGINEERING SERVICES 34,613,865.62 34.61 million 52
611512 FLIGHT TRAINING 929,042.00 929.04 thousand 8
336413 OTHER AIRCRAFT PARTS AND AUXILIARY EQUIPMENT MANUFACTURING 25,333.38 25.33 thousand 5
336320 MOTOR VEHICLE ELECTRICAL AND ELECTRONIC EQUIPMENT MANUFACTURING 2,340.45 2.34 thousand 1
332510 HARDWARE MANUFACTURING 0.00 0.00 1

Insight

INSITU, INC.’s last full year obligations are highly concentrated in two NAICS codes: 541370 accounted for $39.76 million across 21 awards and 541330 accounted for $34.61 million across 52 awards. Together, these two categories represent virtually all reported obligations, indicating a strong emphasis on surveying/mapping and engineering services. The remaining NAICS codes contributed less than $1.0 million combined, with limited award activity and one zero-obligation award in 332510, suggesting only marginal diversification beyond the core 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 = '02FP7'
        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 75,333,934.69 75.33 million 88

Insight

During the last full year, INSITU, INC. (CAGE 02FP7) obligated $75.33 million across 88 awards, for an average award value of $856,067.43. The annual activity is concentrated in a single year in the 1-year window, so no year-over-year trend can be assessed from this view. The award volume indicates relatively broad distribution across transactions rather than reliance on a small number of obligations.

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.