/v1/meta
Spec
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/cfb-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cfb-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cfb-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/cfb-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"service": "cfb-api",
"endpoints": {
"GET /v1/game": "A single game's detail by id.",
"GET /v1/meta": "This document.",
"GET /v1/news": "College football news.",
"GET /v1/team": "Team detail by id.",
"GET /v1/teams": "All teams (limit=).",
"GET /v1/player": "Player profile by id.",
"GET /v1/search": "Search players by name.",
"GET /v1/rankings": "AP, Coaches & CFP rankings.",
"GET /v1/scoreboard": "Games & scores (week=, groups=, dates=)."
},
"description": "College Football (NCAA) data: game scoreboard and results, single-game detail with leaders, the AP / Coaches / CFP rankings, all teams, team detail, player profiles, player search and news. Real live data, no key."
},
"meta": {
"timestamp": "2026-06-07T16:46:22.346Z",
"request_id": "71a21474-c980-44e3-a1b6-63eae9906c92"
},
"status": "ok",
"message": "Meta",
"success": true
}