/v1/meta
Spec
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/trendingstocks-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/trendingstocks-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/trendingstocks-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/trendingstocks-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"note": "region is US (default), GB, DE, FR, IT, ES, CA, AU, IN, BR, HK, JP, SG or NZ. Each trending symbol is enriched with its live price and day change from the chart feed; symbols whose price cannot be fetched are returned with the symbol only. Trending reflects search interest, which moves through the day.",
"source": "Yahoo Finance trending + chart (query1.finance.yahoo.com, live)",
"service": "trendingstocks-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/ticker": "Is a symbol trending now, and at what rank (symbol=AAPL, region=US).",
"GET /v1/regions": "Supported market regions.",
"GET /v1/trending": "Most-searched tickers in a region with live price & day change (region=US, limit=15)."
},
"description": "The tickers people are searching for right now, from Yahoo Finance's trending feed — an attention / retail-interest signal, not a price-mover list. trending returns the most-searched symbols in a region, each enriched with its live price, day change and exchange; ticker answers whether a symbol is currently trending and where it ranks; regions lists the supported markets. Live, no key, nothing stored. The search-attention / sentiment data-cut for stocks, distinct from the price-based market-movers, live-quote and intraday-candle APIs.",
"top_us_symbol": "SPCX",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-12T01:41:18.441Z",
"request_id": "72c5ee03-8de3-4697-99c1-6d07ae1f3392"
},
"status": "ok",
"message": "Meta",
"success": true
}