Federal Contractor

SONOVA USA INC. Federal Contract Obligations (Last Year)

SONOVA USA INC. (CAGE 4B3G7, UEI N5VSMWF4G7K7) recorded 316.44 million in federal obligations across 53 award actions in the last full year.

Most of SONOVA USA INC.'s federal activity was with the Department of Veterans Affairs, which accounted for 314.87 million across 24 awards. By NAICS, obligations were concentrated in electromedical and electrotherapeutic apparatus manufacturing, with additional spending in electronic and precision equipment repair and maintenance.

Generated at 03/21/2026

Analysis period: Last full year

Figures reflect the last full year and may include small negative adjustments in line items and category totals.

CAGE Code
4B3G7
UEI
N5VSMWF4G7K7
Total Obligated
316.44 million
316,435,339.17
Award Actions
53
Average Action Value
5,970,478.09

About SONOVA USA INC. federal contract activity

SONOVA USA INC. (CAGE 4B3G7, UEI N5VSMWF4G7K7) recorded 53 FPDS awards in the last full year, with total obligated dollars of $316.44 million and an average award value of $5.97 million. The profile is highly concentrated in federal healthcare procurement, indicating a limited number of large awards rather than broad-based activity across many buyers.

Agency mix and customer concentration

The Department of Veterans Affairs accounted for nearly all obligations, with $314.87 million across 24 awards, representing the dominant share of the vendor’s federal business in the period. The Indian Health Service contributed a much smaller $1.57 million across 29 awards, showing secondary but materially lower agency exposure.

Industry profile based on NAICS activity

Contracting activity was led by NAICS 334510, Electromedical and Electrotherapeutic Apparatus Manufacturing, at $284.83 million across 34 awards. Repair and maintenance work under NAICS 811210 added $31.56 million across 12 awards, while NAICS 811219 contributed a marginal $47.05 thousand across 6 awards; NAICS 339112 shows a negligible negative obligated amount of $236.37 on one record.

Annual contract trend over the analysis window

The annual trend shows all observed obligations in 2025, totaling $316.44 million across 53 awards. Because the analysis window is the last full year and only one year is present, this view supports a point-in-time assessment rather than a multi-year growth or decline analysis.

How to interpret this page

This summary is based on FPDS award records associated with SONOVA USA INC., matched to CAGE 4B3G7 and UEI N5VSMWF4G7K7 for the last full year. Totals reflect obligated dollars as reported in the dataset, with agency, NAICS, and annual trend sections aggregated from the same record set.

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 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
3600 VETERANS AFFAIRS, DEPARTMENT OF 314,869,209.33 314.87 million 24
7527 INDIAN HEALTH SERVICE 1,566,129.84 1.57 million 29

Insight

Over the last full year, SONOVA USA INC. received 316.44 million in obligated value across 53 awards, with a highly concentrated profile. The Department of Veterans Affairs accounted for 314.87 million and 24 awards, representing nearly all of the vendor’s obligations in this window. Indian Health Service contributed 1.57 million across 29 awards, indicating a smaller but more frequent award pattern outside the primary customer relationship.

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 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
334510 ELECTROMEDICAL AND ELECTROTHERAPEUTIC APPARATUS MANUFACTURING 284,830,333.27 284.83 million 34
811210 ELECTRONIC AND PRECISION EQUIPMENT REPAIR AND MAINTENANCE 31,558,188.81 31.56 million 12
811219 OTHER ELECTRONIC AND PRECISION EQUIPMENT REPAIR AND MAINTENANCE 47,053.46 47.05 thousand 6
339112 SURGICAL AND MEDICAL INSTRUMENT MANUFACTURING -236.37 -236.37 1

Insight

Over the last full year, SONOVA USA INC. received $316.44 million across 53 awards, with obligations heavily concentrated in NAICS 334510, Electromedical and Electrotherapeutic Apparatus Manufacturing, which accounted for $284.83 million across 34 awards. NAICS 811210, Electronic and Precision Equipment Repair and Maintenance, was the secondary category at $31.56 million across 12 awards, while NAICS 811219 and 339112 contributed only immaterial amounts. Overall, the obligation profile is highly concentrated in medical/electromedical manufacturing, with limited spending spread across repair and maintenance classifications.

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 1 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

Insight

SONOVA USA INC. recorded $316.44 million in obligated awards across 53 awards in the last full year, for an average award value of about $5.97 million. The activity is fully concentrated in 2025 within the 1-year window, indicating a single-period award profile rather than a multi-year trend. This level of obligation suggests a relatively concentrated distribution of funding across a moderate number of 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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.