Free overview of the latest 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-data-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Get current and recent UFC events with fight cards
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-data-production.up.railway.app/entrypoints/events/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Get UFC rankings - P4P and division rankings with fighter details
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"division": {
"default": "all",
"type": "string",
"enum": [
"all",
"pound-for-pound",
"heavyweight",
"light-heavyweight",
"middleweight",
"welterweight",
"lightweight",
"featherweight",
"bantamweight",
"flyweight",
"womens-pound-for-pound",
"womens-bantamweight",
"womens-flyweight",
"womens-strawweight"
]
}
},
"required": [
"division"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://ufc-mma-data-production.up.railway.app/entrypoints/rankings/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"division": "all"
}
}
'
Get detailed fight results for a UFC event
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"eventId": {
"description": "Event ID (leave empty for latest event)",
"type": "string"
}
},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://ufc-mma-data-production.up.railway.app/entrypoints/event-results/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"eventId": "<Event ID (leave empty for latest event)>"
}
}
'
Search for UFC fighters from rankings and recent events
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Fighter name to search"
}
},
"required": [
"query"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://ufc-mma-data-production.up.railway.app/entrypoints/fighter-search/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"query": "<Fighter name to search>"
}
}
'
Comprehensive UFC report: latest event + P4P rankings + recent activity
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-data-production.up.railway.app/entrypoints/full-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://ufc-mma-data-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-data-production.up.railway.app/entrypoints/analytics-transactions/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 0
}
}
'