Federal Agency

OVERSEAS PRIVATE INVESTMENT CORPORATION Federal Contract Obligations (Last Year)

Last full-year FPDS procurement summary for the Overseas Private Investment Corporation (Agency ID 7100).

This page summarizes federal award activity for the Overseas Private Investment Corporation during the last full year. No award actions were recorded in the provided data for this period.

Generated at 03/21/2026

Analysis period: Last full year

The analysis window shows 0 award actions and no reported obligated amounts, vendor, NAICS, or annual trend rows.

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 returned no recorded awards for OVERSEAS PRIVATE INVESTMENT CORPORATION (Agency ID 7100) during the last full year, with an award count of zero and no obligated dollars reported. Because there were no observed awards in the analysis window, average award value and total obligated amount are not available.

Vendor concentration and leading contractors

No vendor concentration can be assessed for the period because the agency has no recorded awards in the dataset for the last full year. As a result, there are no top vendors to report or compare.

Industry profile based on NAICS activity

No NAICS distribution is available for OVERSEAS PRIVATE INVESTMENT CORPORATION in the last full year because no awards were recorded. Without award activity, there is no basis for identifying dominant industry categories or procurement patterns.

Annual contract trend over the analysis window

The annual trend is flat at zero for the analysis window, reflecting no recorded awards and no obligated spending. With only a single year represented and no transactions observed, there is no measurable year-over-year movement to analyze.

How to interpret this page

This summary reflects FPDS Query results for the last full year and is limited to awards captured in the source data for Agency ID 7100. Metrics are reported only where present in the dataset; empty fields indicate that no award activity was recorded in the analysis window.

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 1 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 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

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