Aller au contenu
GET /v1/meta

Service metadata and endpoint list

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/technicals-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

curl "https://api.oanor.com/technicals-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/technicals-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/technicals-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/technicals-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": "Pass prices as a comma-separated list, oldest first (prices=44.34,44.09,44.15,...).",
        "source": "Computed in-process from caller-supplied prices (no upstream)",
        "service": "technicals-api",
        "endpoints": {
            "GET /v1/ma": "Simple or exponential moving average (prices=..., period=20, type=sma|ema).",
            "GET /v1/rsi": "Wilder RSI (prices=..., period=14).",
            "GET /v1/macd": "MACD line, signal and histogram (prices=..., fast=12, slow=26, signal=9).",
            "GET /v1/meta": "This document.",
            "GET /v1/bollinger": "Bollinger Bands + bandwidth & %B (prices=..., period=20, stddev=2)."
        },
        "description": "Live technical-analysis indicators computed on demand from the price series you pass in. The rsi endpoint returns Wilder's Relative Strength Index; the macd endpoint returns the MACD line, signal line and histogram; the bollinger endpoint returns the upper, middle and lower Bollinger Bands with bandwidth and %B; the ma endpoint returns a simple or exponential moving average. Computed live from your input, nothing stored — works for any market (forex, stocks, crypto, commodities). A technical-indicator engine, distinct from raw price feeds and from pivot/fibonacci level tools.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-10T22:56:27.794Z",
        "request_id": "4ebcb8ba-862e-4e50-b296-068e4cb2c588"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}