News API

Free

Latest football news and articles from top sources

Overview

The News API provides access to latest football news articles, match reports, transfer rumors, injury updates, and breaking news from major sports outlets. All articles include full content, images, and publication metadata.

Update Frequency:Every 30 minutes
Sources:ESPN, SuperSport, BBC Sport, and more

Endpoints

GET
/news

Get latest football news articles

Query Parameters

sport
optional

Filter by sport (default: football)

league
optional

Filter by league slug

team
optional

Filter by team name

limit
optional

Results per page (1-100, default: 20)

curl "https://api.over15ai.com/v1/news?league=eng.1&limit=10" \
  -H "Authorization: Bearer YOUR_API_KEY"

Response

{
  "data": [
    {
      "id": "abc123",
      "title": "Manchester United sign new striker",
      "description": "Premier League club announces...",
      "content": "Full article text here...",
      "imageUrl": "https://...",
      "source": "ESPN",
      "author": "John Smith",
      "publishedAt": "2026-07-02T15:30:00Z",
      "url": "https://espn.com/...",
      "categories": ["transfers", "premier-league"],
      "teams": ["Manchester United"],
      "league": "eng.1"
    }
  ],
  "meta": {
    "count": 10,
    "total": 245
  }
}

GET
/news/search

Search news articles by keyword

Query Parameters

q
required

Search query

from
optional

Start date (YYYY-MM-DD)

to
optional

End date (YYYY-MM-DD)

curl "https://api.over15ai.com/v1/news/search?q=world%20cup" \
  -H "Authorization: Bearer YOUR_API_KEY"

GET
/news/:articleId

Get full article details

curl https://api.over15ai.com/v1/news/abc123 \
  -H "Authorization: Bearer YOUR_API_KEY"

News Categories

Match-Related

  • • Match Previews
  • • Match Reports
  • • Post-Match Analysis
  • • Player Ratings

Team News

  • • Transfers & Rumors
  • • Injury Updates
  • • Squad News
  • • Manager Interviews

Competition

  • • League Standings
  • • Tournament Updates
  • • Fixtures Changes
  • • Rules & Regulations

Breaking

  • • Breaking News
  • • Official Announcements
  • • Live Updates
  • • Press Conferences

Content Format

Article Structure

  • Title: Article headline
  • Description: Brief summary (150-200 chars)
  • Content: Full article text (HTML or plain text)
  • Image: Featured image URL
  • Metadata: Author, source, publish date, categories

Content Rights

All articles include source attribution and original URLs. For full display rights, we recommend linking back to the original source.