Aller au contenu
GET /v1/meta

Service description & endpoints

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/afl-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
}