/v1/company
Company profile
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/gse-api/v1/company" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/gse-api/v1/company", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/gse-api/v1/company");
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/company",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"name": "GCB Bank Limited",
"note": "The company profile for one GSE-listed equity — registered name, sector, industry, address and contact details. Pass ticker (e.g. MTNGH for Scancom/MTN Ghana).",
"email": "[email protected]",
"sector": "Financials",
"source": "GSE",
"ticker": "GCB",
"address": "GCB Building, Thorpe Road/High Street, PO Box GP 134, Accra, Ghana",
"website": "www.gcbbank.com.gh",
"industry": "Banking",
"telephone": "+233-302-663-964, +233-302-672-852, +233-302-664-914"
},
"meta": {
"timestamp": "2026-06-15T02:10:58.585Z",
"request_id": "ddfabf9d-ab24-49cb-8329-0babb422d193"
},
"status": "ok",
"message": "Company retrieved successfully",
"success": true
}