Zum Inhalt springen
GET /v1/news

WNBA news

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/wnba-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "count": 15,
        "articles": [
            {
                "link": "http://www.espn.com/wnba/recap?gameId=401856971",
                "type": "Recap",
                "image": "https://s.espncdn.com/stitcher/sports/basketball/wnba/events/401856971.png?templateId=espn.applewatch.awayhome.1",
                "headline": "Ogwumike and Hamby have double-doubles to help Sparks beat Fire 89-72",
                "published": "2026-06-08T01:14:01Z",
                "description": "— Nneka Ogwumike had 20 points and a season-high 17 rebounds, Dearica Hamby added 22 points and 12 rebounds and the Los Angeles Sparks beat the Portland Fire 89-72 on Sunday to snap their three-game losing streak."
            },
            {
                "link": "https://www.espn.com/video/clip/_/id/48995784/los-angeles-sparks-vs-fire-game-highlights",
                "type": "Media",
                "image": "https://a.espncdn.com/media/motion/wsc/2026/0608/c8063103-d1c5-4ea5-82ac-7e5022fc9cfe/c8063103-d1c5-4ea5-82ac-7e5022fc9cfe.jpg",
                "headline": "Los Angeles Sparks vs. Fire - Game Highlights",
                "published": "2026-06-08T01:06:56Z",
                "description": "Watch the Game Highlights from Los Angeles Sparks vs. Fire, 06/07/2026"
            },
            {
                "link": "http://www.espn.com/wnba/recap?gameId=401856970",
                "type": "Recap",
                "image": "https://s.espncdn.com/stitcher/sports/basketball/wnba/events/401856970.png?templateId=espn.applewatch.awayhome.1",
                "headline": "Brittney Sykes scores 25 points as the Tempo beat the Sky 85-68 in the WNBA",
                "published": "2026-06-07T21:30:03Z",
                "description": "— Brittney Sykes scored 25 points, Nyara Sabally added 15 and the Toronto Tempo beat the Chicago Sky 85-68 on Sunday."
            },
            {
                "link": "https://www.espn.com/video/clip/_/id/48994457/tempo-win-big-home-sky",
                "type": "Media",
                "image": "https://a.espncdn.com/media/motion/wsc/2026/0607/0d201cb4-fd48-4a96-b93f-4fef9c8ee256/0d201cb4-fd48-4a96-b93f-4fef9c8ee256.jpg",
                "headline": "Tempo win big at home over the Sky",
                "published": "2026-06-07T21:26:30Z",
                "description": "Tempo win big at home over the Sky"
            },
            {
                "link": "http://www.espn.com/wnba/preview?gameId=401856972",
                "type": "Preview",
                "image": "https://s.espncdn.com/stitcher/sports/basketball/wnba/events/401856972.png?templateId=espn.applewatch.awayhome.1",
                "headline": "Connecticut hosts New York after Stewart's 30-point game",
                "published": "2026-06-07T06:10:12Z",
                "description": "New York Liberty (7-4, 4-0 Eastern Conference) at Connecticut Sun (2-10, 0-3 Eastern Conference)"
            },
            {
                "link": "http://www.esp
…