Free overview of live and upcoming sports events across all major leagues
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://live-sports-hub-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Get current scores and events for a specific sport
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"sport": {
"type": "string",
"enum": [
"tennis_atp",
"tennis_wta",
"ufc",
"nba",
"nfl",
"nhl",
"mlb",
"soccer_epl",
"soccer_laliga",
"soccer_mls",
"golf_pga"
],
"description": "Sport to query"
},
"limit": {
"default": 10,
"description": "Max events to return",
"type": "number"
}
},
"required": [
"sport",
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://live-sports-hub-production.up.railway.app/entrypoints/sport/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"sport": "tennis_atp",
"limit": 0
}
}
'
Get all currently live sporting events across all sports
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"sports": {
"description": "Filter to specific sports",
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://live-sports-hub-production.up.railway.app/entrypoints/live/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"sports": [
"string"
]
}
}
'
Get upcoming sporting events scheduled for today
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"sports": {
"description": "Filter to specific sports",
"type": "array",
"items": {
"type": "string"
}
},
"limit": {
"default": 20,
"description": "Max events to return",
"type": "number"
}
},
"required": [
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://live-sports-hub-production.up.railway.app/entrypoints/upcoming/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 0
}
}
'
Get detailed information about a specific event by ID
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"sport": {
"type": "string",
"description": "Sport category"
},
"eventId": {
"type": "string",
"description": "Event ID from ESPN"
}
},
"required": [
"sport",
"eventId"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://live-sports-hub-production.up.railway.app/entrypoints/event/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"sport": "<Sport category>",
"eventId": "<Event ID from ESPN>"
}
}
'
Search for events, teams, or athletes across all sports
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Search query (team name, athlete, etc.)"
},
"sports": {
"description": "Limit search to specific sports",
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"query"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://live-sports-hub-production.up.railway.app/entrypoints/search/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"query": "<Search query (team name, athlete, etc.)>"
}
}
'