Free overview of live/upcoming games across NBA, NFL, MLB, NHL, MLS
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-scores-agent-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Get live scores for a specific sport
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"sport": {
"type": "string",
"enum": [
"nba",
"nfl",
"mlb",
"nhl",
"mls"
]
}
},
"required": [
"sport"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://sports-scores-agent-production.up.railway.app/entrypoints/scores/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"sport": "nba"
}
}
'
Get all teams for a sport with basic info
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"sport": {
"type": "string",
"enum": [
"nba",
"nfl",
"mlb",
"nhl",
"mls"
]
}
},
"required": [
"sport"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://sports-scores-agent-production.up.railway.app/entrypoints/teams/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"sport": "nba"
}
}
'
Get upcoming games schedule for a sport
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"sport": {
"type": "string",
"enum": [
"nba",
"nfl",
"mlb",
"nhl",
"mls"
]
},
"days": {
"default": 3,
"type": "number",
"minimum": 1,
"maximum": 7
}
},
"required": [
"sport",
"days"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://sports-scores-agent-production.up.railway.app/entrypoints/schedule/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"sport": "nba",
"days": 1
}
}
'
Get detailed info for a specific game by ID
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"sport": {
"type": "string",
"enum": [
"nba",
"nfl",
"mlb",
"nhl",
"mls"
]
},
"gameId": {
"type": "string"
}
},
"required": [
"sport",
"gameId"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://sports-scores-agent-production.up.railway.app/entrypoints/game/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"sport": "nba",
"gameId": "string"
}
}
'
Comprehensive report with scores, standings, and news for a sport
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"sport": {
"type": "string",
"enum": [
"nba",
"nfl",
"mlb",
"nhl",
"mls"
]
}
},
"required": [
"sport"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://sports-scores-agent-production.up.railway.app/entrypoints/report/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"sport": "nba"
}
}
'