/v1/meta
Spec
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/oscillators-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/oscillators-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/oscillators-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/oscillators-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"note": "candles = open:high:low:close, comma-separated, oldest first. Stochastic period defaults to 14 (smooth 3); CCI defaults to 20; Williams %R defaults to 14.",
"source": "Computed in-process from caller-supplied OHLC candles (no upstream)",
"service": "oscillators-api",
"endpoints": {
"GET /v1/cci": "Commodity Channel Index (candles=o:h:l:c,...&period=20).",
"GET /v1/meta": "This document.",
"GET /v1/williams": "Williams %R (candles=o:h:l:c,...&period=14).",
"GET /v1/stochastic": "Stochastic Oscillator %K and %D (candles=o:h:l:c,...&period=14&smooth=3)."
},
"description": "Live OHLC momentum-oscillator analytics computed on demand from OHLC candles. The stochastic endpoint returns the Stochastic Oscillator %K and %D; the williams endpoint returns Williams %R; the cci endpoint returns the Commodity Channel Index — each with an overbought/oversold reading. These oscillators need the full high/low/close, distinct from closes-only indicator tools (RSI, MACD) and from volatility/ATR tools. Computed locally, nothing stored — works for forex, stocks, crypto or commodities.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-11T07:49:09.823Z",
"request_id": "8eaec8b0-b590-4b8e-aa3f-b4359962902d"
},
"status": "ok",
"message": "Meta",
"success": true
}