Skip to content
GET /v1/meta

Service metadata

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/candlestickscreener-api

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

Get an API key

Code snippets

curl "https://api.oanor.com/candlestickscreener-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/candlestickscreener-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/candlestickscreener-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/candlestickscreener-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": "screener class= filters by class. asset= is a supported key (see /v1/universe). Patterns are detected on the most recent completed daily candle. Read fresh per call, nothing cached.",
        "source": "Yahoo Finance daily OHLC (3mo range) across a multi-asset universe, live",
        "classes": [
            "equities",
            "sector",
            "commodities",
            "bonds",
            "crypto"
        ],
        "service": "candlestickscreener-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/asset": "One market's latest candle and detected patterns (asset=sp500).",
            "GET /v1/patterns": "The recognised candlestick patterns.",
            "GET /v1/screener": "Cross-asset board of markets flashing a candlestick pattern, split bullish/bearish (class=sector optional)."
        },
        "description": "Candlestick pattern screener (multi-asset) — which markets just printed a reversal or continuation candlestick pattern on their latest daily candle, live from Yahoo Finance (no key, nothing stored). screener returns every market flashing a pattern now, split into bullish and bearish signals. asset returns one market's latest candle with detected patterns. patterns lists what is recognised. The cross-asset candlestick-pattern screener cut — distinct from the crypto-only pattern detector and the bring-your-own-candle pattern API.",
        "universe_size": 21,
        "assets_scanned": 21,
        "upstream_status": "ok",
        "patterns_recognised": 11
    },
    "meta": {
        "timestamp": "2026-06-12T10:35:04.649Z",
        "request_id": "c917816f-8c6d-4545-b167-a5ec0481f99e"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}