Skip to main content

Live & Schedule (7)

All endpoints use base URL https://v2.minifootball.sportsapipro.com.
GET /api/live                           # Curated live matches
GET /api/live/all                       # Raw live data
GET /api/today                          # Today's scheduled matches
GET /api/schedule/:date                 # Schedule by date (YYYY-MM-DD)
GET /api/live-tournaments               # Leagues with live matches
GET /api/scheduled-tournaments/:date    # Leagues with matches on date
GET /api/newly-added-events             # Recently added matches

Response Example — /api/live

{
  "events": [
    {
      "id": 12345678,
      "homeTeam": { "id": 9101, "name": "Croatia U21" },
      "awayTeam": { "id": 9102, "name": "Brazil U21" },
      "homeScore": {
        "current": 2,
        "display": 2,
        "period1": 1,
        "period2": 1
      },
      "awayScore": {
        "current": 3,
        "display": 3,
        "period1": 2,
        "period2": 1
      },
      "status": { "code": 7, "description": "2nd Half", "type": "inprogress" },
      "tournament": { "name": "Minifootball World Cup", "id": 1120 },
      "startTimestamp": 1737331200
    }
  ]
}

Score Fields

FieldDescription
period11st half goals
period22nd half goals
overtimeExtra time goals (if applicable)
currentTotal goals
Minifootball covers 37 countries with 50-80+ matches daily. Brazil, Croatia, and Colombia are the most active markets.

Search & Discovery (7)

GET /api/search?q=croatia               # Search teams, players, tournaments
GET /api/countries                      # Categories (37 countries)
GET /api/countries/all                  # Extended categories
GET /api/categories/:categoryId/tournaments # Leagues in a country
GET /api/trending-players               # Trending minifootball players
GET /api/news?lang=en                   # Minifootball news
GET /api/country/:code/flag             # Country flag URL
Last modified on April 12, 2026