Federal Contractor

TOTE SERVICES, LLC Federal Contract Obligations (Last Year)

TOTE SERVICES, LLC recorded 254.40 million in federal obligations across 644 actions in the last full year, led by Maritime Administration and deep sea freight transportation work.

In the last full year, TOTE SERVICES, LLC (CAGE 0B1X4, UEI UFQGBQM3JDY5) received 254,396,148.45 in obligated federal awards across 644 actions, for an average action value of 395,025.07. Most obligations came from the Maritime Administration and the Department of the Navy, with deep sea freight transportation accounting for the largest share of NAICS activity.

Generated at 03/21/2026

Analysis period: Last full year

This page reflects obligations and award actions captured in the selected analysis window and does not imply total contract ceiling value or all historical awards.

CAGE Code
0B1X4
UEI
UFQGBQM3JDY5
Total Obligated
254.40 million
254,396,148.45
Award Actions
644
Average Action Value
395,025.07

About TOTE SERVICES, LLC federal contract activity

TOTE SERVICES, LLC (CAGE 0B1X4, UEI UFQGBQM3JDY5) received $254.40 million across 644 awards in the last full year, for an average award value of $395,025.07. The spend profile is highly concentrated, indicating sustained federal buying activity rather than a small number of isolated awards.

Agency mix and customer concentration

Award activity was led by the Maritime Administration, which accounted for $169.61 million across 612 awards, or the clear majority of total obligations and transaction count. The Department of the Navy was the second-largest buyer at $84.78 million across 31 awards, while the Missile Defense Agency contributed a single $500 obligation.

Industry profile based on NAICS activity

Procurement is dominated by NAICS 483111, Deep Sea Freight Transportation, at $232.28 million across 625 awards, showing that core maritime transportation work drives most obligations. Ship Building and Repairing (NAICS 336611) added $22.11 million across 17 awards, while Engineering Services and R&D in the physical, engineering, and life sciences each appeared only once at $500, suggesting minimal diversification beyond the primary maritime line of business.

Annual contract trend over the analysis window

The annual trend shows all recorded activity in 2025, with $254.40 million obligated over 644 awards. Because only one year is present in the analysis window, this view supports a point-in-time assessment of current procurement volume rather than a multi-year growth or decline pattern.

How to interpret this page

This summary is based on FPDS-observed obligations associated with TOTE SERVICES, LLC using the provided CAGE code 0B1X4 and UEI UFQGBQM3JDY5. The analysis window is the last full year, and amounts reflect total obligated dollars, award counts, agency distribution, NAICS distribution, and annual totals as supplied.

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 = '0B1X4'
        AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
        AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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
6938 MARITIME ADMINISTRATION 169,614,006.90 169.61 million 612
1700 DEPT OF THE NAVY 84,781,641.55 84.78 million 31
97JC MISSILE DEFENSE AGENCY (MDA) 500.00 500.00 1

Insight

TOTE SERVICES, LLC’s obligations in the last full year are highly concentrated in the Maritime Administration, which accounts for $169.61 million across 612 awards, or the majority of the vendor’s $254.40 million total. The Department of the Navy is the second-largest customer at $84.78 million across 31 awards, indicating a two-agency concentration that drives nearly all obligated spend. The Missile Defense Agency activity is immaterial at $500 and one award, suggesting minimal diversification beyond the two primary agencies.

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 = '0B1X4'
        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
483111 DEEP SEA FREIGHT TRANSPORTATION 232,281,155.43 232.28 million 625
336611 SHIP BUILDING AND REPAIRING 22,113,993.02 22.11 million 17
541330 ENGINEERING SERVICES 500.00 500.00 1
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 500.00 500.00 1

Insight

TOTE SERVICES, LLC’s obligated dollars in the last full year were highly concentrated in NAICS 483111, Deep Sea Freight Transportation, which accounted for $232.28 million across 625 awards, or about 91% of total obligations. NAICS 336611, Ship Building and Repairing, was the only other material category, with $22.11 million across 17 awards, bringing the two largest NAICS codes to essentially all obligated dollars. The remaining NAICS codes, 541330 and 541715, each reflect a single $500 obligation, indicating only de minimis activity outside the primary transportation and shipbuilding profile.

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 = '0B1X4'
        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
2025 254,396,148.45 254.40 million 644

Insight

For the last full year, TOTE SERVICES, LLC (CAGE 0B1X4) recorded $254.40 million in obligated funding across 644 awards, yielding an average award value of approximately $395,025. Activity is concentrated within a single annual period in the 1-year window, with no year-over-year comparison available from the provided data. The volume of awards relative to total obligations indicates a high-frequency, moderately sized award profile rather than reliance on a small number of large actions.

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