Free overview - current tennis landscape summary
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-intel-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Full ATP rankings - top 100 players with points, movement, and stats
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"limit": {
"default": 50,
"description": "Number of players to return (max 100)",
"type": "number"
}
},
"required": [
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://tennis-intel-production.up.railway.app/entrypoints/atp-rankings/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 0
}
}
'
Full WTA rankings - top 100 players with points, movement, and stats
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"limit": {
"default": 50,
"description": "Number of players to return (max 100)",
"type": "number"
}
},
"required": [
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://tennis-intel-production.up.railway.app/entrypoints/wta-rankings/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 0
}
}
'
Latest tennis news from ESPN - ATP and WTA coverage
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": 10,
"description": "Number of articles (max 25)",
"type": "number"
}
},
"required": [
"tour",
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://tennis-intel-production.up.railway.app/entrypoints/news/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"tour": "atp",
"limit": 0
}
}
'
Current live tennis matches and today's schedule
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"tour": {
"default": "both",
"type": "string",
"enum": [
"atp",
"wta",
"both"
]
}
},
"required": [
"tour"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://tennis-intel-production.up.railway.app/entrypoints/live-matches/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"tour": "atp"
}
}
'
Search ATP and WTA rankings for players by name
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Player name or partial name to search"
},
"tour": {
"default": "both",
"type": "string",
"enum": [
"atp",
"wta",
"both"
]
}
},
"required": [
"query",
"tour"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://tennis-intel-production.up.railway.app/entrypoints/player-search/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"query": "<Player name or partial name to search>",
"tour": "atp"
}
}
'
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-intel-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-intel-production.up.railway.app/entrypoints/analytics-transactions/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 0
}
}
'
Export payment data as CSV
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-intel-production.up.railway.app/entrypoints/analytics-csv/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"windowMs": 0
}
}
'