/v1/meta
Service description & endpoints
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/cricketlive-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cricketlive-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cricketlive-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/cricketlive-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"service": "cricketlive-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/news": "Cricket news (league=).",
"GET /v1/match": "Full scorecard for a match (league=, event=id from scoreboard).",
"GET /v1/leagues": "Supported league aliases and ids.",
"GET /v1/standings": "League table (league=).",
"GET /v1/scoreboard": "Matches for a league (league=ipl|world-cup|big-bash|… or numeric id, dates=)."
},
"description": "Live professional cricket across many competitions (IPL, T20/ODI World Cup, Big Bash, County Championship, Sheffield Shield, Ranji Trophy and more): the live scoreboard, the full match scorecard with per-innings batting and bowling and dismissals, the league table and news. Real live data, no key."
},
"meta": {
"timestamp": "2026-06-08T01:20:03.527Z",
"request_id": "17c9b51c-14b2-45f9-b8d6-4f45a4cd0af1"
},
"status": "ok",
"message": "Meta",
"success": true
}