Free API Access
Access this data programmatically with our free, no-authentication API
Available Datasets
Precious Metals
Gold, Silver, Platinum, Palladium with real-time spot prices
Updated every 15 minutes
Agricultural
Wheat, Corn, Soybeans, Cotton and other agricultural commodities
Updated daily from USDA sources
Energy
Crude Oil, Natural Gas, Heating Oil and refined products
Updated every 30 minutes
Usage Examples
Simple Fetch
fetch('https://data.silv.app/commodities.json') .then(response => response.json()) .then(data => console.log(data));
Filter by Category
// Get only precious metals const metals = data.commodities.filter( commodity => commodity.category === 'Precious Metals' );