/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.
Ç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/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_..."}
)
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. 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
}