Federal Contractor

FORD MOTOR COMPANY Federal Contract Obligations (Last 5 Years)

Federal procurement profile for FORD MOTOR COMPANY (CAGE 3LQV7, UEI QD3MLADL7366) covering obligations, agencies, NAICS codes, and annual trends over the last 5 years.

FORD MOTOR COMPANY recorded 50,441 award actions and 2.742781159 billion in obligated federal spending during the last 5 years, with an average action value of 54,376.02. Most activity came through the Federal Acquisition Service, and the dominant NAICS code was 336111, Automobile Manufacturing.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals reflect readable FPDS analysis-window data and may include small negative or zero-obligation actions as reported.

CAGE Code
3LQV7
UEI
QD3MLADL7366
Total Obligated
2.74 billion
2,742,781,159.09
Award Actions
50,441
Average Action Value
54,376.02

About FORD MOTOR COMPANY federal contract activity

FORD MOTOR COMPANY recorded 50,441 awards totaling 2.74 billion over the last 5 years, with an average award value of 54,376.02. The profile is highly concentrated in a single federal buyer relationship, indicating a large volume of relatively small transactions rather than a small number of high-dollar awards.

Agency mix and customer concentration

The Federal Acquisition Service accounts for nearly all observed obligations at 2.74 billion across 50,413 awards, making it the dominant contracting channel by a wide margin. Secondary activity is limited to the National Institutes of Health at 1.95 million and the Department of State at 28.74 thousand; the remaining agencies show either zero or negative obligated amounts, which suggests adjustments, cancellations, or deobligations rather than substantive purchase volume.

Industry profile based on NAICS activity

NAICS 336111, Automobile Manufacturing, overwhelmingly drives the profile with 2.74 billion across 50,431 awards. All other NAICS categories are marginal by comparison, with small activity in motorcycle and motor vehicle dealers, zero-obligation wholesaler records, and a negative obligation entry in passenger car leasing.

Annual contract trend over the analysis window

Annual obligated amounts were strongest in 2022 at 774.57 million, followed by 2025 at 633.33 million and 2023 at 535.14 million. The pattern shows a decline in 2024 to 274.95 million before rebounding in 2025, with award counts following a similar high-volume, transaction-heavy profile.

How to interpret this page

This summary reflects FPDS award records associated with CAGE 3LQV7 and UEI QD3MLADL7366 during the last 5 years. Totals are based on obligated dollars and award counts as reported in the provided dataset; negative and zero obligations are preserved as recorded and may indicate modifications, deobligations, or non-obligating transactions.

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 = '3LQV7'
        AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
        AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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
4732 FEDERAL ACQUISITION SERVICE 2,740,852,770.14 2.74 billion 50,413
7529 NATIONAL INSTITUTES OF HEALTH 1,948,129.43 1.95 million 18
1900 STATE, DEPARTMENT OF 28,739.52 28.74 thousand 4
6800 ENVIRONMENTAL PROTECTION AGENCY 0.00 0.00 5
7009 U.S. SECRET SERVICE -48,480.00 -48.48 thousand 1

Insight

FORD MOTOR COMPANY’s obligations over the last 5 years are highly concentrated at the Federal Acquisition Service, which accounts for nearly all activity at $2.74 billion across 50,413 awards. The next-largest customer, the National Institutes of Health, obligated only $1.95 million across 18 awards, with all remaining agencies representing de minimis amounts. The mix suggests a procurement profile dominated by one agency relationship, with limited diversification across the federal customer base.

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 = '3LQV7'
        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
336111 AUTOMOBILE MANUFACTURING 2,742,800,899.57 2.74 billion 50,431
441228 MOTORCYCLE, ATV, AND ALL OTHER MOTOR VEHICLE DEALERS 28,739.52 28.74 thousand 4
423110 AUTOMOBILE AND OTHER MOTOR VEHICLE MERCHANT WHOLESALERS 0.00 0.00 5
532112 PASSENGER CAR LEASING -48,480.00 -48.48 thousand 1

Insight

Over the last 5 years, FORD MOTOR COMPANY’s obligations are overwhelmingly concentrated in NAICS 336111, Automobile Manufacturing, which accounts for nearly all reported activity at $2.74 billion across 50,431 awards. The remaining NAICS codes represent immaterial share by value: 441228 totals $28.74 thousand across 4 awards, 423110 has 5 awards with zero obligated dollars, and 532112 shows a small negative obligation of $48.48 thousand on 1 award. This pattern indicates a highly concentrated procurement profile with limited diversification outside the core manufacturing NAICS.

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 = '3LQV7'
        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
2025 633,334,125.94 633.33 million 13,519
2024 274,948,685.20 274.95 million 4,899
2023 535,136,651.35 535.14 million 7,551
2022 774,571,550.84 774.57 million 13,971
2021 524,790,145.76 524.79 million 10,501

Insight

FORD MOTOR COMPANY (CAGE 3LQV7) received $2.74 billion across 50,441 awards over the last 5 years, with an average award value of $54,376. Obligations were concentrated in 2022 at $774.57 million, followed by a decline in 2023 and 2024 before increasing again in 2025 to $633.33 million. Award volume generally tracked dollar obligations, with the highest count in 2025 (13,519) and the lowest in 2024 (4,899), indicating a mix of smaller, higher-frequency awards and more variable annual obligation levels.

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