/v1/meta
Spec
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
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_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"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
}