Banknote Serial Number Lookup
Serial Number Information
| Serial Number | Issuing Bank | Country | Year | Denomination | Condition |
|---|
Coins, Banknotes and Collectibles
| Serial Number | Issuing Bank | Country | Year | Denomination | Condition |
|---|
// Simulated data - in a real scenario, this data would be fetched from a database or an API const simulatedData = { "A12345678B": { "Issuing Bank": "Federal Reserve Bank", "Country": "United States", "Year": "2009", "Denomination": "$20", "Condition": "Crisp Uncirculated" } };
const resultsBody = document.getElementById('resultsBody'); resultsBody.innerHTML = ''; // Clear previous results
if (simulatedData[serialNumber]) { const data = simulatedData[serialNumber]; const newRow = `
`; resultsBody.innerHTML = newRow; } else { const noDataRow = `
`; resultsBody.innerHTML = noDataRow; } }
Sign up for FREE News, Videos and Articles!