Free overview of current natural events - 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://natural-events-intel-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
events-by-category
Invoke
Get active natural events by category (wildfires, floods, storms, etc)
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"category": {
"type": "string",
"enum": [
"wildfires",
"floods",
"severeStorms",
"volcanoes",
"earthquakes",
"drought",
"dustHaze",
"landslides",
"snow",
"seaLakeIce",
"tempExtremes"
],
"description": "Event category to filter"
},
"limit": {
"default": 20,
"description": "Max events to return",
"type": "number"
}
},
"required": [
"category",
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://natural-events-intel-production.up.railway.app/entrypoints/events-by-category/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"category": "wildfires",
"limit": 0
}
}
'
Get the most recent natural events across all categories
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"days": {
"default": 7,
"description": "Number of days to look back",
"type": "number"
},
"limit": {
"default": 25,
"description": "Max events to return",
"type": "number"
}
},
"required": [
"days",
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://natural-events-intel-production.up.railway.app/entrypoints/recent-events/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"days": 0,
"limit": 0
}
}
'
Get detailed information about a specific event by ID
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"eventId": {
"type": "string",
"description": "NASA EONET event ID"
}
},
"required": [
"eventId"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://natural-events-intel-production.up.railway.app/entrypoints/event-details/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"eventId": "<NASA EONET event ID>"
}
}
'
Search for natural events within a geographic bounding box
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"north": {
"type": "number",
"description": "North latitude boundary (-90 to 90)"
},
"south": {
"type": "number",
"description": "South latitude boundary (-90 to 90)"
},
"east": {
"type": "number",
"description": "East longitude boundary (-180 to 180)"
},
"west": {
"type": "number",
"description": "West longitude boundary (-180 to 180)"
},
"limit": {
"default": 20,
"type": "number"
}
},
"required": [
"north",
"south",
"east",
"west",
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://natural-events-intel-production.up.railway.app/entrypoints/events-by-region/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"north": 0,
"south": 0,
"east": 0,
"west": 0,
"limit": 0
}
}
'
Comprehensive report of current natural events with statistics and breakdown
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"days": {
"default": 7,
"description": "Number of days to analyze",
"type": "number"
}
},
"required": [
"days"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://natural-events-intel-production.up.railway.app/entrypoints/full-report/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"days": 0
}
}
'
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://natural-events-intel-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://natural-events-intel-production.up.railway.app/entrypoints/analytics-transactions/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 0
}
}
'