Free overview - current tennis events and live matches
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-agent-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
ATP Tour live and recent matches
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"limit": {
"default": 20,
"type": "number"
},
"grouping": {
"description": "Filter by grouping: mens-singles, mens-doubles",
"type": "string"
}
},
"required": [
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://tennis-agent-production.up.railway.app/entrypoints/atp-live/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 0
}
}
'
WTA Tour live and recent matches
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"limit": {
"default": 20,
"type": "number"
},
"grouping": {
"description": "Filter by grouping: womens-singles, womens-doubles",
"type": "string"
}
},
"required": [
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://tennis-agent-production.up.railway.app/entrypoints/wta-live/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 0
}
}
'
Get detailed match info by ID
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"matchId": {
"type": "string"
},
"tour": {
"default": "atp",
"type": "string",
"enum": [
"atp",
"wta"
]
}
},
"required": [
"matchId",
"tour"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://tennis-agent-production.up.railway.app/entrypoints/match-details/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"matchId": "string",
"tour": "atp"
}
}
'
tournament-matches
Invoke
Get all matches from a specific tournament
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"tournamentName": {
"type": "string",
"description": "Tournament name to search (e.g., Australian Open)"
},
"tour": {
"default": "both",
"type": "string",
"enum": [
"atp",
"wta",
"both"
]
}
},
"required": [
"tournamentName",
"tour"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://tennis-agent-production.up.railway.app/entrypoints/tournament-matches/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"tournamentName": "<Tournament name to search (e.g., Australian Open)>",
"tour": "atp"
}
}
'
Premium combined ATP + WTA live match summary with analysis
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"limit": {
"default": 10,
"type": "number"
}
},
"required": [
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://tennis-agent-production.up.railway.app/entrypoints/live-summary/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 0
}
}
'
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://tennis-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-agent-production.up.railway.app/entrypoints/analytics-transactions/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 0
}
}
'