{
  "x402Version": 2,
  "id": 383,
  "slug": "383",
  "resource": "https://sat.ipintel.ai/location-risk",
  "description": "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.",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0x0550779CFBc832657A8BB46BAC9f359A5ad038B8",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "10000",
      "maxTimeoutSeconds": 300
    }
  ],
  "outputSchema": {
    "bazaar": {
      "info": {
        "input": {
          "body": {
            "lat": 13.7713,
            "lon": 120.6627,
            "top_events_limit": 8
          },
          "bodyType": "json",
          "method": "POST",
          "type": "http"
        },
        "output": {
          "example": {
            "active_hazard_count": 2,
            "hazards": {
              "earthquake": {
                "evidence_count": 2,
                "level": "low",
                "max_magnitude": 3.8,
                "radius_km": 300,
                "score": 20,
                "window_days": 7
              },
              "wildfire": {
                "evidence_count": 7,
                "level": "medium",
                "nearest_km": 12.4,
                "radius_km": 50,
                "score": 38,
                "window_days": 5
              }
            },
            "location": {
              "lat": 13.7713,
              "lon": 120.6627
            },
            "ok": true,
            "overall_risk": {
              "level": "medium",
              "primary_hazard": "wildfire",
              "score": 42,
              "secondary_hazard_boost": 4
            },
            "satellite_images_included": false,
            "tool": "location-risk"
          },
          "type": "json"
        }
      },
      "schema": {
        "$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"
      }
    }
  },
  "tags": [
    "bazaar"
  ],
  "sourceHost": "sat.ipintel.ai",
  "lastUpdated": "2026-09-14T19:46:45.119Z",
  "quality": {
    "calls30d": 2,
    "uniquePayers30d": 2,
    "lastCalledAt": "2026-09-14T19:46:44.891Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "sat.ipintel.ai",
    "manifest_name": "sat.ipintel.ai",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}