Skip to content
GET /v1/meta

Market metadata & endpoint guide

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/estonia-stock-api

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

Get an API key

Code snippets

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

Example response

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

{
    "data": {
        "market": "Nasdaq Tallinn (OMX Tallinn)",
        "source": "TradingView screener (estonia market), keyless",
        "country": "Estonia",
        "indices": [
            "OMXTGI",
            "OMXT"
        ],
        "currency": "EUR",
        "examples": {
            "index": "/v1/index",
            "quote": "/v1/quote?symbols=LHV1T,TAL1T,MRK1T",
            "screener": "/v1/screener?sort=change&order=desc&limit=10"
        },
        "endpoints": {
            "/v1/index": "Tallinn index (OMX Tallinn Gross = OMXTGI)",
            "/v1/quote": "live quote for one or more Tallinn stocks by ticker (symbols=LHV1T,TAL1T,MRK1T)",
            "/v1/screener": "rank local primary listings by market_cap | change | volume (sort, order, limit)"
        },
        "cache_ttl_ms": 20000
    },
    "meta": {
        "timestamp": "2026-06-15T11:16:08.952Z",
        "request_id": "a07cb5d6-b637-4cc2-918e-e88d43a16f00"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}