Skip to content
GET /v1/movers

Top gainers or losers

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/movers" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/gse-api/v1/movers", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/gse-api/v1/movers");
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/movers",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "note": "The day's top gainers or losers on the GSE — each with its price, change and volume. Pass direction (gainers or losers) and limit. Computed across the whole Ghana market.",
        "count": 15,
        "source": "GSE",
        "stocks": [
            {
                "price": 29,
                "change": 1.4,
                "ticker": "ACCESS",
                "volume": 1953
            },
            {
                "price": 4.93,
                "change": 0.44,
                "ticker": "SIC",
                "volume": 68218
            },
            {
                "price": 36.3,
                "change": 0.3,
                "ticker": "TOTAL",
                "volume": 2691
            },
            {
                "price": 2.45,
                "change": 0.21,
                "ticker": "CLYD",
                "volume": 14986
            },
            {
                "price": 6.8,
                "change": 0.19,
                "ticker": "SOGEGH",
                "volume": 34614
            },
            {
                "price": 2.09,
                "change": 0.18,
                "ticker": "ETI",
                "volume": 375323
            },
            {
                "price": 13.34,
                "change": 0.03,
                "ticker": "FML",
                "volume": 8646
            },
            {
                "price": 0.13,
                "change": 0.01,
                "ticker": "CPC",
                "volume": 160000
            },
            {
                "price": 0.42,
                "change": 0,
                "ticker": "AADS",
                "volume": 0
            },
            {
                "price": 5.3,
                "change": 0,
                "ticker": "ADB",
                "volume": 0
            },
            {
                "price": 37,
                "change": 0,
                "ticker": "AGA",
                "volume": 0
            },
            {
                "price": 8.46,
                "change": 0,
                "ticker": "ALLGH",
                "volume": 12177
            },
            {
                "price": 8.89,
                "change": 0,
                "ticker": "ASG",
                "volume": 1
            },
            {
                "price": 80,
                "change": 0,
                "ticker": "BOPP",
                "volume": 1051
            },
            {
                "price": 0.14,
                "change": 0,
                "ticker": "CMLT",
                "volume": 0
            }
        ],
        "direction": "gainers"
    },
    "meta": {
        "timestamp": "2026-06-15T02:10:58.860Z",
        "request_id": "cca2194d-b5c3-4133-9bcd-b618c5819dbc"
    },
    "status": "ok",
    "message": "Movers retrieved successfully",
    "success": true
}