/v1/screener
Scan a basket for fresh pattern signals
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/cryptopatterns-api/v1/screener" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptopatterns-api/v1/screener", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptopatterns-api/v1/screener");
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/cryptopatterns-api/v1/screener",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"note": "Coins whose most recent completed 1d candle just formed a candlestick pattern. Default basket is the liquid majors; pass coins=BTC,ETH,... to customise.",
"source": "Binance",
"bearish": [],
"bullish": [],
"neutral": [
{
"bias": "neutral",
"coin": "BTC",
"close": 63717.89,
"pattern": "doji"
},
{
"bias": "neutral",
"coin": "ETH",
"close": 1676.21,
"pattern": "doji"
},
{
"bias": "neutral",
"coin": "SOL",
"close": 66.85,
"pattern": "doji"
},
{
"bias": "neutral",
"coin": "XRP",
"close": 1.1438,
"pattern": "doji"
}
],
"scanned": 5,
"signals": 4,
"interval": "1d"
},
"meta": {
"timestamp": "2026-06-12T10:35:43.044Z",
"request_id": "243dcf02-348b-468d-b192-7da1e0621ceb"
},
"status": "ok",
"message": "Screener retrieved successfully",
"success": true
}