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/cse-api

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

Get an API key

Code snippets

curl "https://api.oanor.com/cse-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cse-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cse-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/cse-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": {
            "aspi": 21637.43
        },
        "source": "Colombo Stock Exchange public feed (cse.lk/api), keyless",
        "service": "cse-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/index": "The ASPI all-share index.",
            "GET /v1/quote": "Full company quote with beta & foreign holdings (symbol).",
            "GET /v1/movers": "Top gainers, losers or most-active (kind).",
            "GET /v1/summary": "The day's market summary (turnover, volume, trades)."
        },
        "description": "Live data from the Colombo Stock Exchange (CSE) in Sri Lanka with no key: the day's market summary (turnover, share volume, trades), the headline ASPI index, a full company quote with fundamentals (price, 52-week range, market cap, foreign-holding percentage and beta versus the ASPI and S&P SL20), and the top gainers/losers/most-active stocks. The Sri-Lanka-equities / frontier-market / foreign-holding-and-beta layer for trading dashboards and screeners. Distinct from other exchange readers — CSE with a fundamentals-and-risk cut. Live, short cache only.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-15T02:11:04.822Z",
        "request_id": "26bb8a50-fea4-4cf1-912b-599cffd99c3d"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}