/v1/meta
Endpoints & source
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/gse-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/gse-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/gse-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/gse-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"sample": {
"mtngh_price": 6.42
},
"source": "public kwayisi GSE feed (dev.kwayisi.org/apis/gse), keyless",
"service": "gse-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/quote": "Full company quote with fundamentals (ticker).",
"GET /v1/movers": "Top gainers or losers (direction, limit).",
"GET /v1/stocks": "Live market snapshot (sort, limit).",
"GET /v1/company": "Company profile (ticker)."
},
"description": "Live data from the Ghana Stock Exchange (GSE) with no key: the live market snapshot of every listed equity (price in GHS, change, volume), a full company quote with fundamentals (market cap, shares, EPS, dividend per share, sector, industry), the company profile, and the day's top gainers and losers. The Ghana-equities / fundamentals / company-profile layer for trading dashboards and screeners. Distinct from other exchange readers — GSE data. Live, short cache only.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-15T02:10:59.327Z",
"request_id": "dacd023a-2b3e-4ade-b851-296f28a38bd2"
},
"status": "ok",
"message": "Meta",
"success": true
}