Silver Stack Calculator

Track the melt & premium value of your silver

Calculator Our API Store
Silver Spot Price BidAsk
$--
-- / oz · -- / g
Source: SilverCalc Kitco API
Not yet fetched Auto-refresh: 30s --
โœฆ Silver / Investments
Total Portfolio Value
$0.00
Portfolio Value Over Time
$--
Cur1m10m1h1d5d1m6m1y5yMax
Fetch not working? Click here
Option 1: Enter spot price manually above and click "Set Spot".
Option 2: Run a local server to avoid CORS issues. Open a terminal and run:
npx http-server C:\Money -p 8000 --cors
Then open http://localhost:8000/silver-stack-calculator.html
Our API
The SilverCalc API is the recommended way to get live silver spot prices. It's free, fast, and auto-fails over if a source goes down.
Endpoint
GET https://silverstackcalculator.qd.je/api/silver-price
Response Format
{
  "bid": 75.15,
  "ask": 75.40,
  "change": -0.38,
  "changePct": -0.51,
  "source": "Kitco"
}
Example Usage
fetch('https://silverstackcalculator.qd.je/api/silver-price')
  .then(r => r.json())
  .then(data => {
    console.log('Silver bid:', data.bid);
    console.log('Silver ask:', data.ask);
    console.log('Source:', data.source);
  });
Features
  • Auto failover โ€” tries Kitco first, falls back to Macrotrends, then GoldAPI
  • 20-second cache โ€” reduces upstream calls, stays under rate limits
  • No API key required โ€” completely free to use
  • CORS enabled โ€” call it from any domain or tool
  • No rate limit โ€” the cache handles bursts automatically
Use in Your Own Tools
You can plug this endpoint into Excel, Google Sheets, Python scripts, trading bots, or your own apps. Just make a GET request and parse the JSON response.
# Python example
import requests
r = requests.get('https://silverstackcalculator.qd.je/api/silver-price')
data = r.json()
print(f"Silver: ${data['bid']} (bid) / ${data['ask']} (ask)")
SilverCalc Source (Default)
The SilverCalc option in the source selector on the Calculator tab uses this exact API. It's selected by default and requires no setup.
Enjoying the tool? โค๏ธ
If you find this API or the calculator useful, consider donating to support the creator.
Choose Your Version
Full API access for everyone. Pick the experience that fits you.

Ad-Free + EXE

$6.99 one-time
  • โœ“ All Free Features
  • โœ“ Ad-Free Experience No Ads
  • โœ“ Desktop App Installer (Windows)
  • โœ“ Offline Use
  • โœ“ Start Menu & Desktop Shortcut
  • โœ“ Re-Download Anytime
  • โœ“ Supports the Creator
Installs to your desktop. Fully offline โ€” no internet needed after installation. Sign-in and paid check are built-in.
Download Free EXE
โš™๏ธ Settings
Download Installer
Installs the app to your desktop with start menu shortcut
Also available: Portable EXE (no install needed)
Custom Silver Items
Add your own silver types. Calculate by weight (oz) or fixed premium.
API Sources
The API must return JSON. The JSON path is a key name like "price" or "data.spot". Header format: "Authorization: Bearer xyz"
Auto-Refresh Interval
Refresh every
Feature Requests
๐Ÿ”’

Sign In Required

You must sign in with Google before you can purchase the paid version.

API Keys
Enter your API keys for paid services. Keys are stored locally.
Get a key at gold-api.com
Get a free key at metalpriceapi.com