/v1/meta
Service metadata
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/ichimoku-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/ichimoku-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/ichimoku-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/ichimoku-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": "ichimoku and history take symbol (a Yahoo ticker like AAPL, EURUSD=X, BTC-USD, ^GSPC), interval (1d/1wk/1mo, default 1d) and optional params conversion (9), base (26), leading_b (52), displacement (26). history also takes limit (1-250). meta takes no parameters. Levels are in the instrument's own price; signals are mechanical, not advice. A short ~5-minute cache fronts Yahoo.",
"sample": {
"price": 291.13,
"symbol": "AAPL",
"overall": "bullish"
},
"source": "Yahoo Finance chart candles (query1.finance.yahoo.com), keyless, live",
"service": "ichimoku-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/history": "Recent Ichimoku line series for charting (symbol=AAPL, limit=60).",
"GET /v1/ichimoku": "Full Ichimoku reading for a symbol (symbol=AAPL, interval=1d)."
},
"description": "The Ichimoku Kinko Hyo for any stock, index, FX pair, commodity or crypto, computed live from Yahoo Finance, no key. Ichimoku is a complete Japanese trend system (Tenkan, Kijun, Senkou A/B forming the Kumo cloud, and Chikou). The ichimoku endpoint gives the full current reading — all five lines, the current and forward cloud, price-vs-cloud, the Tenkan/Kijun cross, Chikou confirmation and an overall signal; history returns the recent line series for charting. The cloud is computed with the correct time-shifts. The Ichimoku system cut — distinct from the single-indicator feeds (SuperTrend, Keltner, Donchian, MACD, RSI).",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-13T04:42:13.524Z",
"request_id": "4cc356d9-38da-49b3-8137-857128a80423"
},
"status": "ok",
"message": "Meta",
"success": true
}