Naar de inhoud
GET /v1/meta

Spec

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/supertrend-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/supertrend-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/supertrend-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/supertrend-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/supertrend-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "note": "candles = open:high:low:close, comma-separated, oldest first. SuperTrend period defaults to 10 (multiplier 3); Aroon to 25; Vortex to 14.",
        "source": "Computed in-process from caller-supplied OHLC candles (no upstream)",
        "service": "supertrend-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/aroon": "Aroon Up/Down + Oscillator (candles=o:h:l:c,...&period=25).",
            "GET /v1/vortex": "Vortex Indicator VI+ / VI- (candles=o:h:l:c,...&period=14).",
            "GET /v1/supertrend": "SuperTrend line + trend (candles=o:h:l:c,...&period=10&multiplier=3)."
        },
        "description": "Live trend-following indicators computed on demand from OHLC candles. The supertrend endpoint returns the SuperTrend line (ATR-banded stop-and-flip) and the trend; the aroon endpoint returns Aroon Up/Down and the Aroon Oscillator; the vortex endpoint returns the Vortex Indicator's VI+ and VI- lines. Trend-following indicators distinct from the ADX/Parabolic-SAR/Donchian set and from momentum, volatility and volume tools — they use the high/low/close to follow a trend and flag its reversal. Computed locally, nothing stored.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-11T07:48:56.990Z",
        "request_id": "b1955046-7ee6-4f9c-a521-d612fc963afc"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}