Patriot Contract Services, LLC’s federal procurement activity is concentrated in deep sea freight transportation under NAICS 483111, with $1.73 billion obligated across 2,724 award actions. The Department of the Navy accounts for most obligations at $1.27 billion, followed by the Maritime Administration at $466.56 million; annual obligations peaked in 2024 at $449.83 million and remained high in 2025 at $328.48 million.
Federal Contractor
PATRIOT CONTRACT SERVICES, LLC Federal Contract Obligations (Last 5 Years)
PATRIOT CONTRACT SERVICES, LLC (CAGE 1EQ81, UEI S9L9DZ8RBNL6) shows $1.73 billion in obligations across 2,724 federal award actions in the last five years.
Figures reflect FPDS obligations for the last five years and are based on the provided vendor identifiers, agency totals, NAICS classification, and annual award trends.
About PATRIOT CONTRACT SERVICES, LLC federal contract activity
PATRIOT CONTRACT SERVICES, LLC (CAGE 1EQ81, UEI S9L9DZ8RBNL6) recorded 2,724 FPDS-observed awards totaling $1.73 billion over the last 5 years, with an average award value of $636,772.38. The profile indicates a high-volume contracting history concentrated in maritime-related transportation activity.
Agency mix and customer concentration
The DEPT OF THE NAVY is the dominant customer, accounting for $1.27 billion across 307 awards, or the clear majority of obligated value in the period. MARITIME ADMINISTRATION is the secondary buyer by volume, with $466.56 million across 2,415 awards, while USTRANSCOM contributed only $10,000 across 2 awards. This mix shows heavy reliance on two maritime and transportation-focused agencies, with Navy obligations driving most dollars and MARAD driving most transaction count.
Industry profile based on NAICS activity
All recorded obligations in the dataset map to NAICS 483111, Deep Sea Freight Transportation, totaling $1.73 billion across 2,724 awards. The concentration in a single NAICS code suggests a narrowly focused operating profile centered on deep sea freight transportation services.
Annual contract trend over the analysis window
Annual obligations increased from $251.31 million in 2021 to $343.57 million in 2022 and $361.39 million in 2023, then rose further to $449.83 million in 2024 before easing to $328.48 million in 2025. Award counts were highest in 2025 at 875, even as obligated dollars declined from the prior year, indicating a shift toward smaller transactions or a different award mix in the most recent year.
How to interpret this page
This summary is based on FPDS-observed awards associated with CAGE 1EQ81 and UEI S9L9DZ8RBNL6 for the last 5 years. Totals reflect obligated dollars, award counts, agency and NAICS groupings, and annual trend data provided in the analysis window; it does not infer performance, capabilities, or non-FPDS activity.
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 = '1EQ81'
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 |
|---|---|---|---|---|
| 1700 | DEPT OF THE NAVY | 1,267,993,624.14 | 1.27 billion | 307 |
| 6938 | MARITIME ADMINISTRATION | 466,564,345.90 | 466.56 million | 2,415 |
| 9776 | USTRANSCOM | 10,000.00 | 10.00 thousand | 2 |
Insight
Over the last 5 years, PATRIOT CONTRACT SERVICES, LLC has received 1.73 billion across 2,724 awards, with obligations concentrated primarily in the Department of the Navy and the Maritime Administration. The Department of the Navy accounts for 1.27 billion, or the majority of obligated dollars, but only 307 awards, indicating a higher average value per award. The Maritime Administration represents 466.56 million across 2,415 awards, showing a much larger transaction count with lower-dollar awards. USTRANSCOM is a marginal source of obligations at 10.00 thousand across 2 awards.
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 = '1EQ81'
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 |
|---|---|---|---|---|
| 483111 | DEEP SEA FREIGHT TRANSPORTATION | 1,734,567,970.04 | 1.73 billion | 2,724 |
Insight
Over the last 5 years, PATRIOT CONTRACT SERVICES, LLC’s obligations are fully concentrated in NAICS 483111, Deep Sea Freight Transportation, accounting for the entire $1.73 billion obligated across 2,724 awards. This indicates a highly concentrated award profile with no diversification across other NAICS codes in the provided data. The average award value of approximately $636,772 reflects a large volume of relatively small-to-moderate obligations within a single transportation category.
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 = '1EQ81'
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 | 328,482,766.59 | 328.48 million | 875 |
| 2024 | 449,825,408.76 | 449.83 million | 554 |
| 2023 | 361,386,518.40 | 361.39 million | 509 |
| 2022 | 343,566,080.69 | 343.57 million | 356 |
| 2021 | 251,307,195.60 | 251.31 million | 430 |
Insight
PATRIOT CONTRACT SERVICES, LLC (CAGE 1EQ81) obligated $1.73 billion across 2,724 awards over the last 5 years, with an average award value of $636.8K. Obligations increased from $251.3M in 2021 to a peak of $449.8M in 2024, then declined to $328.5M in 2025. Award activity was most concentrated in 2025, which recorded 875 awards versus 356–554 awards in prior years, indicating a higher volume of smaller awards relative to prior periods.
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.