/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/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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"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
}