/v1/meta
Service metadata & endpoint catalog
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/uae-stock-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/uae-stock-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/uae-stock-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/uae-stock-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"sample": {
"fadgi": 9804.97
},
"source": "TradingView public screener (scanner.tradingview.com/uae/scan), keyless",
"indexes": [
"FADGI"
],
"screens": [
"gainers",
"losers",
"active",
"marketcap"
],
"service": "uae-stock-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/index": "Live value of the FTSE ADX General Index (name).",
"GET /v1/quote": "Live quote for one or more stocks (codes, ADX:/DFM: prefix optional).",
"GET /v1/screener": "Ranked market screener (by, exchange, limit)."
},
"exchanges": [
"ADX",
"DFM"
],
"description": "Live data for the UAE stock markets (Abu Dhabi Securities Exchange ADX + Dubai Financial Market DFM) with no key: the live quote for one or more stocks by ticker (price, change, open/high/low, volume, market cap, P/E, sector, exchange, in dirhams, with the company name), a ranked market screener (top gainers, losers, most active, or largest by market cap; filterable by exchange), and the live value of the FTSE ADX General Index. The UAE-equities / ADX+DFM / screener layer for trading dashboards and research. Distinct from other exchange readers — both Emirati exchanges in one feed with a built-in screener. Live, short cache only.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-15T02:10:40.955Z",
"request_id": "a1fe556f-c318-4496-be53-b06ce7f26900"
},
"status": "ok",
"message": "Meta",
"success": true
}