Free overview of current tennis activity - live matches, upcoming events
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://tennis-live-agent-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Get current live tennis match scores for ATP or WTA
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"tour": {
"default": "atp",
"type": "string",
"enum": [
"atp",
"wta"
]
}
},
"required": [
"tour"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://tennis-live-agent-production.up.railway.app/entrypoints/live-scores/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"tour": "atp"
}
}
'
Get detailed tournament information including all matches and schedule
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"tour": {
"default": "atp",
"type": "string",
"enum": [
"atp",
"wta"
]
},
"tournamentId": {
"description": "ESPN tournament ID (default: current major)",
"type": "number"
}
},
"required": [
"tour"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://tennis-live-agent-production.up.railway.app/entrypoints/tournament/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"tour": "atp"
}
}
'
Search for tennis players by name
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"query": {
"type": "string",
"minLength": 2,
"description": "Player name to search"
}
},
"required": [
"query"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://tennis-live-agent-production.up.railway.app/entrypoints/player-search/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"query": "<Player name to search>"
}
}
'
Get completed match results from ATP and WTA tours
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"tour": {
"default": "both",
"type": "string",
"enum": [
"atp",
"wta",
"both"
]
},
"limit": {
"default": 20,
"type": "number"
}
},
"required": [
"tour",
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://tennis-live-agent-production.up.railway.app/entrypoints/results/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"tour": "atp",
"limit": 0
}
}
'
Comprehensive report with live matches, results, and tournament info for both tours
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://tennis-live-agent-production.up.railway.app/entrypoints/full-report/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Payment analytics summary
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"windowMs": {
"type": "number"
}
},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://tennis-live-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://tennis-live-agent-production.up.railway.app/entrypoints/analytics-transactions/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 0
}
}
'