Μετάβαση στο περιεχόμενο
GET /v1/news

Latest AFL news

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/afl-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "data": {
        "count": 6,
        "articles": [
            {
                "link": "https://www.espn.com/afl/story/_/page/POINTSBET20241/afl-footy-review-news-analysis-round-13-stocks-nick-watson-north-melbourne-alastair-clarkson-jai-serong",
                "image": "https://a.espncdn.com/photo/2026/0607/r1669545_1296x729_16-9.png",
                "headline": "Stocks up, stocks down: Wizard's great disappearing act; another huge captain's performance",
                "published": "2026-06-07T23:01:33Z",
                "description": "Jordan Dawson producd an amazing captain's performance, but serious questions must be asked of North Melbourne, and we saw the Wizard's great disappearing act! Here's whose stocks are up and down after Round 13."
            },
            {
                "link": "https://www.espn.com/video/clip/_/id/48994539/carlton-holds-essendon-make-four-straight",
                "image": "https://a.espncdn.com/media/motion/2026/0607/dm_260607_AFL_Highlight_Carlton_holds_off_Essendon_to_make_it_four_straight_20260608_AUS_ONLY/dm_260607_AFL_Highlight_Carlton_holds_off_Essendon_to_make_it_four_straight_20260608_AUS_ONLY.jpg",
                "headline": "Carlton holds off Essendon to make it four straight",
                "published": "2026-06-07T21:34:00Z",
                "description": "The Blues withstand a late Bombers charge to claim a thrilling five-point win at the MCG."
            },
            {
                "link": "https://www.espn.com/afl/story/_/id/47923681/coleman-medal-leaderboard-season-2026-kicked-most-goals-afl",
                "image": "https://a.espncdn.com/photo/2026/0214/r1614962_1024x576_16-9.jpg",
                "headline": "Coleman Medal leaderboard for 2026 - who has kicked the most goals in the AFL?",
                "published": "2026-06-07T20:57:36Z",
                "description": "The Coleman Medal is awarded to the player who kicks the most goals throughout the AFL home and away season. Who is on track to win the award in 2026?"
            },
            {
                "link": "https://www.espn.com/video/clip/_/id/48990275/jai-serong-snaps-winner-sydney",
                "image": "https://a.espncdn.com/media/motion/2026/0607/dm_260607_AFL_Highlight_Jai_Serong_snaps_the_winner_for_Sydney_20260607_AUS_ONLY/dm_260607_AFL_Highlight_Jai_Serong_snaps_the_winner_for_Sydney_20260607_AUS_ONLY.jpg",
                "headline": "Jai Serong snaps the winner for Sydney",
                "published": "2026-06-07T09:12:48Z",
                "description": "Serong breaks St Kilda hearts with the game-winning goal in the final seconds. "
            },
            {
                "link": "https://www.espn.com/video/clip/_/id/48990124/nasiah-marks-return-major",
                "image": "https://a.espncdn.com/media/motion/2026/0607/dm_260607_AFL_Highlight_Nasiah_marks_return_with_a_major_20260607_AUS_ONLY/dm_260607_AFL_Highlight_Nasiah_marks_return_with_a_major_20260607_AUS_ONLY.jpg"
…