← Intelligenz-Mashups

Portfolio-Analysator

GET /mashup/portfolio/analyze

Analysieren Sie a portfolio of mixed assets (Kryptowährungen, fiat currencies, und commodities) in a single request. Geben Sie an: a comma-separated list of asset identifiers und get back current values, performance metrics, correlation data, und diversification analysis. Unterstützt crypto coin IDs (bitcoin, ethereum), fiat currency codes (EUR, NOK), und gold. Ideal für portfolio tracking dashboards, investment analysis tools, und wealth management platforms that span multiple asset classes.

Parameter

Anlagen erforderlich

Comma-separated asset IDs (e.g., bitcoin,ethereum,EUR,gold)

base optional Standard: USD

Base currency for valuation

Beispielanfragen

Grundlegende Verwendung
curl "https://nordapi.ee/api/v1/mashup/portfolio/analyze?assets=bitcoin,ethereum,EUR,gold"
Analyze a mixed crypto and fiat portfolio
curl "https://nordapi.ee/api/v1/mashup/portfolio/analyze?assets=bitcoin,ethereum,EUR,gold"
Analyze crypto portfolio in EUR
curl "https://nordapi.ee/api/v1/mashup/portfolio/analyze?assets=bitcoin,ethereum,solana&base=EUR"
Analyze Nordic currency basket
curl "https://nordapi.ee/api/v1/mashup/portfolio/analyze?assets=NOK,SEK,DKK&base=USD"

Live-Antwort

{
  "analysis": {
    "asset_class_mix": "2 crypto, 1 commodity, 1 fiat",
    "recommendation": "Good asset class diversification across crypto, commodities, and fiat"
  },
  "asset_count": 4,
  "assets": [
    {
      "change_24h": 0.2499,
      "change_7d": 1.3542,
      "id": "bitcoin",
      "market_cap": 1349815546498.0,
      "name": "Bitcoin",
      "price_usd": 67447.0,
      "symbol": "BTC",
      "type": "crypto"
    },
    {
      "change_24h": -0.4581,
      "change_7d": 3.2358,
      "id": "ethereum",
      "market_cap": 248479432769.0,
      "name": "Ethereum",
      "price_usd": 2058.35,
      "symbol": "ETH",
      "type": "crypto"
    },
    {
      "id": "EUR",
      "name": "EUR",
      "rate_vs_base": 0.86767896,
      "type": "fiat",
      "volatility_30d": 0.35936938373961186
    },
    {
      "id": "gold",
      "name": "Gold (Troy Ounce)",
      "price_usd": 3045.0,
      "type": "commodity",
      "unit": "troy_oz"
    }
  ],
  "base_currency": "USD",
  "composition": {
    "commodity": 1,
    "crypto": 2,
    "fiat": 1
  },
  "diversification_grade": "C",
  "geographic_regions": 1,
  "inflation_context": {
    "us_inflation": 2.9495,
    "year": 2024
  },
  "success": true
}