# Suverse Carrier Risk Verdict

> Suverse Carrier Risk Verdict is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.75/call, status unknown (last checked 2026-09-14).

Returns a HIRE/VERIFY/AVOID verdict for any US trucking carrier with authority status, insurance, BOC-3, inspection records, and MCS-150 fraud signals using public FMCSA data.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/carrier-risk-verdict
- Price: $0.75/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-carrier-risk-verdict-8d39f0ea
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LvcQ2ptFUnxx_Ufb4y8iO

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-carrier-risk-verdict-8d39f0ea -d '<json body>'
```

Example prompt: Can you run a carrier risk check on DOT number 3456789 and tell me whether I should hire, verify further, or avoid them — I need their authority status, insurance, and any inspection red flags before I tender this load.

## When to prefer this

Use this endpoint when you need a single, opinionated HIRE/VERIFY/AVOID decision on a US trucking carrier rather than raw FMCSA data dumps. It is ideal for freight brokers, shippers, and compliance teams who want pre-scored, evidence-backed verdicts with fraud detection baked in — especially when speed and fail-safe behavior (auto-refund on failure) matter more than building your own scoring logic from scratch.

## Known failure modes

- Carrier not found by DOT/MC/name — verdict fails closed as AVOID with refund
- FMCSA data temporarily unavailable — service returns error with auto-refund
- Invalid DOT or MC number format — request rejected with validation error
- Ambiguous carrier name matching multiple entities — may require DOT/MC for disambiguation
- Stale FMCSA data may lag real-time authority changes by hours

## How this service works

HIRE / VERIFY / AVOID verdict for any US trucking carrier by DOT, MC or name: authority status + revocation history, insurance on file vs required, BOC-3, 24-month inspection/OOS record, MCS-150 fraud signals (stale filings, fleet jumps). Public FMCSA data, component scores, evidence included. Fail-closed, auto-refund.

## Output

A structured verdict of HIRE, VERIFY, or AVOID for the carrier, backed by component scores and evidence including: FMCSA authority status and revocation history, insurance on file versus required minimums, BOC-3 process agent filing status, 24-month inspection and out-of-service record, and MCS-150 fraud signals such as stale filings and suspicious fleet size changes. The response is fail-closed (defaults to AVOID on data errors) and includes an auto-refund if the lookup fails.

## 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-carrier-risk-verdict-8d39f0ea/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)
