Spot Prices API

This service provides real-time precious metals spot prices.

Endpoints

GET /api/prices

Returns current spot prices for gold, silver, platinum, and palladium.

Authentication: Requires X-API-Key header.

Response Format

{
  "success": true,
  "prices": {
    "gold": { "price": 2650.50, "bid": 2649.00, "ask": 2652.00, ... },
    "silver": { ... },
    "platinum": { ... },
    "palladium": { ... }
  },
  "marketOpen": true,
  "timestamp": "2025-01-24T12:00:00.000Z"
}