Skip to main content
News items are short headlines with an image and a deep link to the original article.

Endpoints

EndpointNotes
GET /api/v1/newsGlobal news across all sports.
GET /api/v1/news?sportId={id}Filter by sport.
GET /api/v1/news?competitionId={id}Filter by competition.
GET /api/v1/news?gameId={id}News tied to a specific game.
GET /api/v1/{sport}/newsSport-scoped shortcut.
GET /api/v1/competition/{id}/newsCompetition-scoped.

Sample

curl -H "x-api-key: YOUR_API_KEY" \
  "https://v1.football.sportsapipro.com/api/v1/news?sportId=2"
{
  "success": true,
  "type": "news",
  "data": {
    "news": [
      {
        "id": 185699057,
        "publishDate": "2026-06-12T10:38:04+00:00",
        "sourceId": 2038,
        "title": "Nikola Jokic eyes $70M record in impending contract extension",
        "image": "https://images.eurohoops.net/2026/03/824945e9-nikola-jokic.jpg",
        "url": "https://www.eurohoops.net/en/nba-news/1979519/nikola-jokic-contract-extension-options/",
        "isMagazine": false
      }
    ],
    "newsSources": [
      { "id": 2038, "name": "Eurohoops", "iconUrl": "..." }
    ]
  }
}

Fields

FieldNotes
idStable news ID.
publishDateISO 8601 timestamp.
sourceIdJoin against newsSources[] for the publisher name and icon.
imageHot-linkable article hero image.
urlClick-through to the publisher (carries our partner UTM).
isMagazinetrue for long-form features.

Pagination

Append ?page=N&pageSize=50 for older items. Default page size is 20.
Last modified on June 12, 2026