Naar de inhoud
GET /v1/news

College football news

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/cfb-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/cfb-api/v1/news" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cfb-api/v1/news", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cfb-api/v1/news");
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/news",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "count": 6,
        "articles": [
            {
                "link": "https://www.espn.com/video/clip/_/id/48983491/appropriate-try-work-issues",
                "type": "Media",
                "image": "https://a.espncdn.com/media/motion/2026/0606/ss_20260606_101734867_3555506/ss_20260606_101734867_3555506.jpg",
                "headline": "SEC's Sankey on college sports bill: 'It's appropriate to try to work through these issues'",
                "published": "2026-06-06T14:38:35Z",
                "description": "SEC's Sankey on college sports bill: 'It's appropriate to try to work through these issues'"
            },
            {
                "link": "https://www.espn.com/college-football/story/_/id/48980735/reports-ncaa-rejects-texas-tech-appeal-reinstate-sorsby",
                "type": "HeadlineNews",
                "image": "https://a.espncdn.com/photo/2026/0604/r1668188_600x400_3-2.jpg",
                "headline": "Reports: NCAA rejects Texas Tech's appeal to reinstate Sorsby",
                "published": "2026-06-06T13:07:49Z",
                "description": "The NCAA has denied Texas Tech's appeal to reinstate quarterback Brendan Sorsby's eligibility, according to multiple reports."
            },
            {
                "link": "https://www.espn.com/college-football/story/_/id/48978537/four-star-qb-colton-nussmeier-commits-georgia-bulldogs-football-2027-class",
                "type": "HeadlineNews",
                "image": "https://a.espncdn.com/photo/2026/0605/r1668743_600x400_3-2.jpg",
                "headline": "4-star QB Colton Nussmeier commits to Georgia over Arkansas, UCLA",
                "published": "2026-06-05T23:08:57Z",
                "description": "Four-star quarterback Colton Nussmeier, ESPN's No. 4 pocket passer in the 2027 class, announced his commitment to Georgia on Friday."
            },
            {
                "link": "https://www.espn.com/college-sports/story/_/id/48978492/sec-sankey-idea-super-league-not-consistent-truth",
                "type": "HeadlineNews",
                "image": "https://a.espncdn.com/photo/2026/0529/r1665397_600x400_3-2.jpg",
                "headline": "SEC's Sankey: Idea of super league 'not consistent with the truth'",
                "published": "2026-06-06T14:54:08Z",
                "description": "SEC commissioner Greg Sankey called the notion that the conference wants to form a super league with the Big Ten \"not consistent with the truth.\""
            },
            {
                "link": "https://www.espn.com/college-sports/story/_/id/48978440/ncaa-panel-tweaks-di-eligibility-proposal-vote-late-june",
                "type": "HeadlineNews",
                "image": "https://a.espncdn.com/photo/2014/0716/ncb_g_ncaa_court1x_600x400.jpg",
                "headline": "NCAA panel tweaks D-I eligibility plan, could vote on it in late June",
                "published": "2026-06-05T23:09:51Z",
                "description"
…