Free overview of F1 season - top 3 drivers and constructors standings, plus next race
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://f1-racing-agent-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Look up a specific F1 driver by ID (e.g., max_verstappen, norris, hamilton)
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"driverId": {
"type": "string",
"description": "Driver ID (e.g., max_verstappen, norris, hamilton, leclerc)"
}
},
"required": [
"driverId"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://f1-racing-agent-production.up.railway.app/entrypoints/driver/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"driverId": "<Driver ID (e.g., max_verstappen, norris, hamilton, leclerc)>"
}
}
'
Full driver and constructor standings for specified season
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"season": {
"default": "2025",
"type": "string"
},
"type": {
"default": "both",
"type": "string",
"enum": [
"drivers",
"constructors",
"both"
]
}
},
"required": [
"season",
"type"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://f1-racing-agent-production.up.railway.app/entrypoints/standings/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"season": "string",
"type": "drivers"
}
}
'
F1 race schedule with dates, circuits, and session times
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"season": {
"default": "current",
"type": "string"
},
"upcoming": {
"default": false,
"type": "boolean"
}
},
"required": [
"season",
"upcoming"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://f1-racing-agent-production.up.railway.app/entrypoints/schedule/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"season": "string",
"upcoming": true
}
}
'
Detailed race results with positions, times, and lap data
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"season": {
"default": "2025",
"type": "string"
},
"round": {
"default": "last",
"type": "string"
}
},
"required": [
"season",
"round"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://f1-racing-agent-production.up.railway.app/entrypoints/results/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"season": "string",
"round": "string"
}
}
'
Comprehensive F1 report - standings, upcoming races, 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://f1-racing-agent-production.up.railway.app/entrypoints/report/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'