Naar de inhoud
GET /v1/meta

Service metadata & endpoint catalog

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/dse-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "sample": {
            "dsex": 5520.39656
        },
        "source": "TradingView public screener (scanner.tradingview.com/bangladesh/scan), keyless",
        "indexes": [
            "DSEX",
            "DSES"
        ],
        "screens": [
            "gainers",
            "losers",
            "active",
            "marketcap"
        ],
        "service": "dse-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/index": "Live value of a DSE index (name).",
            "GET /v1/quote": "Live quote for one or more stocks (codes).",
            "GET /v1/screener": "Ranked market screener (by, limit)."
        },
        "description": "Live data for the Dhaka Stock Exchange (DSE, the Bangladesh market) with no key: the live quote for one or more stocks by ticker (price, change, open/high/low, volume, market cap, P/E, sector, in taka, with the company name), a ranked market screener (top gainers, losers, most active, or largest by market cap), and the live value of the DSE indices (DSE Broad Index DSEX and DSEX Shariah Index DSES). The Bangladesh-equities / DSE-index / screener layer for trading dashboards and research. Distinct from other exchange readers — the DSE market with a built-in screener and a Shariah index. Live, short cache only.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-15T02:10:34.146Z",
        "request_id": "a7d78204-467c-4cef-9b87-b4abe006a366"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}