Free overview of supported sports/leagues and sample live data
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-live-data-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Get live scores for a specific league
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"league": {
"type": "string",
"enum": [
"nba",
"nfl",
"mlb",
"nhl",
"epl",
"laliga",
"bundesliga",
"seriea",
"mls",
"ncaaf",
"ncaab"
]
}
},
"required": [
"league"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://sports-live-data-production.up.railway.app/entrypoints/scores/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"league": "nba"
}
}
'
Get current standings for a league
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"league": {
"type": "string",
"enum": [
"nba",
"nfl",
"mlb",
"nhl",
"epl",
"laliga",
"bundesliga",
"seriea",
"mls",
"ncaaf",
"ncaab"
]
}
},
"required": [
"league"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://sports-live-data-production.up.railway.app/entrypoints/standings/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"league": "nba"
}
}
'
Get upcoming games schedule for a league
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"league": {
"type": "string",
"enum": [
"nba",
"nfl",
"mlb",
"nhl",
"epl",
"laliga",
"bundesliga",
"seriea",
"mls",
"ncaaf",
"ncaab"
]
},
"days": {
"default": 7,
"type": "number",
"minimum": 1,
"maximum": 14
}
},
"required": [
"league",
"days"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://sports-live-data-production.up.railway.app/entrypoints/schedule/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"league": "nba",
"days": 1
}
}
'
Get team details, record, and roster info
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"league": {
"type": "string",
"enum": [
"nba",
"nfl",
"mlb",
"nhl",
"epl",
"laliga",
"bundesliga",
"seriea",
"mls",
"ncaaf",
"ncaab"
]
},
"teamId": {
"type": "string",
"description": "ESPN team ID (e.g., \"lal\" for Lakers, \"dal\" for Cowboys)"
}
},
"required": [
"league",
"teamId"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://sports-live-data-production.up.railway.app/entrypoints/team/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"league": "nba",
"teamId": "<ESPN team ID (e.g., \"lal\" for Lakers, \"dal\" for Cowboys)>"
}
}
'
Comprehensive league report: scores + standings + schedule combined
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"league": {
"type": "string",
"enum": [
"nba",
"nfl",
"mlb",
"nhl",
"epl",
"laliga",
"bundesliga",
"seriea",
"mls",
"ncaaf",
"ncaab"
]
}
},
"required": [
"league"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://sports-live-data-production.up.railway.app/entrypoints/report/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"league": "nba"
}
}
'