Federal Contractor

SONOVA USA INC. Federal Contract Obligations (Last 10 Years)

Federal procurement profile for SONOVA USA INC. (CAGE 4B3G7, UEI N5VSMWF4G7K7) covering obligations, award counts, agencies, NAICS, and annual trends over the last 10 years.

Over the last 10 years, SONOVA USA INC. recorded 425 award actions and 1.76 billion in obligated value, with an average action value of 4.14 million. The portfolio is concentrated with the Department of Veterans Affairs and the Indian Health Service, and is dominated by NAICS 334510 for electromedical and electrotherapeutic apparatus manufacturing.

Generated at 03/21/2026

Analysis period: Last 10 years

Obligation totals and counts are drawn from FPDS-style query results for the last 10 years and may include negative values from deobligations or corrections.

CAGE Code
4B3G7
UEI
N5VSMWF4G7K7
Total Obligated
1.76 billion
1,761,492,853.38
Award Actions
425
Average Action Value
4,144,689.06

About SONOVA USA INC. federal contract activity

SONOVA USA INC. recorded $1.76 billion in obligated federal awards across 425 awards over the last 10 years, with an average award value of $4.14 million. The company’s award profile is highly concentrated, with most obligations flowing through a small number of federal buyers.

Agency mix and customer concentration

The Department of Veterans Affairs accounts for the overwhelming majority of obligations at $1.76 billion across 201 awards, indicating SONOVA USA INC.’s primary federal relationship is with VA health procurement. The Indian Health Service contributed a much smaller $5.80 million across 224 awards, suggesting a secondary but more transaction-heavy buying pattern.

Industry profile based on NAICS activity

NAICS 334510, Electromedical and Electrotherapeutic Apparatus Manufacturing, dominates the vendor’s profile at $1.56 billion across 248 awards. Maintenance and repair activity is also material through NAICS 811219 and 811210, while smaller volumes appear in surgical and medical instrument manufacturing; one wholesale category shows a minor negative obligated amount, which likely reflects deobligation or adjustment activity rather than net new demand.

Annual contract trend over the analysis window

Obligations have remained consistently above $200 million annually in the most recent five years shown, rising from $200.95 million in 2021 to $316.44 million in 2025. Award counts also remained steady in the low- to mid-50s, indicating sustained procurement activity rather than a one-time spike.

How to interpret this page

This summary is based on FPDS award data for SONOVA USA INC. matched by CAGE 4B3G7 and UEI N5VSMWF4G7K7 over the last 10 years. Totals, counts, and averages reflect obligated dollars and award records in the selected analysis window; negative obligated values are retained as reported in the source data.

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 = '4B3G7'
        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
3600 VETERANS AFFAIRS, DEPARTMENT OF 1,755,697,524.64 1.76 billion 201
7527 INDIAN HEALTH SERVICE 5,795,328.74 5.80 million 224

Insight

Over the last 10 years, SONOVA USA INC. received 1.76 billion in obligations across 425 awards, with a high average award value of 4.14 million. Obligations are overwhelmingly concentrated in the Department of Veterans Affairs, which accounts for 1.76 billion across 201 awards, or nearly all recorded spending in this period. Indian Health Service contributed a much smaller share at 5.80 million, but with 224 awards, indicating a materially lower dollar value per award than VA.

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 = '4B3G7'
        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
334510 ELECTROMEDICAL AND ELECTROTHERAPEUTIC APPARATUS MANUFACTURING 1,558,157,501.47 1.56 billion 248
811219 OTHER ELECTRONIC AND PRECISION EQUIPMENT REPAIR AND MAINTENANCE 135,660,319.21 135.66 million 128
811210 ELECTRONIC AND PRECISION EQUIPMENT REPAIR AND MAINTENANCE 67,559,874.50 67.56 million 27
339112 SURGICAL AND MEDICAL INSTRUMENT MANUFACTURING 117,748.94 117.75 thousand 10
423450 MEDICAL, DENTAL, AND HOSPITAL EQUIPMENT AND SUPPLIES MERCHANT WHOLESALERS -2,590.74 -2.59 thousand 12

Insight

Over the last 10 years, SONOVA USA INC. (CAGE 4B3G7) received $1.76 billion across 425 awards, with obligations highly concentrated in NAICS 334510, which accounts for $1.56 billion and 248 awards. The next largest categories—NAICS 811219 and 811210—together add $203.22 million across 155 awards, indicating a secondary but much smaller concentration in repair and maintenance work. The remaining NAICS codes represent immaterial obligations by comparison, including 339112 at $117.75 thousand and 423450 at -$2.59 thousand, suggesting a narrow procurement profile centered on electromedical manufacturing.

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 = '4B3G7'
        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 316,435,339.17 316.44 million 53
2024 301,501,542.18 301.50 million 55
2023 301,098,509.07 301.10 million 54
2022 221,423,275.36 221.42 million 41
2021 200,949,055.18 200.95 million 46
2020 157,432,832.42 157.43 million 60
2019 166,452,639.80 166.45 million 49
2018 94,889,385.77 94.89 million 43
2017 1,310,274.43 1.31 million 24

Insight

SONOVA USA INC. received $1.76 billion across 425 awards over the last 10 years, with an average award value of $4.14 million. Obligations are heavily concentrated in the most recent four years, with 2022 through 2025 accounting for the largest annual totals and 2025 reaching $316.44 million. Earlier years were materially lower, including $1.31 million in 2017 and $94.89 million in 2018, indicating a sharp upward shift in obligated dollars over time. Award counts remained relatively steady in the 41 to 60 range since 2019, suggesting growth has been driven more by larger obligations than by a major increase in transaction volume.

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.