Free overview of current space weather conditions - try before you buy! Includes current Kp index and NOAA space weather scales.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://solar-storm-agent-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Real-time planetary Kp index with historical data. The Kp index measures geomagnetic activity (0-9 scale). Essential for radio propagation, GPS accuracy, and aurora visibility.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"minutes": {
"default": 60,
"description": "Minutes of historical data (1-1440)",
"type": "number",
"minimum": 1,
"maximum": 1440
}
},
"required": [
"minutes"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://solar-storm-agent-production.up.railway.app/entrypoints/kp-index/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"minutes": 1
}
}
'
Solar cycle indices including sunspot numbers and F10.7 solar flux. Track the 11-year solar cycle and predict space weather trends.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"months": {
"default": 12,
"description": "Months of historical data (1-120)",
"type": "number",
"minimum": 1,
"maximum": 120
}
},
"required": [
"months"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://solar-storm-agent-production.up.railway.app/entrypoints/solar-cycle/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"months": 1
}
}
'
Active space weather alerts and warnings from NOAA. Includes geomagnetic storm watches, solar radiation warnings, and radio blackout alerts.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"limit": {
"default": 10,
"description": "Maximum number of alerts",
"type": "number",
"minimum": 1,
"maximum": 50
}
},
"required": [
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://solar-storm-agent-production.up.railway.app/entrypoints/alerts/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 1
}
}
'
Aurora visibility forecast based on current geomagnetic conditions. Includes viewing probability by latitude and best viewing times.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"latitude": {
"description": "Your latitude for personalized forecast",
"type": "number",
"minimum": -90,
"maximum": 90
}
},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://solar-storm-agent-production.up.railway.app/entrypoints/aurora/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"latitude": -90
}
}
'
Comprehensive space weather report combining all data sources: Kp index, solar cycle, alerts, aurora forecast, and NOAA scales. Perfect for daily briefings.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"includeHistory": {
"default": true,
"description": "Include historical data",
"type": "boolean"
}
},
"required": [
"includeHistory"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://solar-storm-agent-production.up.railway.app/entrypoints/report/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"includeHistory": true
}
}
'