Vai al contenuto
GET /v1/meta

Spec

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/cfb-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}