Free overview - weather data capabilities and sample data
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://weather-intel-agent-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Current weather conditions for any location
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"location": {
"type": "string",
"description": "City name or place (e.g., \"London\", \"Tokyo\", \"New York\")"
}
},
"required": [
"location"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://weather-intel-agent-production.up.railway.app/entrypoints/current/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"location": "<City name or place (e.g., \"London\", \"Tokyo\", \"New York\")>"
}
}
'
Multi-day weather forecast (up to 16 days)
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"location": {
"type": "string",
"description": "City name or place"
},
"days": {
"default": 7,
"description": "Number of forecast days (1-16)",
"type": "number",
"minimum": 1,
"maximum": 16
}
},
"required": [
"location",
"days"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://weather-intel-agent-production.up.railway.app/entrypoints/forecast/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"location": "<City name or place>",
"days": 1
}
}
'
Air quality index and pollutant levels
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"location": {
"type": "string",
"description": "City name or place"
}
},
"required": [
"location"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://weather-intel-agent-production.up.railway.app/entrypoints/air-quality/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"location": "<City name or place>"
}
}
'
Severe weather detection - checks for extreme conditions
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"location": {
"type": "string",
"description": "City name or place"
}
},
"required": [
"location"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://weather-intel-agent-production.up.railway.app/entrypoints/alerts/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"location": "<City name or place>"
}
}
'
Comprehensive weather report: current + forecast + air quality + alerts
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"location": {
"type": "string",
"description": "City name or place"
},
"forecastDays": {
"default": 5,
"type": "number",
"minimum": 1,
"maximum": 7
}
},
"required": [
"location",
"forecastDays"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://weather-intel-agent-production.up.railway.app/entrypoints/report/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"location": "<City name or place>",
"forecastDays": 1
}
}
'
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://weather-intel-agent-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://weather-intel-agent-production.up.railway.app/entrypoints/analytics-transactions/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 0
}
}
'