Discover/USAGOLD API
live

USAGOLD APIusagold.com

Access live gold and silver spot prices, daily closing prices by date, monthly price arrays, weekly summaries, and historical stats via the USAGOLD API.

Endpoint health
verified 4d ago
get_live_prices
get_gold_price_by_date
get_gold_price_history_summary
get_weekly_gold_prices
get_gold_prices_by_month
5/5 passing latest checkself-healing
Endpoints
5
Updated
26d ago

What is the USAGOLD API?

The USAGOLD API provides 5 endpoints covering live and historical gold and silver prices sourced from USAGOLD. You can retrieve a single day's closing price with daily change via get_gold_price_by_date, pull a full month of trading-day prices with get_gold_prices_by_month, or fetch live spot prices for both metals in a single call with get_live_prices. Responses include structured price strings, directional change values, and period-over-period comparisons.

Try it
Date in YYYY-MM-DD format. Must be a trading day.
Metal type to query.
api.parse.bot/scraper/7b4c431d-947e-4c59-84a9-86035c7e4925/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/7b4c431d-947e-4c59-84a9-86035c7e4925/get_gold_price_by_date?date=2026-07-04&metal=gold' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace usagold-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.usagold_price_api import USAGold, Metal, Commodity, Quote, DailyPrice, WeeklyPrice, LivePrice, PriceSummaryPeriod

client = USAGold()

# Get live spot prices for both metals
quote = client.quotes.get()
print(quote.gold.price, quote.gold.change, quote.gold.sign)
print(quote.silver.price, quote.silver.change, quote.silver.sign)

# Construct a commodity and get a specific date's closing price
gold = client.commodity(name=Metal.GOLD)
daily = gold.get_price_by_date(date="2026-06-02")
print(daily.date, daily.price, daily.change)

# Get all trading day prices for a month
for price in gold.get_monthly_prices(year="2026", month="5"):
    print(price.date, price.price, price.change)

# Get weekly closing prices for silver
silver = client.commodity(name=Metal.SILVER)
for week in silver.get_weekly_prices(year="2026"):
    print(week.date, week.price)

# Get summary statistics (Yesterday, Last Week, Last Month)
summary = gold.get_history_summary()
for period, stats in summary.items():
    print(period, stats.price, stats.change)
All endpoints · 5 totalmissing one? ·

Get the closing price for a specific date and metal. Returns the price and daily change. Only trading days have data; weekends and holidays return not-found.

Input
ParamTypeDescription
daterequiredstringDate in YYYY-MM-DD format. Must be a trading day.
metalstringMetal type to query.
Response
{
  "type": "object",
  "fields": {
    "date": "string, the requested date in YYYY-MM-DD format",
    "price": "string, closing price with dollar sign (e.g. '$4,489.62')",
    "change": "string, daily change with sign and dollar symbol (e.g. '+$4.77') or null if unavailable"
  },
  "sample": {
    "data": {
      "date": "2026-06-02",
      "price": "$4,489.62",
      "change": "+$4.77"
    },
    "status": "success"
  }
}

About the USAGOLD API

Live and Point-in-Time Price Data

The get_live_prices endpoint returns current spot prices for both gold and silver with no input parameters required. Each metal object in the response includes price, change, and sign fields, making it straightforward to display real-time market data or trigger alerts on price movement direction. The get_gold_price_by_date endpoint accepts a date parameter in YYYY-MM-DD format and returns the closing price and change for that trading day. Non-trading days (weekends and market holidays) return a not-found response rather than a null price, so callers should account for this when iterating over calendar ranges.

Monthly and Weekly Historical Series

For broader time ranges, get_gold_prices_by_month accepts year, month, and an optional metal parameter ('gold' or 'silver'), returning an array of {date, price, change} objects for every trading day in that month. This makes it practical to build monthly price charts or compute volatility without assembling individual date calls. The get_weekly_gold_prices endpoint accepts an optional year and metal and returns one price entry per week for the full year — useful for long-horizon trend analysis where daily granularity isn't needed.

Summary Statistics

The get_gold_price_history_summary endpoint returns a summary object with three named keys — Yesterday, Last Week, and Last Month — each containing a closing price and a change versus the prior period. This requires no date math on the caller's side and covers both gold and silver via the optional metal parameter. The endpoint is well-suited for dashboard widgets or notification systems that need a quick contextual snapshot without pulling a full price series.

Reliability & maintenanceVerified

The USAGOLD API is a managed, monitored endpoint for usagold.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when usagold.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official usagold.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
5/5 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Displaying a live gold and silver price ticker on a financial dashboard using get_live_prices price and change fields
  • Backtesting a precious metals trading strategy by iterating get_gold_price_by_date across specific historical trading days
  • Charting a full month of gold price movement by pulling the prices array from get_gold_prices_by_month
  • Building a weekly gold price trend line for multi-year comparison using get_weekly_gold_prices with a year parameter
  • Populating a portfolio dashboard summary card with yesterday, last week, and last month closing prices from get_gold_price_history_summary
  • Tracking silver price changes over a month by passing metal='silver' to get_gold_prices_by_month
  • Alerting when daily gold change exceeds a threshold by polling get_live_prices sign and change fields
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does USAGOLD have an official developer API?+
USAGOLD does not publish a documented public developer API. This Parse API provides structured access to the price data available on usagold.com.
What does get_gold_price_by_date return for a weekend or holiday?+
The endpoint returns a not-found response for any date that is not a trading day. Markets are closed on weekends and US market holidays, so those dates have no closing price data. If you are iterating over a date range, you will need to filter out or skip non-trading days on your end.
Does the API cover metals other than gold and silver?+
Not currently. The endpoints expose data for gold and silver only, selectable via the optional metal parameter. You can fork this API on Parse and revise it to add coverage for other metals such as platinum or palladium if that data becomes available on the source.
How far back does the historical price data go?+
The API does not document a specific start date for historical coverage. In practice, availability depends on what USAGOLD publishes on its site. Very old dates may return not-found responses. The get_gold_price_history_summary endpoint is limited to Yesterday, Last Week, and Last Month periods and does not support arbitrary lookback windows. You can fork the API on Parse and revise it to add a longer-range summary endpoint if needed.
Can I get intraday gold price data (e.g., hourly or minute-by-minute prices)?+
Not currently. The API returns daily closing prices, weekly prices, monthly series, and live spot prices — all at end-of-day or current-snapshot granularity. Intraday OHLC or tick data is not exposed. You can fork this API on Parse and revise it to target an intraday data source if sub-daily resolution is required.
Page content last updated . Spec covers 5 endpoints from usagold.com.
Related APIs in FinanceSee all →
goldprice.org API
Track real-time and historical prices for gold, silver, and other precious metals, plus monitor gold performance metrics and view precious metals news. Get current cryptocurrency prices, lookup gold rates by country, and check gold stock prices all in one place.
bullionvault.com API
Access live precious metal prices for gold, silver, platinum, and palladium, view historical price charts, monitor the latest trades, and retrieve market news from BullionVault. Daily audit reports provide a transparent view of platform-wide holdings by vault location.
goodreturns.in API
Access real-time and historical gold prices across India. Retrieve daily gold rates for 18k, 22k, and 24k purity levels in INR, compare prices across major Indian cities, and explore recent price trends and monthly summaries.
comexlive.org API
Monitor real-time gold, silver, and platinum prices from COMEX futures markets, and stay updated with the latest commodity news and articles. Get current pricing data for all COMEX commodities and access detailed news coverage to inform your trading and investment decisions.
huangjinjiage.cn API
Track real-time and historical prices for gold, silver, platinum, palladium, and oil across China and international markets. Monitor domestic oil prices by region, compare international commodity prices, and access current gold recycling rates and brand-specific pricing.
logammulia.com API
Track current and historical gold prices from Logam Mulia (ANTAM) with real-time per-gram pricing, price charts, price changes, and store location information. Get comprehensive gold price data to monitor market trends and find nearby purchasing locations.
barchart.com API
Monitor live stock quotes and commodity prices, analyze options chains with gamma exposure data, and access historical market time series to track top-performing stocks. Use real-time and historical data to make informed trading and investment decisions across equities and commodities.
usacoinbook.com API
Search and browse detailed information about U.S. coins including prices, melt values, and current marketplace listings. Discover coin categories, series, and identify the most valuable coins in any collection.