SILV.DATA

Commodity Data API

Real-time prices from multiple trusted sources

Free API Access

Access this data programmatically with our free, no-authentication API

JSON API

https://data.silv.app/commodities.jsonView JSON

XML API

https://data.silv.app/commodities.xmlView XML

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'
);