/v1/meta
Usage notes
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}