Zum Inhalt springen
GET /v1/company

Company profile

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/gse-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "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
}