Federal Contractor

NEW TECH SOLUTIONS, INC. Federal Contract Obligations (Last 10 Years)

Federal procurement profile for NEW TECH SOLUTIONS, INC. (CAGE 1QN24, UEI XK11LLUL61A7) covering obligations, agencies, NAICS codes, and annual trends over the last 10 years.

NEW TECH SOLUTIONS, INC. has received 38,931 award actions totaling $3,801,437,488.81 in obligated value over the last 10 years, with an average action value of $97,645.51. Its activity is concentrated in computer-related services and defense and civilian agencies, led by the Department of the Navy, Department of the Air Force, State Department, DISA, and NIH.

Generated at 03/21/2026

Analysis period: Last 10 years

Figures reflect FPDS award data for the last 10 years and may change as records are updated or corrected.

CAGE Code
1QN24
UEI
XK11LLUL61A7
Total Obligated
3.80 billion
3,801,437,488.81
Award Actions
38,931
Average Action Value
97,645.51

About NEW TECH SOLUTIONS, INC. federal contract activity

NEW TECH SOLUTIONS, INC. recorded 38,931 FPDS actions and $3.80 billion in obligated value over the last 10 years, for an average award value of $97,645.51. The activity profile indicates sustained federal engagement across a broad set of awards, with materially higher concentration in IT and communications-related work than in any single procurement vehicle. CAGE 1QN24 and UEI XK11LLUL61A7 identify the vendor in federal procurement records.

Agency mix and customer concentration

Obligations are led by the DEPT OF THE NAVY at $539.25 million across 4,612 awards, followed by the DEPT OF THE AIR FORCE at $441.24 million across 3,226 awards. Civilian demand is also significant, with the DEPARTMENT OF STATE at $387.20 million and NIH at $264.28 million, while DISA contributes $344.00 million, underscoring a strong defense and security-oriented customer base. The mix suggests the vendor supports both military and civilian agencies, with recurring reliance from mission-critical organizations.

Industry profile based on NAICS activity

The portfolio is dominated by NAICS 541519, Other Computer Related Services, which accounts for $2.96 billion and 29,706 awards, indicating that most obligated value is tied to IT services rather than product sales. Secondary activity appears in Electronic Computer Manufacturing and Computer and Software Stores, with smaller but meaningful exposure in wireless communications equipment manufacturing and software publishing. Overall, the NAICS pattern points to a technology-focused supplier with a service-heavy spend profile and selective hardware/software components.

Annual contract trend over the analysis window

Annual obligations remain elevated and relatively stable in the most recent years shown, ranging from $487.33 million in 2021 to $578.80 million in 2024, with 2025 at $566.84 million to date in the provided window. Award counts also remain high, peaking at 5,288 in 2023 before moderating in 2024 and 2025, which suggests continued transaction volume rather than a one-time spike. The series indicates a durable contracting relationship with no sharp contraction over the period shown.

How to interpret this page

This summary is based on FPDS-observed obligations and award counts for NEW TECH SOLUTIONS, INC. during the last 10 years, grouped by agency, NAICS, and fiscal year. The analysis uses the provided vendor identifiers, aggregates, and ranked categories only, and does not infer revenues, subcontracting, or performance quality from the procurement data. Amounts are reported as obligated value, and years reflect the annual trend supplied in the source dataset.

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 = '1QN24'
        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
1700 DEPT OF THE NAVY 539,247,366.51 539.25 million 4,612
5700 DEPT OF THE AIR FORCE 441,244,491.53 441.24 million 3,226
1900 STATE, DEPARTMENT OF 387,200,099.42 387.20 million 10,275
97AK DEFENSE INFORMATION SYSTEMS AGENCY (DISA) 343,998,614.42 344.00 million 2,209
7529 NATIONAL INSTITUTES OF HEALTH 264,279,300.13 264.28 million 1,937
97DH DEFENSE HEALTH AGENCY (DHA) 132,742,791.61 132.74 million 429
12D0 FARM PRODUCTION AND CONSERVATION BUSINESS CENTER 113,346,564.98 113.35 million 496
2100 DEPT OF THE ARMY 112,898,162.90 112.90 million 1,335
12C2 FOREST SERVICE 86,048,260.33 86.05 million 332
7523 CENTERS FOR DISEASE CONTROL AND PREVENTION 80,469,119.80 80.47 million 320

Insight

Over the last 10 years, NEW TECH SOLUTIONS, INC. has received 3.80 billion across 38,931 awards, with obligations concentrated in a few agencies. The DEPT OF THE NAVY is the largest customer at 539.25 million, followed by the DEPT OF THE AIR FORCE at 441.24 million, STATE, DEPARTMENT OF at 387.20 million, and DISA at 344.00 million. The remaining top agencies are more distributed, including NIH at 264.28 million and a mix of defense, health, agriculture, and forestry organizations, indicating a diversified federal customer base beyond the leading DoD components.

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 = '1QN24'
        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
541519 OTHER COMPUTER RELATED SERVICES 2,961,508,595.10 2.96 billion 29,706
334111 ELECTRONIC COMPUTER MANUFACTURING 330,084,120.68 330.08 million 3,283
443120 COMPUTER AND SOFTWARE STORES 239,424,947.47 239.42 million 2,316
334220 RADIO AND TELEVISION BROADCASTING AND WIRELESS COMMUNICATIONS EQUIPMENT MANUFACTURING 133,652,856.70 133.65 million 629
511210 SOFTWARE PUBLISHERS 65,141,729.66 65.14 million 997
334118 COMPUTER TERMINAL AND OTHER COMPUTER PERIPHERAL EQUIPMENT MANUFACTURING 15,448,078.86 15.45 million 510
423430 COMPUTER AND COMPUTER PERIPHERAL EQUIPMENT AND SOFTWARE MERCHANT WHOLESALERS 10,966,348.54 10.97 million 378
334210 TELEPHONE APPARATUS MANUFACTURING 6,223,632.15 6.22 million 62
334112 COMPUTER STORAGE DEVICE MANUFACTURING 5,179,117.03 5.18 million 119
513210 SOFTWARE PUBLISHERS 4,595,161.65 4.60 million 100

Insight

Over the last 10 years, NEW TECH SOLUTIONS, INC. has received $3.80 billion across 38,931 awards, with obligations highly concentrated in NAICS 541519, Other Computer Related Services, which accounts for $2.96 billion and 29,706 awards. The next largest NAICS, 334111 Electronic Computer Manufacturing, is far smaller at $330.08 million, followed by 443120 Computer and Software Stores at $239.42 million, indicating a broad but heavily weighted portfolio centered on computer-related services. Remaining NAICS codes each represent materially smaller shares of obligations, suggesting limited diversification beyond the core IT and computer hardware/software categories.

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 = '1QN24'
        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 566,839,919.23 566.84 million 4,381
2024 578,798,541.03 578.80 million 4,771
2023 577,392,905.27 577.39 million 5,288
2022 502,092,859.48 502.09 million 4,774
2021 487,327,898.20 487.33 million 4,410
2020 371,641,064.57 371.64 million 4,800
2019 274,727,944.77 274.73 million 3,957
2018 234,173,337.02 234.17 million 3,369
2017 202,470,917.75 202.47 million 2,965
2016 5,972,101.49 5.97 million 216

Insight

NEW TECH SOLUTIONS, INC. shows a strong upward trajectory over the last 10 years, with total obligated dollars increasing from $5.97 million in 2016 to $566.84 million in 2025, for a cumulative 10-year total of $3.80 billion across 38,931 awards. Obligations accelerated sharply beginning in 2017 and then remained consistently elevated from 2020 through 2025, staying above $371.64 million annually. Award volume also expanded materially over the period, peaking at 5,288 awards in 2023, indicating a broad distribution of contract activity rather than reliance on a small number of large 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.