# Suverse US Freight Road Conditions API

> Suverse US Freight Road Conditions API is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Returns a CLEAR/CAUTION/SEVERE road condition verdict for a US freight corridor by sampling live NWS weather alerts and WZDx work zones along the route

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/road-conditions
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-us-freight-road-conditions-api-d08485ef
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YCBsoUHBbvaXRWJ18xgcp

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 suverse-us-freight-road-conditions-api-d08485ef -d '<json body>'
```

Example prompt: Check road conditions for a freight truck driving from 41.8781,-87.6298 (Chicago) to 32.7767,-96.7970 (Dallas) — give me a CLEAR, CAUTION, or SEVERE verdict including any active NWS weather alerts and work zone closures along the corridor.

## When to prefer this

Choose this endpoint when you need a single safety verdict for a US freight or long-haul trucking corridor that combines both real-time weather alerts (NWS) and active work zone / closure data (WZDx) in one call. It is especially valuable when fail-closed behavior and automatic refunds on data failures are important for reliability. Prefer this over general weather APIs when freight-specific road hazards, DOT work zone feeds, and honest coverage gaps matter for the decision. Best suited for US domestic routes where per-state DOT data availability is relevant.

## Known failure modes

- Invalid or unresolvable origin/destination place names — returns an error indicating geocoding failure
- NWS or WZDx feed temporarily unavailable — endpoint fails closed rather than returning stale data, with auto-refund
- Route spans states with no WZDx coverage — disclosed transparently in the per-state coverage field
- Malformed request body — returns 400-level error with schema validation message
- Network timeout on upstream DOT feed sampling — fails closed with auto-refund triggered

## How this service works

CLEAR / CAUTION / SEVERE verdict for any US freight corridor: live NWS alerts sampled along the route + WZDx work zones within 30 km (closures first) from keyless state DOT feeds. Honest per-state coverage disclosure. Origin/destination as lat,lon or place names. Fail-closed, auto-refund.

## Output

A structured response containing a top-level safety verdict (CLEAR, CAUTION, or SEVERE), a list of active NWS weather alerts sampled along the route, WZDx work zone events within 30 km of the corridor (prioritizing closures), and an honest per-state coverage disclosure indicating which states have available DOT feed data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/suverse-us-freight-road-conditions-api-d08485ef/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
