/v1/meta
Service description & endpoints
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/afl-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/afl-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/afl-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/afl-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"service": "afl-api",
"endpoints": {
"GET /v1/game": "Match box score: team stats + leaders (event=id from scoreboard).",
"GET /v1/meta": "This document.",
"GET /v1/news": "AFL news.",
"GET /v1/team": "Club detail by id (team=, e.g. 16).",
"GET /v1/teams": "All AFL clubs.",
"GET /v1/standings": "The AFL ladder.",
"GET /v1/scoreboard": "Games with quarter scores (dates=YYYYMMDD optional)."
},
"description": "Australian Football League (AFL) live data: the scoreboard with quarter-by-quarter scoring, the ladder (wins, losses, points, percentage, streak, form), the 18 clubs and club detail, a full match box score with team stats and leaders, and news. Real live data, no key."
},
"meta": {
"timestamp": "2026-06-08T01:20:02.050Z",
"request_id": "fee7dc2c-585b-481c-8d02-5ef316ec2a46"
},
"status": "ok",
"message": "Meta",
"success": true
}