← Finanzen & Währung

Edelmetallpreise

GET /metals/prices

Rufen Sie aktuelle Spotpreise für Gold, Silber, Platin und Palladium in einer der 30 unterstützten Währungen ab. Liefert Preise pro Feinunze für jedes Metall. Ideal für Investment-Tracking-Apps, Schmuckpreisrechner und Finanz-Dashboards, die Edelmetalle zusammen mit Währungsdaten benötigen. Die Preise werden täglich aktualisiert und können in lokalen Währungen wie NOK oder SEK für nordische Nutzer angezeigt werden.

Parameter

base optional Standard: USD

Price currency

Beispielanfragen

Grundlegende Verwendung
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"

Live-Antwort

{
  "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-05-21",
        "metal": "silver",
        "name": "Silver (Troy Ounce)",
        "price": 33.5,
        "price_usd": 33.5,
        "source": "reference",
        "unit": "troy_oz"
      },
      {
        "currency": "USD",
        "date": "2026-05-21",
        "metal": "platinum",
        "name": "Platinum (Troy Ounce)",
        "price": 1005.0,
        "price_usd": 1005.0,
        "source": "reference",
        "unit": "troy_oz"
      },
      {
        "currency": "USD",
        "date": "2026-05-21",
        "metal": "palladium",
        "name": "Palladium (Troy Ounce)",
        "price": 975.0,
        "price_usd": 975.0,
        "source": "reference",
        "unit": "troy_oz"
      }
    ]
  },
  "success": true
}

Beispielantwort

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