# sat.ipintel.ai Location Risk — Multi-Hazard Intelligence

> sat.ipintel.ai Location Risk — Multi-Hazard Intelligence is a paid API for AI agents from sat.ipintel.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns deterministic multi-hazard risk scores (wildfire, earthquake, flood, tropical cyclone, volcano, drought) for any geographic coordinates without generating satellite imagery.

## Facts

- Endpoint: POST https://sat.ipintel.ai/location-risk
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sat-ipintel-ai-location-risk-multi-hazard-intelligence-7cc5c51d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_W7q9W-tD_S657b154bY-n

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability sat-ipintel-ai-location-risk-multi-hazard-intelligence-7cc5c51d -d '<json body>'
```

Example prompt: What are the current multi-hazard risk scores at latitude 34.05, longitude -118.24? Check for wildfire, earthquake, and flood hazards within the last 30 days.

## When to prefer this

Use this endpoint when you need fast, deterministic multi-hazard risk scores for a specific coordinate without requiring satellite image generation. Ideal for property risk assessment, location intelligence pipelines, insurance underwriting, travel safety checks, or any workflow that needs structured risk data rather than visual imagery. Prefer this over general satellite imagery endpoints when risk scoring rather than visual inspection is the goal.

## Known failure modes

- Invalid coordinates (lat outside -90 to 90 or lon outside -180 to 180) — validation error
- Empty hazards array — must include at least one hazard type
- days parameter out of range (must be 1-365) — validation error
- Payment not provided or insufficient — 402 Payment Required
- event_limit or top_events_limit out of allowed range — validation error
- Service unavailable or upstream data source error — 5xx response

## How this service works

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.

## Output

A compact set of deterministic risk scores for each requested hazard type (wildfire, earthquake, flood, tropical cyclone, volcano, drought) at the given coordinates, including nearby event signals, event counts, and severity indicators — no satellite imagery is returned.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "lat": {
   "type": "number",
   "maximum": 90,
   "minimum": -90
  },
  "lon": {
   "type": "number",
   "maximum": 180,
   "minimum": -180
  },
  "days": {
   "type": "integer",
   "maximum": 365,
   "minimum": 1,
   "description": "Optional global time-window override. Otherwise hazard-specific windows are used."
  },
  "hazards": {
   "type": "array",
   "items": {
    "enum": [
     "wildfire",
     "earthquake",
     "flood",
     "tropical_cyclone",
     "volcano",
     "drought"
    ],
    "type": "string"
   },
   "minItems": 1,
   "description": "Optional subset. All supported hazards are checked by default.",
   "uniqueItems": true
  },
  "radius_km": {
   "type": "number",
   "maximum": 1000,
   "minimum": 1,
   "description": "Optional global radius override. Otherwise hazard-specific radii are used."
  },
  "event_limit": {
   "type": "integer",
   "default": 50,
   "maximum": 200,
   "minimum": 1
  },
  "top_events_limit": {
   "type": "integer",
   "default": 12,
   "maximum": 50,
   "minimum": 1
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "tool": "location-risk",
  "hazards": {
   "wildfire": {
    "level": "medium",
    "score": 38,
    "radius_km": 50,
    "nearest_km": 12.4,
    "window_days": 5,
    "evidence_count": 7
   },
   "earthquake": {
    "level": "low",
    "score": 20,
    "radius_km": 300,
    "window_days": 7,
    "max_magnitude": 3.8,
    "evidence_count": 2
   }
  },
  "location": {
   "lat": 13.7713,
   "lon": 120.6627
  },
  "overall_risk": {
   "level": "medium",
   "score": 42,
   "primary_hazard": "wildfire",
   "secondary_hazard_boost": 4
  },
  "active_hazard_count": 2,
  "satellite_images_included": false
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sat-ipintel-ai-location-risk-multi-hazard-intelligence-7cc5c51d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from sat.ipintel.ai](https://www.zero.xyz/host/sat.ipintel.ai/llms.txt)
