Current multi-hazard intelligence for any coordinates
Current multi-hazard intelligence for any coordinates. Finds nearby wildfire, earthquake, flood, tropical cyclone, volcano, and drought signals and returns compact deterministic risk scores without generating satellite images.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
71 msmedian answer time
$0.01listed price per call
$0.01price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://sat.ipintel.ai/location-risk
| Category | Image and media |
|---|---|
| Provider host | sat.ipintel.ai |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 2 from 2 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.01 | 71 ms |
Example input (from the provider)
{
"body": {
"lat": 13.7713,
"lon": 120.6627,
"top_events_limit": 8
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"days": {
"description": "Optional global time-window override. Otherwise hazard-specific windows are used.",
"maximum": 365,
"minimum": 1,
"type": "integer"
},
"event_limit": {
"default": 50,
"maximum": 200,
"minimum": 1,
"type": "integer"
},
"hazards": {
"description": "Optional subset. All supported hazards are checked by default.",
"items": {
"enum": [
"wildfire",
"earthquake",
"flood",
"tropical_cyclone",
"volcano",
"drought"
],
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"lat": {
"maximum": 90,
"minimum": -90,
"type": "number"
},
"lon": {
"maximum": 180,
"minimum": -180,
"type": "number"
},
"radius_km": {
"description": "Optional global radius override. Otherwise hazard-specific radii are used.",
"maximum": 1000,
"minimum": 1,
"type": "number"
},
"top_events_limit": {
"default": 12,
"maximum": 50,
"minimum": 1,
"type": "integer"
}
},
"required": [
"lat",
"lon"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"additionalProperties": true,
"properties": {
"active_hazard_count": {
"minimum": 0,
"type": "integer"
},
"generated_at": {
"type": "string"
},
"hazards": {
"additionalProperties": {
"additionalProperties": true,
"type": "object"
},
"type": "object"
},
"location": {
"properties": {
"lat": {
"type": "number"
},
"lon": {
"type": "number"
}
},
"required": [
"lat",
"lon"
],
"type": "object"
},
"ok": {
"const": true,
"type": "boolean"
},
"overall_risk": {
"additionalProperties": false,
"properties": {
"level": {
"enum": [
"none",
"low",
"medium",
"high",
"severe"
],
"type": "string"
},
"primary_hazard": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"score": {
"maximum": 100,
"minimum": 0,
"type": "integer"
},
"secondary_hazard_boost": {
"minimum": 0,
"type": "integer"
}
},
"required": [
"score",
"level",
"primary_hazard",
"secondary_hazard_boost"
],
"type": "object"
},
"satellite_images_included": {
"const": false,
"type": "boolean"
},
"tool": {
"const": "location-risk",
"type": "string"
},
"top_nearby_events": {
"items": {
"additionalProperties": true,
"type": "object"
},
"type": "array"
}
},
"required": [
"ok",
"tool",
"location",
"overall_risk",
"hazards",
"satellite_images_included"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}