Free Premier League overview - current matchday scores and table snapshot
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://premier-league-intel-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
All current Premier League match scores with detailed status
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://premier-league-intel-production.up.railway.app/entrypoints/live-scores/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Complete Premier League table with all stats
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://premier-league-intel-production.up.railway.app/entrypoints/standings/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Search for Premier League team with full details from TheSportsDB
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"team": {
"type": "string",
"description": "Team name to search (e.g., \"Arsenal\", \"Tottenham\")"
}
},
"required": [
"team"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://premier-league-intel-production.up.railway.app/entrypoints/team-search/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"team": "<Team name to search (e.g., \"Arsenal\", \"Tottenham\")>"
}
}
'
Search for players by name with full career details
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"player": {
"type": "string",
"description": "Player name to search (e.g., \"Haaland\", \"Salah\")"
}
},
"required": [
"player"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://premier-league-intel-production.up.railway.app/entrypoints/player-search/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"player": "<Player name to search (e.g., \"Haaland\", \"Salah\")>"
}
}
'
Comprehensive Premier League report - scores, standings, news, and top teams
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://premier-league-intel-production.up.railway.app/entrypoints/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": {
"description": "Time window in ms",
"type": "number"
}
},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://premier-league-intel-production.up.railway.app/entrypoints/analytics/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"windowMs": 0
}
}
'