/v1/meta
Service description & endpoints
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
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_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"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
}