$ man sports-schedule
/sports-schedule
PRICE / CALL
$0.01
USDC · base mainnet · scheme: exact
METHOD
POST
CLUSTER
localeCATEGORY
uncategorized
STATUS
● live
NAME
sports-schedule — returns upcoming games and recent results for major sports leagues: mlb, nba, nhl, nfl, wnba, mls, epl, la liga, bundesliga, and serie a
SYNOPSIS
POST https://x402.agentutility.ai/sports-schedule
Content-Type: application/json
X-PAYMENT: <signed-transferWithAuthorization>
{ ... }↳ first call →
402 Payment Required. Sign USDCtransferWithAuthorization, retry with theX-PAYMENT header.DESCRIPTION
Returns upcoming games and recent results for major sports leagues: MLB, NBA, NHL, NFL, WNBA, MLS, EPL, La Liga, Bundesliga, and Serie A. Pass a league code; scope='upcoming' (default) returns the next 15 events with start time, venue, and teams, while scope='recent' returns the last 15 completed games including scores. Data from TheSportsDB. Use it as a sports schedule API or TheSportsDB v1 wrapper.
INPUT — request schema
| property | type | description | req? |
|---|---|---|---|
| league | string | League code. Case-insensitive. enum: MLB · NBA · NHL · NFL · WNBA · MLS · EPL · LALIGA · BUNDESLIGA · SERIEA | required |
| scope | string | What to return — next games (default) or last results. enum: upcoming · recent | optional |
OUTPUT — response shape
| field | type | description |
|---|---|---|
| league | string | League code echoed back (e.g., MLB, NBA, NHL, NFL, WNBA, MLS, EPL, LaLiga, Bundesliga, SerieA). |
| scope | string | Either 'upcoming' for next 15 scheduled games or 'recent' for last 15 completed games with scores. |
| events | array | Array of up to 15 games with teams, start time, venue, and scores when scope is 'recent'. |
| source | string | Upstream data provider, TheSportsDB free tier v1 API. |
| attribution | string | Required attribution string crediting TheSportsDB per their commercial-use terms. |
EXAMPLES — two ways to call
EXAMPLE 1 · curl
curl -X POST https://x402.agentutility.ai/sports-schedule \
-H 'Content-Type: application/json' \
-d '{ }'first response =
402 Payment Required with payment requirements; sign + retry with X-PAYMENT.EXAMPLE 2 · mcp
# Install the MCP package for this endpoint's cluster npx -y @agentutility/mcp-<cluster> # Required: EVM private key with USDC on Base export X402_PRIVATE_KEY=0x... # Then call the sports-schedule tool from your MCP-aware agent.
MCP server handles payment automatically — your coding agent just calls the tool by name.
METADATA
- tags
- sportsschedulegamesscoresmlbnbanhlnflepl
- methods
- POST
- cluster
- locale
- price
- $0.01 USDC per call
ADJACENT — other endpoints in locale
| endpoint | description | price |
|---|---|---|
| city-weather | Returns current weather by city name with an instant geocoded lookup. | $0.01 |
| current | Instant current weather by city name: geocodes a city or place name, then returns current Open-Meteo temperature, feels-like, humidity, w… | $0.01 |
| current-weather-city | Current weather city lookup / city-name weather conditions. | $0.01 |
| flight-status | Tracks live aircraft positions from the OpenSky Network. | $0.01 |
| property-tax | Property tax lookup. | $0.01 |
| property-tax-assessment | Searches county assessor records by address or parcel ID for owner, assessed value, and property details. | $0.01 |
| satellite-address | Turns a street address into a cloud-free satellite image in one call. | $0.01 |
| weather-current-city | Returns current weather for any city or place name, no coordinates needed. | $0.01 |
SEE ALSO