Federal Contractor

TORONTO-DOMINION BANK, THE Federal Contract Obligations (Last 5 Years)

Federal procurement profile for TORONTO-DOMINION BANK, THE (CAGE L03P3, UEI TXEQENSNT3N3) covering obligated awards, agencies, NAICS, and year-by-year trends over the last 5 years.

TORONTO-DOMINION BANK, THE recorded 139 award actions and $1.68 billion in obligated federal spending over the last 5 years, with all reported obligations tied to the United States Mint. The largest activity by NAICS appears in nonferrous metal smelting and refining, jewelry and precious metal wholesaling, and miscellaneous fabricated metal product manufacturing.

Generated at 03/21/2026

Analysis period: Last 5 years

Figures reflect the selected 5-year analysis window and may vary with future FPDS updates or record corrections.

CAGE Code
L03P3
UEI
TXEQENSNT3N3
Total Obligated
1.68 billion
1,675,626,485.68
Award Actions
139
Average Action Value
12,054,866.80

About TORONTO-DOMINION BANK, THE federal contract activity

TORONTO-DOMINION BANK, THE (CAGE L03P3, UEI TXEQENSNT3N3) recorded 139 FPDS awards over the last 5 years with total obligations of 1.68 billion and an average award value of 12.05 million. The spending profile is concentrated in a single buying office, indicating a highly focused federal relationship rather than a diversified agency base.

Agency mix and customer concentration

All reported obligations are attributed to the UNITED STATES MINT, which accounts for the full 1.68 billion and all 139 awards in the period. This indicates complete concentration with one agency and no observable spread across other federal buyers in the provided data.

Industry profile based on NAICS activity

The vendor’s obligations are concentrated in three NAICS codes tied to metals and precious materials: 331410 at 709.32 million across 51 awards, 423940 at 664.08 million across 25 awards, and 332999 at 302.23 million across 63 awards. Together, these categories explain the vendor’s federal activity as centered on precious metal smelting/refining, related wholesale distribution, and fabricated metal product manufacturing.

Annual contract trend over the analysis window

Annual obligations rose from 278.11 million in 2021 to 476.56 million in 2022 and peaked at 582.90 million in 2023. Activity then declined to 248.37 million in 2024 and 89.69 million in 2025, with award counts following the same pattern from 27 and 46 in 2021-2022 to 44 in 2023, then 18 in 2024 and 4 in 2025.

How to interpret this page

This summary is based on the provided FPDS Query aggregates for the last 5 years, using total obligated amounts, award counts, and the listed agency, NAICS, and annual breakdowns. No assumptions were made beyond the supplied data, and no additional contracts, agencies, or classifications were inferred.

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 = 'L03P3'
        AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
        AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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
2044 UNITED STATES MINT 1,675,626,485.68 1.68 billion 139

Insight

Over the last 5 years, TORONTO-DOMINION BANK, THE (CAGE L03P3) received $1.68 billion across 139 awards, with an average award value of $12.05 million. All reported obligations in this period are concentrated within a single agency, the United States Mint, which accounts for 100% of total obligated dollars and all 139 awards. This indicates a highly concentrated award pattern with no observed cross-agency distribution in the provided data.

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 = 'L03P3'
        AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
        AND content__award__productOrServiceInformation__principalNAICSCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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
331410 NONFERROUS METAL (EXCEPT ALUMINUM) SMELTING AND REFINING 709,324,844.38 709.32 million 51
423940 JEWELRY, WATCH, PRECIOUS STONE, AND PRECIOUS METAL MERCHANT WHOLESALERS 664,076,429.29 664.08 million 25
332999 ALL OTHER MISCELLANEOUS FABRICATED METAL PRODUCT MANUFACTURING 302,225,212.01 302.23 million 63

Insight

Over the last 5 years, TORONTO-DOMINION BANK, THE (CAGE L03P3) has 1.68 billion in total obligations across 139 awards, with activity concentrated in a small set of NAICS codes. NAICS 331410 accounts for the largest share at 709.32 million across 51 awards, followed closely by NAICS 423940 at 664.08 million across 25 awards; together, these two categories represent the clear bulk of obligated value. NAICS 332999 adds 302.23 million across 63 awards, indicating a narrower award concentration by value but broader distribution by count within the top three sectors.

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 = 'L03P3'
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY year
)
ORDER BY year DESC
Year Total Obligated Readable Award Actions
2025 89,692,425.52 89.69 million 4
2024 248,365,022.31 248.37 million 18
2023 582,904,181.55 582.90 million 44
2022 476,559,621.68 476.56 million 46
2021 278,105,234.62 278.11 million 27

Insight

TORONTO-DOMINION BANK, THE (L03P3) obligated $1.68 billion across 139 awards over the last 5 years, with an average award value of $12.05 million. Obligations were concentrated in 2023 and 2022, which together accounted for $1.06 billion, or about 63% of the 5-year total, with 2023 as the peak year at $582.90 million across 44 awards. Activity then declined in 2024 to $248.37 million and further in 2025 to $89.69 million, indicating a sharp recent contraction in both obligated value and award 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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.