Skip to content
GET /v1/meta

Endpoints & source

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/gse-api

It works. Grab an API key and use it in your project.

Get an API key

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

Example response

A real response from this endpoint, captured by the latest 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
}