Free NHL overview - current season standings and today's games
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://nhl-agent-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Live NHL 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, defaults to today",
"type": "string"
}
},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://nhl-agent-production.up.railway.app/entrypoints/scores/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"date": "<Date in YYYYMMDD format, defaults to today>"
}
}
'
Detailed team info including roster, stats, and schedule
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"teamId": {
"type": "string",
"description": "ESPN team ID (e.g., \"1\" for Bruins, \"10\" for Maple Leafs)"
}
},
"required": [
"teamId"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://nhl-agent-production.up.railway.app/entrypoints/team/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"teamId": "<ESPN team ID (e.g., \"1\" for Bruins, \"10\" for Maple Leafs)>"
}
}
'
Full NHL standings by conference
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"conference": {
"default": "all",
"type": "string",
"enum": [
"eastern",
"western",
"all"
]
}
},
"required": [
"conference"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://nhl-agent-production.up.railway.app/entrypoints/standings/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"conference": "eastern"
}
}
'
Player statistics and career info
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"playerId": {
"type": "string",
"description": "ESPN player ID (get from team roster)"
}
},
"required": [
"playerId"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://nhl-agent-production.up.railway.app/entrypoints/player/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"playerId": "<ESPN player ID (get from team roster)>"
}
}
'
Upcoming NHL games schedule
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"days": {
"default": 3,
"description": "Number of days to fetch (max 7)",
"type": "number"
}
},
"required": [
"days"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://nhl-agent-production.up.railway.app/entrypoints/schedule/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"days": 0
}
}
'
Detailed game info including box score and play-by-play summary
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"gameId": {
"type": "string",
"description": "ESPN game ID"
}
},
"required": [
"gameId"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://nhl-agent-production.up.railway.app/entrypoints/game/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"gameId": "<ESPN game ID>"
}
}
'
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://nhl-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://nhl-agent-production.up.railway.app/entrypoints/analytics-transactions/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 0
}
}
'