/v1/quote
Company quote with fundamentals
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/gse-api/v1/quote" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/gse-api/v1/quote", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/gse-api/v1/quote");
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/quote",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"eps": null,
"note": "A full company quote for one GSE-listed equity — price (GHS), market capitalisation, shares outstanding, earnings per share, dividend per share, sector and industry. Pass ticker (e.g. MTNGH, GCB, ACCESS).",
"price": 6.42,
"sector": "Telecommunications",
"source": "GSE",
"ticker": "MTNGH",
"company": "Scancom Plc",
"industry": "Mobile Telecommunications",
"market_cap": 84976243821,
"dividend_per_share": null,
"shares_outstanding": 13236175050
},
"meta": {
"timestamp": "2026-06-15T02:10:59.128Z",
"request_id": "80f36daf-8541-402a-a47e-0e1d6f26c86f"
},
"status": "ok",
"message": "Quote retrieved successfully",
"success": true
}