Free overview of current/upcoming UFC event - try before you buy
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://ufc-mma-agent-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Detailed info about a specific UFC event by name or number
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Event name, number (e.g., \"325\"), or \"next\" for upcoming"
}
},
"required": [
"query"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://ufc-mma-agent-production.up.railway.app/entrypoints/event/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"query": "<Event name, number (e.g., \"325\"), or \"next\" for upcoming>"
}
}
'
Upcoming UFC event schedule
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://ufc-mma-agent-production.up.railway.app/entrypoints/schedule/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 0
}
}
'
Live fight results and current event 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://ufc-mma-agent-production.up.railway.app/entrypoints/live/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Latest UFC news and headlines
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"limit": {
"default": 10,
"description": "Number of articles",
"type": "number"
}
},
"required": [
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://ufc-mma-agent-production.up.railway.app/entrypoints/news/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 0
}
}
'
Complete fight card with all bouts for current/upcoming event
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"eventQuery": {
"default": "current",
"description": "Event name/number or \"current\"",
"type": "string"
}
},
"required": [
"eventQuery"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://ufc-mma-agent-production.up.railway.app/entrypoints/fightcard/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"eventQuery": "<Event name/number or \"current\">"
}
}
'
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://ufc-mma-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://ufc-mma-agent-production.up.railway.app/entrypoints/analytics-transactions/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 0
}
}
'