TORONTO-DOMINION BANK, THE recorded 241 award actions with total obligated dollars of 1.97 billion and an average action value of 8.16 million over the last 10 years. The United States Mint is the sole top agency in this window, accounting for the full obligated total.
Federal Contractor
TORONTO-DOMINION BANK, THE Federal Contract Obligations (Last 10 Years)
Federal procurement profile for TORONTO-DOMINION BANK, THE (CAGE L03P3, UEI TXEQENSNT3N3) covering awards in the last 10 years.
Dollar figures reflect obligated amounts in the analysis window and agency, NAICS, and annual breakdowns are based on the provided FPDS summary rows.
About TORONTO-DOMINION BANK, THE federal contract activity
TORONTO-DOMINION BANK, THE (CAGE L03P3, UEI TXEQENSNT3N3) recorded 241 FPDS-observed awards totaling 1.97 billion over the last 10 years, with an average award value of 8.16 million. The obligation profile indicates a high-dollar, concentrated federal contracting footprint rather than a broad, low-value transaction base.
Agency mix and customer concentration
Contracting activity is fully concentrated with the UNITED STATES MINT, which accounts for the entire 1.97 billion and all 241 awards in the dataset. This agency concentration suggests the vendor’s federal activity is tied to a single customer relationship rather than a diversified agency portfolio.
Industry profile based on NAICS activity
The vendor’s top NAICS categories span metals and precious-metal-related industrial and wholesale activities, led by 331410 at 709.32 million across 51 awards, 423940 at 664.08 million across 25 awards, and 332999 at 592.99 million across 165 awards. The mix is strongly concentrated in metal refining, precious metals wholesale, and fabricated metal products, indicating procurement activity aligned with bullion or metals-related supply chains.
Annual contract trend over the analysis window
Annual obligations peaked in 2023 at 582.90 million across 44 awards, followed by 2022 at 476.56 million across 46 awards and 2024 at 248.37 million across 18 awards. Activity remained present in 2025 at 89.69 million across 4 awards, after a substantial ramp-up beginning in 2021 at 278.11 million across 27 awards.
How to interpret this page
This summary uses the provided FPDS Query extract for the last 10 years and reflects only observed obligations, award counts, agency concentrations, NAICS classifications, and annual totals in that dataset. Values are reported as presented in the source inputs; no external enrichment or inference beyond the supplied figures was used.
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 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 |
|---|---|---|---|---|
| 2044 | UNITED STATES MINT | 1,966,389,445.17 | 1.97 billion | 241 |
Insight
Over the last 10 years, TORONTO-DOMINION BANK, THE received 1.97 billion across 241 awards, with all reported obligations concentrated in a single agency: the United States Mint. This indicates a highly concentrated award profile with no distribution across other agencies in the provided data. The average award value of about $8.16 million suggests relatively large, repeated obligations within this agency 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 = 'L03P3'
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 |
|---|---|---|---|---|
| 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 | 592,988,171.50 | 592.99 million | 165 |
Insight
Over the last 10 years, TORONTO-DOMINION BANK, THE (CAGE L03P3) obligated 1.97 billion across 241 awards, with a notably concentrated mix among three NAICS codes. NAICS 331410, 423940, and 332999 account for 1.97 billion of the total obligated value, but the award distribution is uneven: 332999 has the highest award count at 165, while 331410 and 423940 are associated with substantially larger average award values. This pattern indicates a small set of NAICS categories driving most obligation volume, with activity split between higher-value, lower-count awards and a higher-volume, lower-value award stream.
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 10 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 |
| 2020 | 82,832,991.76 | 82.83 million | 27 |
| 2019 | 98,313,821.93 | 98.31 million | 46 |
| 2018 | 65,553,330.80 | 65.55 million | 15 |
| 2017 | 44,062,815.00 | 44.06 million | 14 |
Insight
Over the last 10 years, TORONTO-DOMINION BANK, THE (CAGE L03P3) obligated $1.97 billion across 241 awards, with activity heavily concentrated in 2021-2024. Obligations rose from $44.06 million in 2017 to a peak of $582.90 million in 2023, then declined to $248.37 million in 2024 and $89.69 million in 2025 year-to-date. Award volume also clustered in the same period, peaking at 46 awards in 2019 and 2022, indicating that funding is concentrated in a relatively small number of higher-dollar awards rather than a broad spread of transactions.
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.