Ir al contenido
GET /v1/news

Latest golf news for a tour

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/golflive-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "data": {
        "tour": "pga",
        "count": 6,
        "articles": [
            {
                "link": "https://www.espn.com/golf/story/_/id/48995143/jt-poston-tops-ryan-gerard-playoff-capture-memorial",
                "image": "https://a.espncdn.com/photo/2026/0607/r1669553_600x600_1-1.jpg",
                "headline": "J.T. Poston tops Ryan Gerard in playoff to capture Memorial",
                "published": "2026-06-08T01:16:32Z",
                "description": "J.T. Poston made a 7-foot birdie putt on the 18th hole to salvage an even-par 72 and force a playoff with Ryan Gerard, then won the Memorial on the second extra hole when Gerard missed a 6-foot par putt."
            },
            {
                "link": "https://www.espn.com/golf/story/_/id/48992540/tyrrell-hatton-holds-jon-rahm-win-second-liv-golf-title",
                "image": "https://a.espncdn.com/photo/2026/0607/r1669411_1296x729_16-9.jpg",
                "headline": "Tyrrell Hatton holds off Jon Rahm to win second LIV Golf title",
                "published": "2026-06-07T17:16:55Z",
                "description": "Tyrrell Hatton had two late birdies to hold off Jon Rahm and close with a 1-under 71, giving him a two-shot victory in LIV Golf Andalucia for his second title in the league."
            },
            {
                "link": "https://www.espn.com/golf/story/_/id/48992387/jt-poston-seizes-control-4-shot-lead-memorial",
                "image": "https://a.espncdn.com/photo/2026/0607/r1669400_1296x729_16-9.jpg",
                "headline": "J.T. Poston seizes control with 4-shot lead at Memorial",
                "published": "2026-06-07T16:46:59Z",
                "description": "J.T. Poston built a 4-shot lead at the Memorial after running off three straight birdies Sunday morning for a 3-under 69 to complete the rain-delayed third round."
            },
            {
                "link": "https://www.espn.com/golf/story/_/id/48986883/memorial-halted-bad-weather-day-3-poston-gerard-share-lead",
                "image": "https://a.espncdn.com/photo/2026/0605/r1668766_600x400_3-2.jpg",
                "headline": "Memorial halted by bad weather on Day 3 as Poston, Gerard share lead",
                "published": "2026-06-06T23:41:58Z",
                "description": "J.T. Poston and Ryan Gerard are tied for the lead at the Memorial after bad weather halted the third round."
            },
            {
                "link": "https://www.espn.com/golf/story/_/id/48978871/jt-poston-handles-wind-memorial-65-tournament-lead",
                "image": "https://a.espncdn.com/photo/2026/0605/r1668766_600x400_3-2.jpg",
                "headline": "J.T. Poston handles wind at Memorial for 65, tournament lead",
                "published": "2026-06-06T17:28:34Z",
                "description": "J.T. Poston had eight birdies in a round of 7-under 65, a score best measured by the fact he was nine shots better than the field average, enough for a one-sho
…