Free overview of current space weather conditions - 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://aurora-oracle-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
3-day Kp index forecast with observed and predicted values
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"days": {
"default": 3,
"type": "number",
"minimum": 1,
"maximum": 3
}
},
"required": [
"days"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://aurora-oracle-production.up.railway.app/entrypoints/kp-forecast/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"days": 1
}
}
'
Aurora visibility probability for a specific latitude/longitude
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"latitude": {
"type": "number",
"minimum": -90,
"maximum": 90
},
"longitude": {
"type": "number",
"minimum": -180,
"maximum": 180
}
},
"required": [
"latitude",
"longitude"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://aurora-oracle-production.up.railway.app/entrypoints/aurora-location/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"latitude": -90,
"longitude": -180
}
}
'
Real-time solar wind plasma and magnetic field data
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"minutes": {
"default": 15,
"type": "number",
"minimum": 5,
"maximum": 60
}
},
"required": [
"minutes"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://aurora-oracle-production.up.railway.app/entrypoints/solar-wind/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"minutes": 5
}
}
'
Active space weather alerts and warnings from NOAA
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"type": {
"default": "all",
"type": "string",
"enum": [
"all",
"geomagnetic",
"solar",
"radiation"
]
}
},
"required": [
"type"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://aurora-oracle-production.up.railway.app/entrypoints/alerts/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"type": "all"
}
}
'
Comprehensive space weather report with all data sources combined
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"latitude": {
"type": "number",
"minimum": -90,
"maximum": 90
},
"longitude": {
"type": "number",
"minimum": -180,
"maximum": 180
}
},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://aurora-oracle-production.up.railway.app/entrypoints/full-report/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"latitude": -90,
"longitude": -180
}
}
'