Free: Today's NBA games overview - try before you buy
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-data-agent-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Live/recent game scores with scores and status
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"limit": {
"default": 10,
"description": "Max games to return",
"type": "number"
}
},
"required": [
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://nba-data-agent-production.up.railway.app/entrypoints/scores/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 0
}
}
'
NBA standings by conference
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"conference": {
"default": "both",
"type": "string",
"enum": [
"east",
"west",
"both"
]
}
},
"required": [
"conference"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://nba-data-agent-production.up.railway.app/entrypoints/standings/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"conference": "east"
}
}
'
Team roster and details
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"team": {
"type": "string",
"description": "Team name or abbreviation (e.g., \"lakers\", \"lal\")"
}
},
"required": [
"team"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://nba-data-agent-production.up.railway.app/entrypoints/team/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"team": "<Team name or abbreviation (e.g., \"lakers\", \"lal\")>"
}
}
'
Latest NBA headlines and news
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"limit": {
"default": 10,
"description": "Max articles to return",
"type": "number"
}
},
"required": [
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://nba-data-agent-production.up.railway.app/entrypoints/news/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 0
}
}
'
Full box score and game details by event ID
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"eventId": {
"type": "string",
"description": "ESPN event ID from scores endpoint"
}
},
"required": [
"eventId"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://nba-data-agent-production.up.railway.app/entrypoints/game-summary/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"eventId": "<ESPN event ID from scores endpoint>"
}
}
'
Payment analytics summary
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"windowMs": {
"description": "Time window in ms",
"type": "number"
}
},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://nba-data-agent-production.up.railway.app/entrypoints/analytics/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"windowMs": 0
}
}
'
analytics-transactions
Invoke
Recent payment transactions
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"windowMs": {
"type": "number"
},
"limit": {
"default": 50,
"type": "number"
}
},
"required": [
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://nba-data-agent-production.up.railway.app/entrypoints/analytics-transactions/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 0
}
}
'