🥇 Gold Tracker API

Real-time London gold sell prices with 1-minute caching.

📊 Data Endpoints

GET /gold-price
Requires: X-API-Key header or api-key query parameter with client API key

Returns current London gold sell price in GBP per ounce from BullionVault. Add ?format=csv for CSV output.

GET /gold-price-alt
Requires: X-API-Key header or api-key query parameter with client API key

Returns current UK gold price in GBP per ounce from BullionByPost. Add ?format=csv for CSV output.

🔧 Management

GET /admin
Requires: X-API-Key header with master API key

API key management interface for creating and managing client keys.

📝 Example Usage

# BullionVault source (JSON format):
curl -H "X-API-Key: your-client-key" /gold-price
curl /gold-price?api-key=your-client-key

# BullionByPost source (JSON format):
curl -H "X-API-Key: your-client-key" /gold-price-alt
curl /gold-price-alt?api-key=your-client-key

# CSV format (both endpoints):
curl /gold-price?api-key=your-client-key&format=csv
curl /gold-price-alt?api-key=your-client-key&format=csv

Real-time gold price API service