Federal Agency

U.S. FISH AND WILDLIFE SERVICE Federal Contract Obligations (Last 10 Years)

Federal procurement summary for the U.S. Fish and Wildlife Service (Agency ID 1448) covering obligations, awards, vendors, and NAICS patterns over the last 10 years.

Over the last 10 years, the U.S. Fish and Wildlife Service obligated $3.11 billion across 65,098 award actions, with an average action value of $47,723.24. Contracting activity is concentrated in construction, engineering, computer-related services, and facilities support, with annual obligations ranging from $280.97 million in 2025 to $407.22 million in 2024 in the provided recent-year data.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals, counts, and rankings reflect the provided FPDS analysis window and may vary with later data updates or record-level revisions.

Agency ID
1448
Total Obligated
3.11 billion
3,106,687,912.08
Award Actions
65,098
Average Action Value
47,723.24

About U.S. FISH AND WILDLIFE SERVICE federal contract activity

Over the last 10 years, the U.S. Fish and Wildlife Service obligated $3.11 billion across 65,098 awards, for an average award value of $47,723.24. The volume of actions is high relative to dollar value, indicating a procurement profile dominated by numerous smaller transactions with a meaningful share of larger construction, engineering, and support service awards.

Vendor concentration and leading contractors

Top obligations are concentrated among a mix of construction, infrastructure, and equipment vendors, led by Callan Marine Ltd at $53.73 million across 7 awards. Defense Base Services, Inc., Wickham Pipeline Construction, Nuaxis Limited Liability Company, and Caterpillar Inc. each received between $33.05 million and $36.66 million, with award counts ranging from 98 to 293, suggesting a broader vendor base with recurring tasking rather than reliance on a single supplier.

Industry profile based on NAICS activity

Obligations are led by NAICS 236220, Commercial and Institutional Building Construction, at $753.58 million across 3,390 awards, far exceeding any other category. The next largest categories are 237990 Other Heavy and Civil Engineering Construction, 541519 Other Computer Related Services, 541330 Engineering Services, and 561210 Facilities Support Services, showing that the agency’s spend is concentrated in construction, engineering, IT support, and facilities operations.

Annual contract trend over the analysis window

Annual obligations remained in the low-to-mid $300 million range from 2021 through 2023, then increased to $407.22 million in 2024 before easing to $280.97 million in 2025. Award counts followed a similar pattern, peaking at 5,684 in 2021 and staying above 4,000 each year shown, which indicates sustained procurement activity with a recent decline in obligated dollars.

How to interpret this page

This summary is based on FPDS obligations for agency ID 1448 over the last 10 years, using the supplied totals, award counts, vendor rankings, NAICS rankings, and annual trend data. Values are presented as obligated dollars and award counts only; no attempt was made to infer program outcomes, contract types, or reasons for year-to-year changes beyond the reported figures.

Top Vendors

SELECT
    vendor_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__vendor__vendorHeader__vendorName AS vendor_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__purchaserInformation__contractingOfficeAgencyID = '1448'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY vendor_name
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor Total Obligated Readable Award Actions
CALLAN MARINE LTD 53,733,388.01 53.73 million 7
DEFENSE BASE SERVICES, INC. 36,663,154.56 36.66 million 98
WICKHAM PIPELINE CONSTRUCTION 34,650,618.46 34.65 million 148
NUAXIS LIMITED LIABILITY COMPANY 34,253,851.91 34.25 million 248
CATERPILLAR INC. 33,054,696.00 33.05 million 293
ARAMARK SPORTS AND ENTERTAINMENT SERVICES LLC 31,013,213.13 31.01 million 46
DUCKS UNLIMITED, INC. 30,658,415.51 30.66 million 85
CHEROKEE NATION TECHNOLOGIES, L.L.C. 29,119,187.04 29.12 million 339
MINDBANK CONSULTING GROUP, L.L.C. 27,435,422.62 27.44 million 304
COUNTERTRADE PRODUCTS, INC. 26,192,649.61 26.19 million 794

Insight

Over the last 10 years, U.S. Fish and Wildlife Service obligated $3.11 billion across 65,098 awards, with an average award value of $47.7K. Top vendor obligations are relatively distributed rather than dominated by a single supplier: the largest vendor, Callan Marine Ltd, received $53.73 million across 7 awards, while the remaining top vendors each received roughly $26.19 million to $36.66 million. Award volume is concentrated in a few vendors with high transaction counts, including Countertrade Products, Inc. (794 awards), Cherokee Nation Technologies, L.L.C. (339), Mindbank Consulting Group, L.L.C. (304), and Caterpillar Inc. (293), indicating a mix of high-value, low-count and lower-value, high-frequency relationships.

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__purchaserInformation__contractingOfficeAgencyID = '1448'
        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
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 753,575,954.05 753.58 million 3,390
237990 OTHER HEAVY AND CIVIL ENGINEERING CONSTRUCTION 214,249,539.37 214.25 million 701
541519 OTHER COMPUTER RELATED SERVICES 155,142,714.80 155.14 million 4,577
541330 ENGINEERING SERVICES 129,931,621.86 129.93 million 2,133
561210 FACILITIES SUPPORT SERVICES 102,344,002.03 102.34 million 269
237110 WATER AND SEWER LINE AND RELATED STRUCTURES CONSTRUCTION 76,730,833.85 76.73 million 733
115310 SUPPORT ACTIVITIES FOR FORESTRY 75,915,059.31 75.92 million 1,145
541620 ENVIRONMENTAL CONSULTING SERVICES 69,163,134.51 69.16 million 2,360
237310 HIGHWAY, STREET, AND BRIDGE CONSTRUCTION 68,108,433.56 68.11 million 620
238990 ALL OTHER SPECIALTY TRADE CONTRACTORS 66,715,044.16 66.72 million 1,248

Insight

Over the last 10 years, U.S. Fish and Wildlife Service obligated 3.11 billion across 65,098 awards, with Top NAICS concentrated in construction-related work and technical support services. NAICS 236220, Commercial and Institutional Building Construction, is the largest category at 753.58 million across 3,390 awards, followed by 237990, Other Heavy and Civil Engineering Construction, at 214.25 million. The remaining top categories are more distributed, led by computer-related services, engineering, facilities support, environmental consulting, and forestry support, indicating a mixed portfolio with notable emphasis on infrastructure and mission support activities.

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__purchaserInformation__contractingOfficeAgencyID = '1448'
        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 280,969,026.00 280.97 million 4,153
2024 407,216,549.52 407.22 million 5,339
2023 358,069,448.48 358.07 million 5,251
2022 339,159,704.32 339.16 million 5,024
2021 330,898,238.57 330.90 million 5,684
2020 345,285,796.57 345.29 million 6,304
2019 320,264,581.25 320.26 million 6,045
2018 251,067,368.61 251.07 million 7,743
2017 245,688,608.74 245.69 million 9,150
2016 228,068,590.02 228.07 million 10,405

Insight

Over the last 10 years, U.S. Fish and Wildlife Service obligated $3.11 billion across 65,098 awards, averaging $47.7 thousand per award. Obligations were relatively steady from 2016 through 2022, ranging from $228.1 million to $345.3 million annually, then increased to $358.1 million in 2023 and peaked at $407.2 million in 2024 before declining to $281.0 million in 2025. Award counts trended downward over the period, from 10,405 in 2016 to 4,153 in 2025, indicating higher annual obligation levels were generally concentrated in fewer awards.

Use FPDS Query for deeper analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper market analysis across agencies, vendors, NAICS, and contract trends.

Continue from this last 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.