# SYNTHORA Asset Risk

> SYNTHORA Asset Risk is a paid API for AI agents from asset-risk.hergertsynthora.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Returns a signed geospatial operational-risk verdict (LOW to CRITICAL) for a zone, port, route, or asset by correlating earthquake, disaster, natural event, marine, and weather data.

## Facts

- Endpoint: POST https://asset-risk.hergertsynthora.com/service
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/synthora-asset-risk-e777aee2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1DHdd-kLuZwAyOg7IIhSw

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 synthora-asset-risk-e777aee2 -d '<json body>'
```

Example prompt: What's the current operational risk verdict for the Strait of Hormuz shipping route — I need to know if conditions like earthquakes, active disasters, or severe weather make it HIGH or CRITICAL risk right now.

## When to prefer this

Choose this endpoint when you need a single aggregated operational risk verdict for a geospatial location, port, route, or maritime asset that synthesizes multiple authoritative hazard sources (seismic, disaster, weather, marine) into one signed score. Prefer it over querying individual weather or earthquake APIs when you need a go/no-go risk classification rather than raw data, especially for logistics routing, asset deployment decisions, or supply chain risk screening.

## Known failure modes

- Ambiguous or unrecognized location/zone input returns an error or low-confidence result
- Upstream data source (USGS, GDACS, NOAA, EONET, Open-Meteo) unavailability may affect scoring accuracy
- Malformed input string causes request rejection
- Rate limiting or payment failure (x402) results in HTTP 402 or 429 response
- Overly vague route descriptions may yield a generalized rather than precise verdict

## How this service works

SYNTHORA asset-risk: geospatial operational-risk verdict for a zone, port, route or asset. Correlates earthquakes (USGS), disasters (GDACS), natural events (EONET), marine and weather conditions (NOAA, Open-Meteo) into a single signed verdict with deterministic scoring.

## Output

Returns a JSON object with a numeric risk score, a boolean 'entrega' delivery flag, and a categorical risk verdict string — one of LOW, MODERATE, ELEVATED, HIGH, or CRITICAL — representing a deterministic multi-source operational risk assessment for the queried location or route.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "synthora": {
   "type": "object",
   "properties": {
    "score": {
     "type": "number"
    },
    "entrega": {
     "type": "boolean"
    },
    "veredicto_en": {
     "enum": [
      "LOW",
      "MODERATE",
      "ELEVATED",
      "HIGH",
      "CRITICAL"
     ],
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/synthora-asset-risk-e777aee2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from asset-risk.hergertsynthora.com](https://www.zero.xyz/host/asset-risk.hergertsynthora.com/llms.txt)
