Federal Contractor

KELLY SERVICES, INC. Federal Contract Obligations (Last Year)

KELLY SERVICES, INC. (CAGE 9B025, UEI Y3FCQR7FW2E1) received 670 federal award actions totaling $90.32 million in the last full year, with all obligated activity reported under the National Institutes of Health.

In the last full year, KELLY SERVICES, INC. recorded 670 award actions and $90.32 million in obligated federal spending. The activity was concentrated at the National Institutes of Health, with most obligations classified under NAICS 541690 and 541990.

Generated at 03/21/2026

Analysis period: Last full year

Figures reflect the last full year and are based on obligated dollars, award action counts, and the top reported agency and NAICS categories.

CAGE Code
9B025
UEI
Y3FCQR7FW2E1
Total Obligated
90.32 million
90,323,609.84
Award Actions
670
Average Action Value
134,811.35

About KELLY SERVICES, INC. federal contract activity

KELLY SERVICES, INC. recorded 90.32 million in obligated dollars across 670 awards in the last full year, with an average award value of 134,811.35. The company’s activity is concentrated in a high-volume, mid-value award profile rather than a small number of large contracts. The provided data identifies CAGE 9B025 and UEI Y3FCQR7FW2E1.

Agency mix and customer concentration

All reported obligations came from the NATIONAL INSTITUTES OF HEALTH, which accounted for the full 90.32 million and all 670 awards in the analysis window. This indicates a highly concentrated agency relationship with no diversification visible in the provided agency breakdown. Procurement interpretation should therefore focus on NIH-specific demand patterns and buying behavior.

Industry profile based on NAICS activity

Obligations were dominated by NAICS 541690, OTHER SCIENTIFIC AND TECHNICAL CONSULTING SERVICES, at 83.68 million across 598 awards. NAICS 541990, ALL OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES, added 6.59 million across 68 awards, while NAICS 541380, TESTING LABORATORIES AND SERVICES, contributed 50,000 across 4 awards. The mix shows strong concentration in consulting-oriented professional services, with limited activity in testing services.

Annual contract trend over the analysis window

The annual trend provided for 2025 shows 90.32 million in obligated dollars across 670 awards, matching the full analysis window total. With only one year shown, the data supports a point-in-time view rather than a multi-year growth or decline assessment. No intra-period monthly or quarterly pattern is available in the supplied dataset.

How to interpret this page

This summary is based only on the provided FPDS Query aggregation for the last full year and does not infer details beyond the supplied totals, counts, and category labels. Amounts are presented as obligated dollars and award counts as reported in the source data. Where the dataset is limited to a single agency or year, the narrative reflects that concentration without extrapolation.

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 = '9B025'
        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
7529 NATIONAL INSTITUTES OF HEALTH 90,323,609.84 90.32 million 670

Insight

KELLY SERVICES, INC. (CAGE 9B025) shows complete concentration of obligations in a single top agency over the last full year. The NATIONAL INSTITUTES OF HEALTH accounted for the full $90.32 million obligated across 670 awards, yielding an average award value of about $134.8K. This indicates a highly concentrated funding profile with no diversification across other agencies in the reported period.

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 = '9B025'
        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
541690 OTHER SCIENTIFIC AND TECHNICAL CONSULTING SERVICES 83,680,547.65 83.68 million 598
541990 ALL OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES 6,593,062.19 6.59 million 68
541380 TESTING LABORATORIES AND SERVICES 50,000.00 50.00 thousand 4

Insight

During the last full year, KELLY SERVICES, INC. received $90.32 million across 670 awards, with activity highly concentrated in NAICS 541690, Other Scientific and Technical Consulting Services, which accounted for $83.68 million and 598 awards. NAICS 541990, All Other Professional, Scientific, and Technical Services, was a distant second at $6.59 million across 68 awards, indicating a secondary but materially smaller line of effort. NAICS 541380, Testing Laboratories and Services, was negligible at $50,000 across 4 awards, showing limited diversification beyond the two primary professional services 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 = '9B025'
        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 90,323,609.84 90.32 million 670

Insight

For the last full year, KELLY SERVICES, INC. (CAGE 9B025) recorded $90.32 million in obligated value across 670 awards, for an average award value of about $134.8K. Because the window contains only a single year, no year-over-year trend can be assessed from this view. The award profile indicates relatively broad distribution across a high transaction count rather than concentration in 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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.