Returns active emergency/disruption signals (earthquakes, weather alerts, wildfires, storm
Returns active emergency/disruption signals (earthquakes, weather alerts, wildfires, storms, water levels) near a lat/lon, with a status flag and calm relay guidance for travelers.
10000 (raw units)
price
5
calls / 30d
5
unique payers
2026-09-17
updated
Provider
travel-agent.forgemesh.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x7F7C9bfF1DDF2817641740962A9872e6421eBBFc",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 1800
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"lat": "38.8016",
"lon": "-77.0434",
"lookback_hours": "1",
"radius_miles": "50",
"signal_types": "earthquake,weather_alert,wildfire"
},
"type": "http"
},
"output": {
"example": {
"data": {
"signals": [],
"status": "attention",
"why_not_high": [
"Signal relevance still depends on route, lodging, event, activity, proximity, severity, and official local guidance."
]
},
"ok": true
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"lat": {
"type": "string"
},
"lon": {
"type": "string"
},
"lookback_hours": {
"type": "string"
},
"radius_miles": {
"type": "string"
},
"signal_types": {
"type": "string"
},
"trip_phase": {
"type": "string"
},
"water_site": {
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"data": {
"type": "object"
},
"ok": {
"type": "boolean"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
},
"builder-code": {
"info": {
"a": "bc_4ypyymtf"
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"a": {
"description": "App builder code",
"pattern": "^[a-z0-9_]{1,32}$",
"type": "string"
},
"s": {
"description": "Service builder codes",
"items": {
"pattern": "^[a-z0-9_]{1,32}$",
"type": "string"
},
"type": "array"
},
"w": {
"description": "Wallet builder code",
"pattern": "^[a-z0-9_]{1,32}$",
"type": "string"
}
},
"type": "object"
}
},
"offer-receipt": {
"info": {
"offers": [
{
"acceptIndex": 0,
"format": "eip712",
"payload": {
"amount": "10000",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"network": "eip155:8453",
"payTo": "0x7F7C9bfF1DDF2817641740962A9872e6421eBBFc",
"resourceUrl": "https://travel-agent.forgemesh.io/api/travel-pulse",
"scheme": "exact",
"validUntil": 1789618218,
"version": 1
},
"signature": "0x8b70f2a727cb3626dbd52da27cb06ddd8b288173ed752c0c5b5b49d6c93725cc1b4c719fdb6c7b4b56c522b644c504b7f50e7785a20b6fd069e6cac5e14344121b"
}
]
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"offers": {
"items": {
"properties": {
"acceptIndex": {
"type": "integer"
},
"format": {
"type": "string"
},
"payload": {
"properties": {
"amount": {
"type": "string"
},
"asset": {
"type": "string"
},
"network": {
"type": "string"
},
"payTo": {
"type": "string"
},
"resourceUrl": {
"type": "string"
},
"scheme": {
"type": "string"
},
"validUntil": {
"type": "integer"
},
"version": {
"type": "integer"
}
},
"required": [
"version",
"resourceUrl",
"scheme",
"network",
"asset",
"payTo",
"amount"
],
"type": "object"
},
"signature": {
"type": "string"
}
},
"required": [
"format",
"signature"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"offers"
],
"type": "object"
}
},
"payment-identifier": {
"info": {
"required": false
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"id": {
"maxLength": 128,
"minLength": 16,
"pattern": "^[a-zA-Z0-9_-]+$",
"type": "string"
},
"required": {
"type": "boolean"
}
},
"required": [
"required"
],
"type": "object"
}
}
}Use it
curl
curl "https://travel-agent.forgemesh.io/api/travel-pulse" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://travel-agent.forgemesh.io/api/travel-pulse");
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://travel-agent.forgemesh.io/api/travel-pulse")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/6007.json, and this resource appears in /discovery/resources and /discovery/search.