TOTE SERVICES, LLC recorded $2,967,229,164.63 in total obligated actions across 3,922 awards in the last 10 years, with an average action value of $756,560.21. Most obligations came from the Maritime Administration and the Department of the Navy, and the largest NAICS concentrations were Ship Building and Repairing and Deep Sea Freight Transportation.
Federal Contractor
TOTE SERVICES, LLC Federal Contract Obligations (Last 10 Years)
Federal procurement profile for TOTE SERVICES, LLC (CAGE 0B1X4, UEI UFQGBQM3JDY5) covering obligations, awards, agencies, NAICS codes, and annual trends over the last 10 years.
Annual figures shown here are limited to the provided top years, with 2025 the highest at $254.40 million and 2021 next at $715.70 million.
About TOTE SERVICES, LLC federal contract activity
TOTE SERVICES, LLC (CAGE 0B1X4, UEI UFQGBQM3JDY5) recorded 3,922 awards totaling $2.97 billion over the last 10 years, for an average award value of $756,560.21. The award history is concentrated in a relatively small number of high-value obligations, indicating a mix of recurring transportation-related work and larger maritime support actions.
Agency mix and customer concentration
The Maritime Administration accounts for the dominant share of obligations at $2.44 billion across 3,644 awards, making it the clear primary customer. The Department of the Navy is the second-largest buyer at $522.41 million across 277 awards, while the Missile Defense Agency appears only once with a nominal $500 obligation.
Industry profile based on NAICS activity
The vendor’s obligations are concentrated in ship building and repairing (NAICS 336611) and deep sea freight transportation (NAICS 483111), which together represent nearly all reported funding. Smaller amounts appear under engineering services (541330), and a single nominal obligation is associated with R&D in the physical, engineering, and life sciences (541715).
Annual contract trend over the analysis window
Annual obligations show a decline from $715.70 million in 2021 to $172.46 million in 2023, followed by a rebound to $200.94 million in 2024 and $254.40 million in 2025. Award counts moved in the opposite direction in the most recent years, with 644 awards in 2025 and 462 in 2024, suggesting more frequent but lower-value actions.
How to interpret this page
This summary is based on FPDS award records for the last 10 years and reflects obligations, award counts, and classification by agency and NAICS code. Values reported as 'readable' amounts are preserved as provided, and the analysis does not infer contract scope beyond the underlying FPDS categories.
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 10 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 | 2,444,820,284.50 | 2.44 billion | 3,644 |
| 1700 | DEPT OF THE NAVY | 522,408,380.13 | 522.41 million | 277 |
| 97JC | MISSILE DEFENSE AGENCY (MDA) | 500.00 | 500.00 | 1 |
Insight
Over the last 10 years, TOTE SERVICES, LLC received $2.97 billion across 3,922 awards, with obligations highly concentrated at the Maritime Administration. MARITIME ADMINISTRATION accounted for $2.44 billion and 3,644 awards, representing the clear dominant share of both dollars and activity. DEPT OF THE NAVY was a secondary source of obligations at $522.41 million across 277 awards, while MISSILE DEFENSE AGENCY contributed only a nominal $500 on one award, indicating 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 10 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 |
|---|---|---|---|---|
| 336611 | SHIP BUILDING AND REPAIRING | 1,629,200,599.81 | 1.63 billion | 84 |
| 483111 | DEEP SEA FREIGHT TRANSPORTATION | 1,279,983,165.14 | 1.28 billion | 3,808 |
| 541330 | ENGINEERING SERVICES | 58,044,899.68 | 58.04 million | 29 |
| 541715 | RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) | 500.00 | 500.00 | 1 |
Insight
Over the last 10 years, TOTE SERVICES, LLC has received $2.97 billion across 3,922 awards, with obligations concentrated in two NAICS codes. Ship Building and Repairing (336611) accounts for $1.63 billion across 84 awards, while Deep Sea Freight Transportation (483111) accounts for $1.28 billion across 3,808 awards, together representing essentially all obligated value. The remaining NAICS activity is comparatively limited, led by Engineering Services (541330) at $58.04 million across 29 awards, with only a nominal obligation under R&D (541715).
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 10 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 |
| 2024 | 200,940,215.31 | 200.94 million | 462 |
| 2023 | 172,460,712.51 | 172.46 million | 386 |
| 2022 | 432,892,709.83 | 432.89 million | 391 |
| 2021 | 715,701,477.47 | 715.70 million | 424 |
| 2020 | 814,467,703.30 | 814.47 million | 353 |
| 2019 | 121,141,571.67 | 121.14 million | 368 |
| 2018 | 168,330,591.16 | 168.33 million | 488 |
| 2017 | 94,978,144.02 | 94.98 million | 403 |
| 2016 | -8,080,109.09 | -8.08 million | 3 |
Insight
Over the last 10 years, TOTE SERVICES, LLC (CAGE 0B1X4) obligated 2.97 billion across 3,922 awards, with an average award value of about 756.6 thousand. Obligations are concentrated in the 2020–2022 period, which accounts for the largest annual totals, peaking in 2020 at 814.47 million and remaining elevated in 2021 at 715.70 million before declining in 2022. Since 2023, annual obligations have moderated to the 172.46 million to 254.40 million range, while award counts increased in 2025 to 644, indicating more numerous but smaller awards relative to the peak funding years. 2016 is an outlier with a negative obligation total and only 3 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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.