Skip to content
GET /v1/meta

Service metadata and endpoint list

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/candlestick-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/candlestick-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/candlestick-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/candlestick-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/candlestick-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 (e.g. candles=10:11:9.5:9.6,9.6:9.7:9:9.65,9.6:10.2:9.5:10.1).",
        "source": "Computed in-process from caller-supplied OHLC candles (no upstream)",
        "service": "candlestick-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/scan": "Every pattern occurrence across the series with its index (candles=...).",
            "GET /v1/detect": "Patterns completing on the last candle (candles=o:h:l:c,...).",
            "GET /v1/patterns": "List the supported candlestick patterns."
        },
        "description": "Live candlestick-pattern recognition computed on demand from OHLC candles. The detect endpoint returns the patterns that complete on the last candle of a series; the scan endpoint finds every pattern occurrence across the whole series with its position; the patterns endpoint lists the 24 supported patterns. Each match carries a bullish / bearish / neutral signal. Works for any market — forex, stocks, crypto or commodities. A pattern-recognition engine, distinct from numeric-indicator and support-resistance tools.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-10T22:56:11.067Z",
        "request_id": "ced99e21-7f44-44b1-ad51-48d6e149a4a4"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}