← 智能数据整合

货币健康检查

GET /mashup/currency/health

获取任何支持货币的综合健康评估,结合汇率趋势、波动率指标、发行国的经济指标和与主要货币的比较表现。返回包含稳定性、强度和经济基本面详细分解的健康评分。适用于评估货币风险的外汇交易者、评估支付货币选项的企业和监控客户特定货币敞口的金融顾问。

参数

currency 必填

Currency code (e.g., NOK, EUR, GBP)

请求示例

基本用法
curl "https://nordapi.ee/api/v1/mashup/currency/health?currency=NOK"
Health check for Norwegian Krone
curl "https://nordapi.ee/api/v1/mashup/currency/health?currency=NOK"
Health check for Euro
curl "https://nordapi.ee/api/v1/mashup/currency/health?currency=EUR"
Health check for Japanese Yen
curl "https://nordapi.ee/api/v1/mashup/currency/health?currency=JPY"

实时响应

{
  "country": "NO",
  "country_name": "Norway",
  "currency": "NOK",
  "current_rate_vs_usd": 9.74273319,
  "direction": "strengthening",
  "factor_scores": {
    "debt_sustainability": 5.0,
    "employment": 7.0,
    "gdp_growth": 10.0,
    "inflation_control": 7.0,
    "trade_balance": 9.0,
    "volatility": 6.7
  },
  "fundamentals": {
    "debt_to_gdp": null,
    "exports": {
      "value": 229666413338.504,
      "year": 2024
    },
    "fdi_inflows": {
      "value": 12044176872.556,
      "year": 2024
    },
    "gdp": {
      "value": 483592648313.301,
      "year": 2024
    },
    "gdp_per_capita": {
      "value": 86785.4334,
      "year": 2024
    },
    "imports": {
      "value": 163801535478.868,
      "year": 2024
    },
    "inflation": {
      "value": 3.1453,
      "year": 2024
    },
    "trade_balance": {
      "value": 65864877859.6357,
      "year": 2024
    },
    "unemployment": {
      "value": 4.637,
      "year": 2025
    }
  },
  "health_score": 7.5,
  "oil_correlation": {
    "note": "NOK is a commodity currency - tends to strengthen when oil prices rise",
    "oil_price_usd": 72.5
  },
  "rate_trend": {
    "1_month_ago": null,
    "1_week_ago": {
      "change": 0.02796372,
      "change_pct": 0.28784748919008574,
      "date": "2026-03-29",
      "rate": 9.71476947
    },
    "1_year_ago": null,
    "3_months_ago": null,
    "today": {
      "change": 0.0,
      "change_pct": 0.0,
      "date": "2026-04-05",
      "rate": 9.74273319
    },
    "yesterday": {
      "change": 0.0,
      "change_pct": 0.0,
      "date": "2026-04-04",
      "rate": 9.74273319
    }
  },
  "success": true,
  "summary": "NOK (Norway) is strengthening with a health score of 7.5/10. Positive trade balance supports the currency.",
  "volatility_30d": 0.6511012204206716
}