Free overview of current UFC events and recent results
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://renewed-generosity-production-aa96.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Full fight card and results for a UFC event
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"eventId": {
"type": "string",
"description": "ESPN event ID from overview"
}
},
"required": [
"eventId"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://renewed-generosity-production-aa96.up.railway.app/entrypoints/event/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"eventId": "<ESPN event ID from overview>"
}
}
'
Get UFC events for a specific date (YYYYMMDD)
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"date": {
"type": "string",
"description": "Date in YYYYMMDD format (e.g., 20260131)"
}
},
"required": [
"date"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://renewed-generosity-production-aa96.up.railway.app/entrypoints/events-by-date/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"date": "<Date in YYYYMMDD format (e.g., 20260131)>"
}
}
'
Search UFC events by name or fighter
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Search term (event name or fighter)"
}
},
"required": [
"query"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://renewed-generosity-production-aa96.up.railway.app/entrypoints/search/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"query": "<Search term (event name or fighter)>"
}
}
'
Complete fight card with all matchups for an event
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"eventId": {
"type": "string",
"description": "ESPN event ID"
}
},
"required": [
"eventId"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://renewed-generosity-production-aa96.up.railway.app/entrypoints/fight-card/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"eventId": "<ESPN event ID>"
}
}
'
UFC event calendar with upcoming and recent events
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"limit": {
"default": 10,
"description": "Number of events to return",
"type": "number"
}
},
"required": [
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://renewed-generosity-production-aa96.up.railway.app/entrypoints/calendar/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://renewed-generosity-production-aa96.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://renewed-generosity-production-aa96.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://renewed-generosity-production-aa96.up.railway.app/entrypoints/analytics-csv/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"windowMs": 0
}
}
'