/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/tradingview-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tradingview-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tradingview-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/tradingview-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"sample": {
"btc_rating": "SELL"
},
"source": "TradingView public scanner (scanner.tradingview.com), keyless",
"service": "tradingview-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/rating": "One symbol's technical consensus + indicators (symbol, market).",
"GET /v1/search": "Find symbols by name (q, market, limit).",
"GET /v1/screener": "Top symbols of a market ranked (market, sort, dir, limit)."
},
"description": "Live TradingView technical-analysis ratings and market screeners with no key: the Strong Buy/Buy/Neutral/Sell/Strong Sell consensus rating (aggregating ~26 indicators) plus moving-average and oscillator sub-ratings and live RSI/MACD/ADX/Stochastic for any symbol; a market screener ranking the top movers by change/volume/rating; and symbol search. Across crypto, US stocks and forex. The technical-signal / screening layer for trading dashboards and alpha tools. Live, short cache only.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-14T17:03:42.365Z",
"request_id": "109abdda-a7c8-4441-aa86-f9c31abe8ca2"
},
"status": "ok",
"message": "Meta",
"success": true
}