Federal Agency

ELECTION ASSISTANCE COMMISSION Federal Contract Obligations (Last 10 Years)

Procurement summary for the Election Assistance Commission covering obligations, awards, vendors, NAICS codes, and annual spending trends over the last 10 years.

Over the last 10 years, the Election Assistance Commission recorded 10 award actions totaling $348,053.04 in obligated spending. Activity was concentrated in 2017 and 2018, with the largest obligations going to Creative Options of District of Columbia Inc. and service categories including temporary help, translation, and facilities support.

Generated at 03/21/2026

Analysis period: Last 10 years

Figures reflect the provided FPDS analysis window and are shown as obligated amounts, not necessarily outlays or deobligations.

Agency ID
9523
Total Obligated
348.05 thousand
348,053.04
Award Actions
10
Average Action Value
34,805.30

About ELECTION ASSISTANCE COMMISSION federal contract activity

Over the last 10 years, the Election Assistance Commission obligated 348.05 thousand across 10 awards, with an average award value of 34,805.3. The funding base is small and concentrated, indicating limited procurement activity within the period reviewed.

Vendor concentration and leading contractors

Vendor obligations are highly concentrated among a few suppliers. Creative Options of District of Columbia Inc. received 163.96 thousand across 4 awards, while Fors Marsh Group LLC, GovSmart, Inc., and Translations International, Inc. each received single awards ranging from 50.00 thousand to 75.00 thousand.

Industry profile based on NAICS activity

Procurement activity is concentrated in a narrow set of NAICS categories. Temporary Help Services led with 163.96 thousand across 4 awards, followed by All Other Professional, Scientific, and Technical Services at 75.00 thousand and Electronics Stores at 52.90 thousand, with smaller amounts in Translation and Interpretation Services and Facilities Support Services.

Annual contract trend over the analysis window

Recorded obligations are concentrated in 2017 and 2018, with 251.89 thousand across 7 awards in 2017 and 96.16 thousand across 3 awards in 2018. The year-over-year decline suggests procurement volume dropped after 2017, and no other years appear in the provided period.

How to interpret this page

This summary is based on the provided FPDS Query aggregates for the Election Assistance Commission (Agency ID 9523) over the last 10 years. Values reflect obligated dollars, award counts, top vendors, top NAICS classifications, and annual totals as supplied, with no additional estimation or inference beyond the stated data.

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 = '9523'
        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
CREATIVE OPTIONS OF DISTRICT OF COLUMBIA INC. 163,961.00 163.96 thousand 4
FORS MARSH GROUP LLC 75,000.00 75.00 thousand 1
GOVSMART, INC. 52,896.44 52.90 thousand 1
TRANSLATIONS INTERNATIONAL, INC. 50,000.00 50.00 thousand 1
NATIONAL PRESS CLUB OF WASHINGTON, D.C., INC, (THE) 6,162.00 6.16 thousand 2
WAGEWORKS, INC. 33.60 33.60 1

Insight

Over the last 10 years, ELECTION ASSISTANCE COMMISSION obligated $348.05 thousand across 10 awards, with an average award value of $34.8 thousand. Vendor spending is moderately concentrated: CREATIVE OPTIONS OF DISTRICT OF COLUMBIA INC. received $163.96 thousand across 4 awards, or about 47% of total obligations. The remaining obligations were distributed among several vendors, including three single-award vendors at $50.0 thousand to $75.0 thousand each, indicating limited breadth beyond the top recipient.

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 = '9523'
        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
561320 TEMPORARY HELP SERVICES 163,961.00 163.96 thousand 4
541990 ALL OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES 75,000.00 75.00 thousand 1
443142 ELECTRONICS STORES 52,896.44 52.90 thousand 1
541930 TRANSLATION AND INTERPRETATION SERVICES 50,000.00 50.00 thousand 1
561210 FACILITIES SUPPORT SERVICES 6,162.00 6.16 thousand 2
524114 DIRECT HEALTH AND MEDICAL INSURANCE CARRIERS 33.60 33.60 1

Insight

Over the last 10 years, ELECTION ASSISTANCE COMMISSION obligated $348.05 thousand across 10 awards, with activity concentrated in a small number of NAICS categories. TEMPORARY HELP SERVICES (561320) was the largest category at $163.96 thousand across 4 awards, representing nearly half of total obligations. The next three categories—ALL OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES (541990), ELECTRONICS STORES (443142), and TRANSLATION AND INTERPRETATION SERVICES (541930)—accounted for most of the remaining obligations, while the other listed NAICS codes were minor in value and frequency.

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 = '9523'
        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
2018 96,162.00 96.16 thousand 3
2017 251,891.04 251.89 thousand 7

Insight

Over the last 10 years, the Election Assistance Commission recorded 10 awards totaling $348.05 thousand in obligations, with an average award value of $34.8 thousand. Obligations are concentrated in 2017 and 2018, with 2017 accounting for $251.89 thousand across 7 awards and 2018 accounting for $96.16 thousand across 3 awards. This indicates a short, highly concentrated obligation pattern rather than a sustained annual spending profile.

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.