Zum Inhalt springen
GET /v1/tournaments

Tournaments

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/lichess-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "created": [
            {
                "id": "X1XrRdD5",
                "url": "https://lichess.org/tournament/X1XrRdD5",
                "name": "Weekly UltraBullet Arena",
                "perf": "UltraBullet",
                "clock": {
                    "limit": 15,
                    "increment": 0
                },
                "rated": true,
                "minutes": 120,
                "variant": "standard",
                "starts_at": 1780851600000,
                "nb_players": 58,
                "finishes_at": 1780858800000
            },
            {
                "id": "y9JeQu9a",
                "url": "https://lichess.org/tournament/y9JeQu9a",
                "name": "Hourly Antichess Arena",
                "perf": "Antichess",
                "clock": {
                    "limit": 180,
                    "increment": 2
                },
                "rated": true,
                "minutes": 57,
                "variant": "antichess",
                "starts_at": 1780851602500,
                "nb_players": 4,
                "finishes_at": 1780855022500
            },
            {
                "id": "G52yJAPW",
                "url": "https://lichess.org/tournament/G52yJAPW",
                "name": "≤1500 Bullet Arena",
                "perf": "Bullet",
                "clock": {
                    "limit": 60,
                    "increment": 0
                },
                "rated": true,
                "minutes": 27,
                "variant": "standard",
                "starts_at": 1780851605000,
                "nb_players": 3,
                "finishes_at": 1780853225000
            },
            {
                "id": "ZXlSluVJ",
                "url": "https://lichess.org/tournament/ZXlSluVJ",
                "name": "Hourly Atomic Arena",
                "perf": "Atomic",
                "clock": {
                    "limit": 180,
                    "increment": 2
                },
                "rated": true,
                "minutes": 57,
                "variant": "atomic",
                "starts_at": 1780851607500,
                "nb_players": 0,
                "finishes_at": 1780855027500
            },
            {
                "id": "ossqdRI3",
                "url": "https://lichess.org/tournament/ossqdRI3",
                "name": "≤2000 Blitz Arena",
                "perf": "Blitz",
                "clock": {
                    "limit": 300,
                    "increment": 0
                },
                "rated": true,
                "minutes": 57,
                "variant": "standard",
                "starts_at": 1780851610000,
                "nb_players": 6,
                "finishes_at": 1780855030000
            },
            {
                "id": "l2zERLW7",
                "url": "https://lichess.org/tournament/l2zERLW7",
                "name": "Hourly Three-check Arena",
                "perf": "Three-Check",
       
…