Vai al contenuto
GET /v1/meta

Service metadata & endpoint catalog

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/gpw-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "sample": {
            "wig20": 3713.88
        },
        "source": "TradingView public screener (scanner.tradingview.com/poland/scan), keyless",
        "indexes": [
            "WIG",
            "WIG20",
            "WIG30"
        ],
        "screens": [
            "gainers",
            "losers",
            "active",
            "marketcap"
        ],
        "service": "gpw-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/index": "Live value of a Warsaw 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 Warsaw Stock Exchange (GPW, the Polish 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 zloty, with the company name), a ranked market screener (top gainers, losers, most active, or largest by market cap; primary Polish listings only), and the live value of the Warsaw indices (WIG, WIG20, WIG30). The Poland-equities / WIG-index / screener layer for trading dashboards and research. Distinct from other exchange readers — the Warsaw Stock Exchange market with a built-in screener. Live, short cache only.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-15T02:10:29.292Z",
        "request_id": "392cc5e3-8b5a-42ad-857d-c98d647c68d3"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}