Catalog/sportsent-next-events

Data

Upcoming fixtures for a team with derived days-until + home/away split API

Resolves a team via TheSportsDB (keyless) and returns its upcoming fixtures, deriving days-until-kickoff, home/away venue, opponent, and the home/away fixture split. The MORE over the raw eventsnext feed: the feed returns a flat schedule with timestamps; we resolve the team by name, compute days-until each match, classify venue, and summarize. Distinct from data-sports-form (past results). Answers 'when does Arsenal play next', 'how many of their next matches are at home', 'who do they face next and how soon'.

Price$0.01per request
MethodPOST
Route/v1/data/sportsent-next-events
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
datasportsfixturesschedulethesportsdbupcomingteamentertainment
API URLhttps://x402.hexl.dev/v1/data/sportsent-next-events
Integration docs
Example request
{
  "team": "Arsenal"
}
Example response
{
  "teamId": "133604",
  "team": "Arsenal",
  "count": 1,
  "homeFixtures": 1,
  "awayFixtures": 0,
  "nextMatch": {
    "event": "Arsenal vs Real Betis",
    "league": "Club Friendlies",
    "sport": "Soccer",
    "date": "2026-08-05",
    "time": "18:30:00",
    "venue": "home",
    "opponent": "Real Betis",
    "daysUntil": 62,
    "round": null
  },
  "fixtures": [
    {
      "event": "Arsenal vs Real Betis",
      "league": "Club Friendlies",
      "sport": "Soccer",
      "date": "2026-08-05",
      "time": "18:30:00",
      "venue": "home",
      "opponent": "Real Betis",
      "daysUntil": 62,
      "round": null
    }
  ]
}
Input schema
{
  "type": "object",
  "properties": {
    "team": {
      "type": "string",
      "description": "Team name (e.g. 'Arsenal') or numeric TheSportsDB team id."
    }
  },
  "required": [
    "team"
  ]
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}