← 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-09-02",
      "id": "7098bce4-b8b5-4007-b8a5-6f334d0c1186",
      "name": "Gold (Troy Ounce)",
      "price_usd": "4373.8999",
      "source": "gold-api",
      "unit": "troy_oz"
    },
    "name": "gold"
  },
  "currencies": [
    {
      "currency": "USD",
      "rate": 1.1578,
      "volatility_30d": null
    },
    {
      "currency": "EUR",
      "rate": null,
      "volatility_30d": null
    },
    {
      "currency": "NOK",
      "rate": 10.809,
      "volatility_30d": null
    }
  ],
  "date": "2026-09-03",
  "generated_at": "2026-09-03T00:08:32.090407Z",
  "insight": "Commodities like gold often move inversely to USD. Compare volatility across currencies to find hedging opportunities.",
  "success": true
}