Free NBA overview - today's games and league snapshot
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://nba-stats-agent-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Live NBA scores for today or specific date
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"date": {
"description": "Date in YYYYMMDD format (default: today)",
"type": "string"
}
},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://nba-stats-agent-production.up.railway.app/entrypoints/scores/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"date": "<Date in YYYYMMDD format (default: today)>"
}
}
'
Team profile with roster and recent games
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"team": {
"type": "string",
"description": "Team abbreviation (LAL, BOS, GSW, etc.) or ESPN team ID"
}
},
"required": [
"team"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://nba-stats-agent-production.up.railway.app/entrypoints/team/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"team": "<Team abbreviation (LAL, BOS, GSW, etc.) or ESPN team ID>"
}
}
'
NBA league leaders by statistical category
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"category": {
"default": "points",
"type": "string",
"enum": [
"points",
"rebounds",
"assists",
"steals",
"blocks"
]
},
"limit": {
"default": 10,
"type": "number"
}
},
"required": [
"category",
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://nba-stats-agent-production.up.railway.app/entrypoints/leaders/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"category": "points",
"limit": 0
}
}
'
Full player profile with stats and career info
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"playerId": {
"type": "string",
"description": "ESPN player/athlete ID"
}
},
"required": [
"playerId"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://nba-stats-agent-production.up.railway.app/entrypoints/player/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"playerId": "<ESPN player/athlete ID>"
}
}
'
Full matchup preview comparing two teams
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"homeTeam": {
"type": "string",
"description": "Home team abbreviation or ID"
},
"awayTeam": {
"type": "string",
"description": "Away team abbreviation or ID"
}
},
"required": [
"homeTeam",
"awayTeam"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://nba-stats-agent-production.up.railway.app/entrypoints/matchup/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"homeTeam": "<Home team abbreviation or ID>",
"awayTeam": "<Away team abbreviation or ID>"
}
}
'