/v1/meta
Service metadata
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/riskappetite-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/riskappetite-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/riskappetite-api/v1/meta");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/riskappetite-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"note": "Both data endpoints are parameter-less. The score is a 0-100 composite (high = risk-on); each gauge is scored by its percentile over ~120 trading days. Read fresh per call, nothing cached.",
"source": "Yahoo Finance (SPY, TLT, HYG, LQD, HG=F, GC=F, ^VIX), live",
"service": "riskappetite-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/score": "The composite risk-appetite score (0-100) with regime and per-gauge contributions.",
"GET /v1/components": "The four cross-asset gauges with their current value and percentile."
},
"description": "Risk-on / risk-off (RORO) index — one number for the market's mood across asset classes, from Yahoo Finance (no key, nothing stored). score blends stocks-vs-bonds (SPY/TLT), credit (HYG/LQD), copper-vs-gold and the inverted VIX into a 0-100 risk-appetite score with a regime label. components returns the four underlying gauges with where each sits in its recent range. The cross-asset risk-sentiment / RORO composite cut — distinct from the intermarket-ratios feed (raw ratios), the volatility-index API and the price APIs. It synthesises the regime, not the parts.",
"upstream_status": "ok",
"risk_appetite_score": 71.3
},
"meta": {
"timestamp": "2026-06-12T10:35:28.836Z",
"request_id": "a578a62c-211e-4785-8141-fffb731fc552"
},
"status": "ok",
"message": "Meta",
"success": true
}