Free overview of today's games across major sports (NBA, NFL, NHL, MLB)
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://sports-data-agent-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Look up a team by name or ID. Returns team info, record, and current standings.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"sport": {
"default": "nba",
"type": "string",
"enum": [
"nba",
"nfl",
"nhl",
"mlb",
"ncaaf",
"ncaab",
"mls"
]
},
"team": {
"type": "string",
"description": "Team name or ESPN team ID"
}
},
"required": [
"sport",
"team"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://sports-data-agent-production.up.railway.app/entrypoints/lookup/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"sport": "nba",
"team": "<Team name or ESPN team ID>"
}
}
'
Get live scores for a sport. Returns all games for today with real-time scores.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"sport": {
"default": "nba",
"type": "string",
"enum": [
"nba",
"nfl",
"nhl",
"mlb",
"ncaaf",
"ncaab",
"mls"
]
},
"date": {
"description": "Date in YYYYMMDD format (default: today)",
"type": "string"
}
},
"required": [
"sport"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://sports-data-agent-production.up.railway.app/entrypoints/scores/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"sport": "nba"
}
}
'
Get current league standings with win/loss records and rankings.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"sport": {
"default": "nba",
"type": "string",
"enum": [
"nba",
"nfl",
"nhl",
"mlb"
]
},
"conference": {
"default": "all",
"type": "string",
"enum": [
"east",
"west",
"afc",
"nfc",
"all"
]
}
},
"required": [
"sport",
"conference"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://sports-data-agent-production.up.railway.app/entrypoints/standings/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"sport": "nba",
"conference": "east"
}
}
'
Get upcoming and past games for a specific team.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"sport": {
"default": "nba",
"type": "string",
"enum": [
"nba",
"nfl",
"nhl",
"mlb"
]
},
"teamId": {
"type": "string",
"description": "ESPN team ID"
},
"limit": {
"default": 10,
"type": "number"
}
},
"required": [
"sport",
"teamId",
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://sports-data-agent-production.up.railway.app/entrypoints/schedule/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"sport": "nba",
"teamId": "<ESPN team ID>",
"limit": 0
}
}
'
Comprehensive team report: info, record, standings, recent games, and upcoming schedule.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"sport": {
"default": "nba",
"type": "string",
"enum": [
"nba",
"nfl",
"nhl",
"mlb"
]
},
"team": {
"type": "string",
"description": "Team name or ESPN team ID"
}
},
"required": [
"sport",
"team"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://sports-data-agent-production.up.railway.app/entrypoints/report/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"sport": "nba",
"team": "<Team name or ESPN team ID>"
}
}
'