Award Number

Award Number 1900 / 19AQMM23F0766 Federal Contract Action Summary (Last 10 Years)

Federal procurement award page for PIID 19AQMM23F0766 under agency 1900, covering the last 10 years of recorded actions and obligations.

This award record summarizes 26 actions for PIID 19AQMM23F0766 within agency ID 1900 over the last 10 years. Total obligated value is $2.33 billion, with an average action value of $89.5 million.

Generated at 03/20/2026

Analysis period: Last 10 years

Obligation totals are shown in both rounded and exact form; exact total obligated is 2326916907.41.

Agency ID
1900
PIID
19AQMM23F0766
Type
Award
Total Obligated
2.33 billion
2,326,916,907.41
Actions
26
Average Action Value
89,496,804.13

Overview

This page presents the award identified by PIID 19AQMM23F0766 for agency ID 1900. The record covers 26 actions during the last 10 years, with total obligated funding of $2,326,916,907.41. The average action value across the period is $89,496,804.13.

How to use this page

Use this page to review the award’s obligation history and action count over the selected 10-year window. The totals support basic analysis of scale and activity for this specific award record. This page does not infer contract scope, vendor identity, or performance details beyond the data provided.

Top Agencies

SELECT
    content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
    content__award__purchaserInformation__contractingOfficeAgencyID__name AS agency_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '1900' AND content__award__awardID__awardContractID__PIID = '19AQMM23F0766'
    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,
    agency_name
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Actions
1900 STATE, DEPARTMENT OF 2,326,916,907.41 2.33 billion 26

Insight

For PIID 19AQMM23F0766 over the 10-year window, all reported obligations are concentrated in the Department of State (Agency ID 1900). The award reflects $2.33 billion across 26 awards, indicating a highly concentrated distribution with no other agencies represented in the provided rows. This pattern suggests the procurement activity is agency-specific rather than dispersed across multiple top agencies.

Top Vendors

SELECT
    vendor_name,
    cage_code,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__vendor__vendorHeader__vendorName AS vendor_name,
        ifNull(content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode, '') AS cage_code,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        content__award__awardID__awardContractID__agencyID = '1900' AND content__award__awardID__awardContractID__PIID = '19AQMM23F0766'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY
        vendor_name,
        cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor CAGE Code Total Obligated Readable Actions
XATOR CORPORATION 393S5 2,326,916,907.41 2.33 billion 26

Insight

XATOR CORPORATION is the sole vendor listed in this 10-year top-vendor view for award 19AQMM23F0766, indicating full vendor concentration in the provided result set. The vendor accounts for $2.33 billion in total obligated value across 26 awards, suggesting a sustained and repeated funding relationship rather than a one-time award. This level of concentration may warrant closer review of dependency, competition, and continuity considerations within the award history.

Top NAICS

SELECT
    content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
    content__award__productOrServiceInformation__principalNAICSCode__description AS naics_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '1900' AND content__award__awardID__awardContractID__PIID = '19AQMM23F0766'
    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,
    naics_name
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Actions
561210 FACILITIES SUPPORT SERVICES 2,326,916,907.41 2.33 billion 26

Insight

Obligations for this award are concentrated entirely in NAICS 561210, Facilities Support Services, with $2.33 billion obligated across 26 awards over the 10-year window. This indicates a highly focused procurement profile with no diversification across other NAICS codes in the provided data. The volume of awards suggests repeated use of the same service category rather than a broad mix of requirement types.

Top PSC Codes

SELECT
    content__award__productOrServiceInformation__productOrServiceCode AS psc_code,
    content__award__productOrServiceInformation__productOrServiceCode__description AS psc_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '1900' AND content__award__awardID__awardContractID__PIID = '19AQMM23F0766'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    psc_code,
    psc_name
ORDER BY total_obligated DESC
LIMIT 10
PSC Code Description Total Obligated Readable Actions
V121 TRANSPORTATION/TRAVEL/RELOCATION- TRANSPORTATION: AIR CHARTER 2,326,916,907.41 2.33 billion 26

Insight

PSC V121 (Transportation/Travel/Relocation – Transportation: Air Charter) accounts for the full reported obligation in this 10-year window for award PIID 19AQMM23F0766, totaling $2.33 billion across 26 awards. This indicates a highly concentrated procurement profile with no diversification across other PSCs in the provided data. The award history suggests repeated use of air charter services as the dominant contractual activity for this entity.

Annual Trend

SELECT
    toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable,
    count() AS award_count
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '1900' AND content__award__awardID__awardContractID__PIID = '19AQMM23F0766'
    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 ASC
Year Total Obligated Readable Actions
2023 750,000,000.00 750.00 million 7
2024 1,273,103,594.41 1.27 billion 8
2025 303,813,313.00 303.81 million 11

Insight

Obligations for PIID 19AQMM23F0766 are concentrated in a short recent period, with activity recorded only in 2023 through 2025. Funding peaked in 2024 at $1.27 billion across 8 awards, after $750.0 million across 7 awards in 2023, then declined to $303.8 million across 11 awards in 2025. The increase in award count in 2025 alongside lower obligated value suggests a shift toward smaller individual awards or reduced funding levels.

Use FPDS Query for deeper award and vehicle analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper contract action analysis across agencies, vendors, NAICS, PSC, 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.