/v1/meta
Service metadata & endpoint catalog
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/egx-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/egx-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/egx-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/egx-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"sample": {
"egx30": 51994.6
},
"source": "TradingView public screener (scanner.tradingview.com/egypt/scan), keyless",
"indexes": [
"EGX30"
],
"screens": [
"gainers",
"losers",
"active",
"marketcap"
],
"service": "egx-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/index": "Live value of the EGX 30 Index (name).",
"GET /v1/quote": "Live quote for one or more stocks (codes).",
"GET /v1/screener": "Ranked market screener (by, limit)."
},
"description": "Live data for the Egyptian Exchange (EGX, the Cairo market) with no key: the live quote for one or more stocks by ticker (price, change, open/high/low, volume, market cap, P/E, sector, in Egyptian pounds, with the company name), a ranked market screener (top gainers, losers, most active, or largest by market cap), and the live value of the EGX 30 Index. The Egypt-equities / EGX30-index / screener layer for trading dashboards and research. Distinct from other exchange readers — the EGX market with a built-in screener. Live, short cache only.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-15T02:10:39.388Z",
"request_id": "75de90c3-3646-49cb-ab9e-72f98c3f6ca3"
},
"status": "ok",
"message": "Meta",
"success": true
}