# Strait of Hormuz Risk Premium API

> Strait of Hormuz Risk Premium API is a paid API for AI agents from straits.live, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Returns a real-time composite risk score, war risk premium multiples, and throughput/escalation drivers for the Strait of Hormuz, updated every 5 minutes.

## Facts

- Endpoint: GET https://straits.live/api/premium/risk-premium
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strait-of-hormuz-risk-premium-api-e1f55937
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VAueJ1FWf0J7AV6CYXVqY

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 strait-of-hormuz-risk-premium-api-e1f55937
```

Example prompt: Pull the current Strait of Hormuz risk premium data — I need the risk score, confidence level, risk band, and the VLCC war premium range so I can update our tanker voyage pricing model.

## When to prefer this

Choose this endpoint when you need a quantified, composite risk score for Strait of Hormuz shipping — especially for tanker insurance pricing, voyage cost modeling, or geopolitical risk dashboards. It is the only known real-time machine-readable API for Hormuz war risk premium multiples with structured JSON output, making it ideal for automated trading, shipping finance, or energy market applications that need live data rather than manual news monitoring.

## Known failure modes

- 402 Payment Required if USDC micropayment not included
- Stale data health flag if upstream feeds are delayed beyond update window
- High confidence interval during rapidly evolving geopolitical events
- Empty or null driver scores if AIS or escalation data sources are temporarily unavailable

## How this service works

Is the Strait of Hormuz open? Effectively no, it is closed to commercial shipping as of 13 July 2026. 34 ships transited vs ~88/day normal. Brent $81.10. Updated every 5 minutes.

## Output

Returns a JSON object with: risk band (e.g. 'uneconomic'), overall risk score (0-100), confidence value (0-1), modeled multiple, JWC multiple reference, VLCC war premium USD range (low/high), and sub-driver scores for escalation and throughput — each with freshness health and weighting. Data is updated every 5 minutes.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "band": "uneconomic",
  "schema": "https://straits.live/api/premium/risk-premium",
  "drivers": {
   "escalation": {
    "score": 61,
    "health": "fresh",
    "weight": 0.3
   },
   "throughput": {
    "score": 71,
    "health": "fresh",
    "weight": 0.3
   }
  },
  "reference": {
   "asOf": "2026-07-12T12:00:00Z",
   "note": "standing anchor, manually set",
   "jwcMultiple": 8
  },
  "riskScore": 75,
  "confidence": 0.86,
  "modeledMultiple": 5,
  "vlccWarPremiumUsd": {
   "low": 78125,
   "high": 1562500
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strait-of-hormuz-risk-premium-api-e1f55937/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from straits.live](https://www.zero.xyz/host/straits.live/llms.txt)
