← Intelligence Mashups

Commodity-Currency Correlation

GET /mashup/commodity/currency

Analyze how commodity prices relate to currency movements: combines commodity spot prices with forex rates and 30-day volatility for multiple currencies.

Parameters

commodity optional

Commodity name (default gold)

currencies optional

Comma-separated currency codes (default USD,EUR,GBP,NOK)

Example Requests

Basic usage
curl "https://nordapi.ee/api/v1/mashup/commodity/currency?commodity=gold&currencies=USD,EUR,NOK"

Live Response

{
  "commodity": {
    "data": {
      "commodity": "gold",
      "date": "2026-08-11",
      "drift_pct": null,
      "id": "dc6597b2-46a3-4281-b118-f3527fc305c2",
      "name": "Gold (Troy Ounce)",
      "price_usd": "4382.2998",
      "source": "gold-api",
      "stale": false,
      "unit": "troy_oz"
    },
    "name": "gold"
  },
  "currencies": [
    {
      "currency": "USD",
      "rate": 1.154,
      "volatility_30d": null
    },
    {
      "currency": "EUR",
      "rate": null,
      "volatility_30d": null
    },
    {
      "currency": "NOK",
      "rate": 10.9705,
      "volatility_30d": null
    }
  ],
  "date": "2026-08-12",
  "generated_at": "2026-08-12T06:41:04.033633Z",
  "insight": "Commodities like gold often move inversely to USD. Compare volatility across currencies to find hedging opportunities.",
  "success": true
}