Free space weather overview - recent alerts, current conditions, and aurora forecast. 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://space-weather-agent-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Search geomagnetic storms by date range with full Kp index history
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"daysBack": {
"default": 7,
"type": "number",
"minimum": 1,
"maximum": 30
}
},
"required": [
"daysBack"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://space-weather-agent-production.up.railway.app/entrypoints/storms/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"daysBack": 1
}
}
'
Search CMEs with trajectory analysis and Earth impact predictions
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"daysBack": {
"default": 7,
"type": "number",
"minimum": 1,
"maximum": 30
},
"earthDirectedOnly": {
"default": false,
"type": "boolean"
}
},
"required": [
"daysBack",
"earthDirectedOnly"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://space-weather-agent-production.up.railway.app/entrypoints/cmes/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"daysBack": 1,
"earthDirectedOnly": true
}
}
'
Get all space weather alerts - solar flares, radiation belt events, and more
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"daysBack": {
"default": 7,
"type": "number",
"minimum": 1,
"maximum": 30
},
"type": {
"default": "all",
"type": "string",
"enum": [
"all",
"FLR",
"SEP",
"CME",
"GST",
"IPS",
"MPC",
"RBE",
"Report"
]
}
},
"required": [
"daysBack",
"type"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://space-weather-agent-production.up.railway.app/entrypoints/alerts/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"daysBack": 1,
"type": "all"
}
}
'
Aurora visibility forecast based on current and predicted Kp index
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"latitude": {
"description": "Your latitude for visibility check",
"type": "number",
"minimum": -90,
"maximum": 90
}
},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://space-weather-agent-production.up.railway.app/entrypoints/aurora/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"latitude": -90
}
}
'
Comprehensive space weather report - storms, CMEs, alerts, and forecasts combined
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"daysBack": {
"default": 7,
"type": "number",
"minimum": 1,
"maximum": 30
}
},
"required": [
"daysBack"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://space-weather-agent-production.up.railway.app/entrypoints/report/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"daysBack": 1
}
}
'