Vai al contenuto
GET /v1/meta

Service metadata and endpoint list

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/chartconvert-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "note": "candles = open:high:low:close, comma-separated, oldest first. Renko/line-break can also take prices=close1,close2,...",
        "source": "Computed in-process from caller-supplied OHLC candles (no upstream)",
        "service": "chartconvert-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/renko": "Renko bricks from closes + a brick size (candles=... or prices=..., brick=2 or brick_pct=1).",
            "GET /v1/line-break": "Three Line Break chart (candles=... or prices=..., lines=3).",
            "GET /v1/heikin-ashi": "Convert candles to Heikin-Ashi (candles=o:h:l:c,...)."
        },
        "description": "Live conversion of OHLC candles into alternative chart types traders use to filter noise. The heikin-ashi endpoint returns Heikin-Ashi candles, which smooth price action and clarify trend; the renko endpoint returns Renko bricks from a price series and a brick size, stripping out time and small moves; the line-break endpoint returns a Three Line Break chart, which only prints a new line on a confirmed move. Each carries the latest trend direction. Works for any market — forex, stocks, crypto or commodities. A chart-transformation engine, distinct from pattern-detection and indicator tools.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-10T22:56:09.164Z",
        "request_id": "e5abf3e0-6216-48c9-8099-75f986eca7c7"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}