bullionvault.com APIbullionvault.com ↗
Access live gold, silver, platinum, and palladium prices, historical charts, latest trades, news, and daily audit data from BullionVault via a single API.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/c16a497a-ac9f-4e7c-9174-17275f9935e0/get_all_live_prices' \ -H 'X-API-Key: $PARSE_API_KEY'
Fetch live market data for all metals (Gold, Silver, Platinum, Palladium) across all vaults and currencies. Returns the full market order book with buy and sell prices.
No input parameters required.
{
"type": "object",
"fields": {
"market": "object containing pitches array with buy/sell prices per metal, vault, and currency",
"weightUnit": "string weight unit used (KG)",
"updateTimeString": "string timestamp of last market update"
},
"sample": {
"data": {
"locale": "en",
"market": {
"pitches": [
{
"size": 2,
"buyPrices": [
{
"limit": 152620,
"value": 10378.16,
"quantity": 0.068
}
],
"securityId": "AUXZU",
"sellPrices": [
{
"limit": 152990,
"value": 152990,
"quantity": 1
}
],
"considerationCurrency": "USD",
"securityClassNarrative": "GOLD"
}
]
},
"loggedIn": false,
"weightUnit": "KG",
"updateTimeString": "07 May 2026 09:34:05 CDT"
},
"status": "success"
}
}About the bullionvault.com API
This API exposes 7 endpoints covering BullionVault's live precious metal market data, including real-time order book prices for gold, silver, platinum, and palladium across multiple vault locations and currencies. The get_all_live_prices endpoint returns the full market order book with buy and sell pitches per metal, vault, and currency, while dedicated endpoints cover historical price charts, recent trades, market news, and the platform's daily holdings audit.
Live Price Data
The get_all_live_prices endpoint returns a market object containing a pitches array with buy and sell prices for all four metals — gold (AUX prefix), silver (AGX prefix), platinum, and palladium — broken down by vault location and currency. The response includes a weightUnit field (KG) and an updateTimeString timestamp indicating when the market data was last refreshed. If you only need gold or silver, get_live_gold_price and get_live_silver_price return filtered pitch arrays for those metals specifically.
Historical Charts and Recent Trades
The get_price_chart_data endpoint accepts metal (GOLD, SILVER, PLATINUM, PALLADIUM), currency (USD, GBP, EUR), and time_scale parameters to retrieve historical price series. The response includes a seriesData object with name, securityId, interval, and a prices array, plus a latestPrice object with current price and timestamp. The verified working time_scale value is 3600 (one-hour intervals); not all metal/currency/time_scale combinations are guaranteed to have data available. The get_latest_trades endpoint returns an array of recent trades with market, quantity, price, and time fields.
News and Audit Data
get_gold_news returns an array of article objects from BullionVault's news section, each with title, link, and summary fields. The get_daily_audit endpoint exposes BullionVault's published holdings audit as two tables: table_0 summarises total metal holdings by vault location, and table_1 provides a detailed breakdown by client nickname initial and vault location — giving a transparent view of platform-wide custody.
- Display real-time gold and silver buy/sell spreads by vault location in a precious metals portfolio tracker.
- Plot historical gold price charts in USD, GBP, or EUR using the
seriesData.pricesarray fromget_price_chart_data. - Monitor recent trade activity on BullionVault by polling
get_latest_tradesfor price, quantity, and market fields. - Aggregate live platinum and palladium prices alongside gold and silver for a multi-metal market dashboard.
- Feed BullionVault gold news headlines and summaries into a financial news aggregator or alert system.
- Audit precious metal custody transparency by parsing vault-level holdings totals from
get_daily_audit. - Build a cross-currency precious metals price comparison tool using pitches filtered by currency from
get_all_live_prices.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.
Does BullionVault have an official developer API?+
What does `get_daily_audit` return and how is the data structured?+
table_0 is a summary with rows for TOTAL holdings and individual vault locations, showing metal quantities per vault. table_1 breaks those holdings down further by client nickname initial and vault location. This mirrors BullionVault's publicly published daily audit report.Which `time_scale` values work with `get_price_chart_data`?+
3600, representing one-hour intervals between data points. Not all combinations of metal, currency, and time_scale are guaranteed to return data; unsupported combinations will return an upstream error rather than an empty result.Does the API return account balances, open orders, or trade history for individual BullionVault users?+
Are platinum and palladium prices available in the same format as gold and silver?+
get_all_live_prices returns pitches for all four metals including platinum and palladium. However, the dedicated single-metal endpoints (get_live_gold_price and get_live_silver_price) cover only gold and silver. You can fork this API on Parse and revise it to add equivalent filtered endpoints for platinum and palladium.