Federal Contractor

CROWLEY LOGISTICS, INC. Federal Contract Obligations (Last 5 Years)

Federal procurement summary for CROWLEY LOGISTICS, INC. (CAGE 4PWR5, UEI HXXML7JRKTK5) covering the last 5 years of award activity.

CROWLEY LOGISTICS, INC. recorded 66 award actions with total obligated dollars of 1.24 billion and an average action value of 18,810,343.12 over the last five years. Most obligations were awarded by USTRANSCOM and aligned to NAICS 488510, Freight Transportation Arrangement, with annual obligations peaking in 2023 and remaining above 79 million in 2025.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals reflect readable FPDS-observed obligations for the selected analysis window and may include small negative values in agency and NAICS rollups.

CAGE Code
4PWR5
UEI
HXXML7JRKTK5
Total Obligated
1.24 billion
1,241,482,646.25
Award Actions
66
Average Action Value
18,810,343.12

About CROWLEY LOGISTICS, INC. federal contract activity

CROWLEY LOGISTICS, INC. (CAGE 4PWR5, UEI HXXML7JRKTK5) recorded $1.24 billion in obligations across 66 FPDS awards over the last 5 years, for an average award value of $18.81 million. The profile is highly concentrated in a small number of large awards rather than a broad transaction base.

Agency mix and customer concentration

USTRANSCOM accounts for essentially all reported obligations, with 62 awards totaling $1.24 billion. The only other agencies in the window are very small and negative-value adjustments from the Agency for International Development and FEMA, indicating the vendor’s federal business is overwhelmingly concentrated with transportation command requirements.

Industry profile based on NAICS activity

The vendor’s obligations are dominated by NAICS 488510, Freight Transportation Arrangement, which mirrors the agency concentration and represents the core of the contract activity. Smaller entries in General Warehousing and Storage and Deep Sea Freight Transportation are immaterial by comparison and appear to reflect minor adjustments rather than meaningful diversification.

Annual contract trend over the analysis window

Annual obligations rose sharply from $35.08 million in 2021 to $375.11 million in 2022 and peaked at $436.73 million in 2023. Activity then moderated to $315.46 million in 2024 and $79.11 million in 2025, suggesting a tapering after the 2023 high point while remaining above the 2021 baseline.

How to interpret this page

This summary is based on FPDS award obligations associated with CROWLEY LOGISTICS, INC. for the last 5 years, using the provided CAGE code and UEI. Totals, counts, and rankings reflect the supplied aggregation across obligations, agencies, NAICS codes, and award years; negative values are retained as reported.

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 = '4PWR5'
        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
9776 USTRANSCOM 1,241,668,324.93 1.24 billion 62
7200 AGENCY FOR INTERNATIONAL DEVELOPMENT -0.18 -0.18 1
7022 FEDERAL EMERGENCY MANAGEMENT AGENCY -185,678.50 -185.68 thousand 3

Insight

Over the last 5 years, CROWLEY LOGISTICS, INC. received 66 awards totaling $1.24 billion, with obligations highly concentrated at USTRANSCOM. USTRANSCOM accounted for 62 awards and $1.24 billion, indicating near-total dependence on a single agency customer. The remaining obligations were negligible and included small negative values for AGENCY FOR INTERNATIONAL DEVELOPMENT and FEMA, suggesting minimal activity outside the primary funding source.

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 = '4PWR5'
        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
488510 FREIGHT TRANSPORTATION ARRANGEMENT 1,241,668,324.93 1.24 billion 62
493110 GENERAL WAREHOUSING AND STORAGE -0.18 -0.18 1
483111 DEEP SEA FREIGHT TRANSPORTATION -185,678.50 -185.68 thousand 3

Insight

Over the last 5 years, CROWLEY LOGISTICS, INC. (CAGE 4PWR5) received $1.24 billion across 66 awards, with an average award value of $18.81 million. Obligations are highly concentrated in NAICS 488510, Freight Transportation Arrangement, which accounts for 62 awards and essentially all obligated dollars. The remaining activity is limited to NAICS 493110, General Warehousing and Storage, and NAICS 483111, Deep Sea Freight Transportation, both with negligible or negative obligated amounts, indicating a very narrow procurement profile in this period.

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 = '4PWR5'
        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 79,105,591.85 79.11 million 10
2024 315,461,007.46 315.46 million 12
2023 436,726,790.39 436.73 million 20
2022 375,109,226.61 375.11 million 18
2021 35,080,029.94 35.08 million 6

Insight

CROWLEY LOGISTICS, INC. (CAGE 4PWR5) recorded $1.24 billion in obligations across 66 awards over the last 5 years, with an average award value of $18.81 million. Annual obligations are highly concentrated in 2022 through 2024, which together account for the large majority of total spend, peaking in 2023 at $436.73 million across 20 awards. Activity declined in 2025 to $79.11 million across 10 awards after a 2024 level of $315.46 million, while 2021 was comparatively low at $35.08 million across 6 awards.

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.