Naar de inhoud
GET /v1/meta

Usage notes

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

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

{
    "data": {
        "note": "A universal database of sports leagues, teams and players across every sport — soccer, basketball, American football, baseball, ice hockey, motorsport, cricket, rugby and more. /v1/leagues = browse the world's leagues (filter with sport=Soccer, Basketball, …); /v1/teams?league=English Premier League = the teams in a league (use a name from /v1/leagues), each with id, sport, country, stadium, founding year, crest/badge and logo URLs and a description; /v1/team?id=133604 = a team's full profile by id; /v1/squad?id=133604 = the players in a team; /v1/players?name=Lionel Messi = search players by name, returning team, sport, position, nationality, date and place of birth, height/weight and photo URLs. This is a sports reference and metadata database with team crests and player photos — distinct from single-league live-score and statistics feeds. Data from TheSportsDB's free public tier, which returns up to ~10 results per league/squad; higher limits and advanced endpoints need TheSportsDB's paid tier.",
        "source": "TheSportsDB — open sports database (thesportsdb.com), free public tier",
        "endpoints": [
            "/v1/leagues",
            "/v1/teams",
            "/v1/team",
            "/v1/squad",
            "/v1/players",
            "/v1/meta"
        ]
    },
    "meta": {
        "timestamp": "2026-06-01T16:23:45.525Z",
        "request_id": "74f65f2b-b5f5-4b10-8c06-12fe83966638"
    },
    "status": "ok",
    "message": "Meta retrieved",
    "success": true
}