Federal Agency

OVERSEAS PRIVATE INVESTMENT CORPORATION Federal Contract Obligations (Last 5 Years)

FPDS procurement summary for the Overseas Private Investment Corporation (Agency ID 7100) covering the last 5 years shows no recorded award actions.

This page summarizes federal procurement activity for the Overseas Private Investment Corporation using FPDS data for the last 5 years. The available record shows zero award actions, with no vendor, NAICS, annual trend, or obligation detail provided in the source inputs.

Generated at 03/21/2026

Analysis period: Last 5 years

All quantitative fields are blank or unavailable in the provided inputs, so the summary reflects only the reported zero award action count.

Agency ID
7100
Total Obligated
0.00
Award Actions
0
Average Action Value
0.00

About OVERSEAS PRIVATE INVESTMENT CORPORATION federal contract activity

FPDS Query records no obligations, awards, or measurable average award value for the Overseas Private Investment Corporation (Agency ID 7100) during the last 5 years. With an award count of 0, there is no observable federal procurement activity to summarize in this analysis window.

Vendor concentration and leading contractors

No vendors appear in the provided dataset for this agency and period. Because there are no recorded awards, vendor concentration, market share, and incumbent performance patterns cannot be assessed from the available data.

Industry profile based on NAICS activity

No NAICS codes are associated with this agency in the provided 5-year window. As a result, there is no procurement mix to classify by industry or to identify the agency’s primary contracting categories.

Annual contract trend over the analysis window

The annual trend is flat at zero across the analysis period, based on the absence of recorded awards. With no year-over-year activity, there is no basis to infer changes in procurement volume, obligational tempo, or acquisition patterns.

How to interpret this page

This summary is limited to the supplied FPDS Query metrics for the last 5 years and reflects only recorded award activity. Where the dataset contains null or empty fields, no values are inferred or estimated.

Top Vendors

SELECT
    vendor_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__vendor__vendorHeader__vendorName AS vendor_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__purchaserInformation__contractingOfficeAgencyID = '7100'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY vendor_name
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor Total Obligated Readable Award Actions

Insight

No notable vendor concentration was available for this analysis window.

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__purchaserInformation__contractingOfficeAgencyID = '7100'
        AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
        AND content__award__productOrServiceInformation__principalNAICSCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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

Insight

No notable NAICS concentration was available for this analysis window.

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__purchaserInformation__contractingOfficeAgencyID = '7100'
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY year
)
ORDER BY year DESC
Year Total Obligated Readable Award Actions

Insight

No annual trend data was available for this analysis window.

Use FPDS Query for deeper analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper market analysis across agencies, vendors, NAICS, and contract trends.

Continue from this last 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.