mirrored listing x402 eip155:8453solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp

Global (or per-country) natural-hazard / disaster alert signal (optional ?country=)

Global (or per-country) natural-hazard / disaster alert signal (optional ?country=)

Do you run hazard.lonestaroracle.xyz? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
50000 (raw units)
price
6
calls / 30d
3
unique payers
2026-09-16
updated

Provider

hazard.lonestaroracle.xyz · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x52Ab53912D37759B2ad364f22dD06B16714b6C06",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "50000",
    "maxTimeoutSeconds": 300
  },
  {
    "scheme": "exact",
    "network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
    "payTo": "3nmeVj5m9Uq2hSTfsVsn3tJMHRJQNMKR1AjzyUJbrSgw",
    "asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
    "amount": "50000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "method": "GET",
        "queryParams": {
          "country": "Japan"
        },
        "type": "http"
      },
      "output": {
        "example": {
          "active_alerts": {
            "green": 98,
            "orange": 1,
            "red": 1
          },
          "alert_score": 6,
          "by_type": {
            "Earthquake": 55,
            "Flood": 8,
            "Tropical Cyclone": 3,
            "Wildfire": 74
          },
          "events": [
            {
              "alert": "Red",
              "country": "China",
              "date": "2026-08-05",
              "name": "Flood in China",
              "source": "GDACS",
              "type": "Flood"
            },
            {
              "alert": "Orange",
              "country": "Japan, China",
              "date": "2026-08-06",
              "name": "DOLPHIN-26",
              "source": "GDACS",
              "type": "Tropical Cyclone"
            }
          ],
          "hazard_level": "ELEVATED",
          "max_score": 10,
          "scope": "global",
          "source": "GDACS + USGS Earthquake Hazards"
        },
        "format": "json",
        "type": "object"
      }
    },
    "schema": {
      "category": "risk",
      "description": "Global natural-hazard / disaster alerting made agent-callable. One x402 call returns a hazard-stress signal (CALM / ACTIVE / ELEVATED / SEVERE with a 0-10 score) — globally or for a specific country — built from the official multi-hazard alert feeds: GDACS (Global Disaster Alert & Coordination System) Red/Orange/Green levels across earthquake, tropical cyclone, flood, volcano, wildfire and drought, plus USGS earthquakes. Returns the count of active Red/Orange alerts, the biggest current events named with country and alert level, a breakdown by hazard type, and a plain-language read. The physical-disaster leg a risk, insurance, supply-chain or logistics agent needs, served pay-per-call. Pass ?country= to scope it. $0.05 in USDC on Base via x402. Sources: GDACS + USGS Earthquake Hazards (all free/public). Sibling of GeoPulse and ConflictPulse. Alert levels reflect potential humanitarian impact, not confirmed casualties.",
      "name": "HazardPulse",
      "properties": {
        "input": {
          "properties": {
            "method": {
              "enum": [
                "GET",
                "HEAD",
                "DELETE"
              ],
              "type": "string"
            },
            "queryParams": {
              "properties": {
                "country": {
                  "description": "Optional. Scope to a country (name or ISO/keyword, e.g. Japan, Philippines). Omit for the global hazard signal. Aliases: nation, q, iso.",
                  "example": "Japan",
                  "type": "string"
                }
              },
              "type": "object"
            },
            "type": {
              "const": "http",
              "type": "string"
            }
          },
          "required": [
            "type",
            "method"
          ],
          "type": "object"
        },
        "output": {
          "properties": {
            "example": {
              "active_alerts": {
                "green": 98,
                "orange": 1,
                "red": 1
              },
              "alert_score": 6,
              "by_type": {
                "Earthquake": 55,
                "Flood": 8,
                "Tropical Cyclone": 3,
                "Wildfire": 74
              },
              "events": [
                {
                  "alert": "Red",
                  "country": "China",
                  "date": "2026-08-05",
                  "name": "Flood in China",
                  "source": "GDACS",
                  "type": "Flood"
                },
                {
                  "alert": "Orange",
                  "country": "Japan, China",
                  "date": "2026-08-06",
                  "name": "DOLPHIN-26",
                  "source": "GDACS",
                  "type": "Tropical Cyclone"
                }
              ],
              "hazard_level": "ELEVATED",
              "max_score": 10,
              "scope": "global",
              "source": "GDACS + USGS Earthquake Hazards"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "tags": [
        "hazard",
        "disaster",
        "natural-disaster",
        "earthquake",
        "risk"
      ],
      "type": "object",
      "version": "1.0.0"
    }
  },
  "bc_kg64bd18": {}
}

Use it

curl

curl "https://hazard.lonestaroracle.xyz/hazard"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://hazard.lonestaroracle.xyz/hazard");
if (res.status === 402) {
  const { accepts } = await res.json();
  // pay one of accepts[] via an x402 client, then retry with the payment header
}

Python

import httpx
res = httpx.get("https://hazard.lonestaroracle.xyz/hazard")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/3356.json, and this resource appears in /discovery/resources and /discovery/search.