← Finanzas y divisas

Precios de metales preciosos

GET /metals/prices

Get current spot prices for gold, silver, platinum, and palladium in any of the 30 supported divisas. Returns per-troy-ounce prices for each metal. Ideal para investment rastreando aplicaciones, jewelry pricing calculators, and financial paneles that need precious metals alongside currency data. Prices are updated daily and can be displayed in local divisas like NOK or SEK for Nordic users.

Parametros

base opcional predeterminado: USD

Price currency

Ejemplos de solicitudes

Uso basico
curl https://nordapi.ee/api/v1/metals/prices
All metals in USD (default)
curl "https://nordapi.ee/api/v1/metals/prices"
All metals in NOK
curl "https://nordapi.ee/api/v1/metals/prices?base=NOK"
All metals in GBP
curl "https://nordapi.ee/api/v1/metals/prices?base=GBP"

Respuesta en vivo

{
  "data": {
    "base": "USD",
    "count": 4,
    "prices": [
      {
        "currency": "USD",
        "date": "2026-03-20",
        "metal": "gold",
        "name": "Gold (Troy Ounce)",
        "price": 3045.0,
        "price_usd": 3045.0,
        "source": "reference",
        "unit": "troy_oz"
      },
      {
        "currency": "USD",
        "date": "2026-04-05",
        "metal": "silver",
        "name": "Silver (Troy Ounce)",
        "price": 33.5,
        "price_usd": 33.5,
        "source": "reference",
        "unit": "troy_oz"
      },
      {
        "currency": "USD",
        "date": "2026-04-05",
        "metal": "platinum",
        "name": "Platinum (Troy Ounce)",
        "price": 1005.0,
        "price_usd": 1005.0,
        "source": "reference",
        "unit": "troy_oz"
      },
      {
        "currency": "USD",
        "date": "2026-04-05",
        "metal": "palladium",
        "name": "Palladium (Troy Ounce)",
        "price": 975.0,
        "price_usd": 975.0,
        "source": "reference",
        "unit": "troy_oz"
      }
    ]
  },
  "success": true
}

Ejemplo de respuesta

{"success":true,"data":{"prices":[{"metal":"gold","price":3045.0,"currency":"USD"}]}}