# SuVerse Freight — Certificate of Insurance Parser

> SuVerse Freight — Certificate of Insurance Parser is a paid API for AI agents from api.suverse.io, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-16).

Extracts structured insurance coverage data from freight Certificate of Insurance documents provided as text, PDF, or image

## Facts

- Endpoint: POST https://api.suverse.io/v1/freight/parse_insurance_cert
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-freight-certificate-of-insurance-parser-c118589a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GkDyNScI2QLWdWi--k7TE

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-freight-certificate-of-insurance-parser-c118589a -d '<json body>'
```

Example prompt: Parse this Certificate of Insurance for our carrier and extract the insurer, policy number, coverage types, liability limits, and expiration dates — I'm uploading the PDF as a base64 string.

## When to prefer this

Choose this endpoint when you need to programmatically extract structured insurance data from freight COI documents in text, PDF, or image form — especially in carrier onboarding, compliance verification, or TMS workflows. It is purpose-built for freight industry COI formats and integrates with other SuVerse Freight document parsers for end-to-end carrier vetting automation.

## Known failure modes

- Unreadable or low-quality image/PDF results in extraction failure or missing fields
- Document is not a Certificate of Insurance (wrong document type) — parser returns unexpected or empty fields
- Base64 encoding errors cause malformed input rejection
- Handwritten or non-standard COI formats may produce incomplete extraction
- Expired or malformed PDF structure may cause parsing errors
- Missing required mode field may result in ambiguous processing behavior

## How this service works

SuVerse Freight — Certificate of Insurance parser (freight.parse_insurance_cert)

## Output

Returns structured JSON containing extracted insurance fields from the COI document, including insurer name, insured name, certificate holder, policy numbers, coverage types (auto liability, cargo, general liability, etc.), per-occurrence and aggregate limits, effective and expiration dates, agent/broker details, and any additional insured parties.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "mode": {
   "type": "string"
  },
  "text": {
   "type": "string"
  },
  "pdf_base64": {
   "type": "string"
  },
  "image_base64": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/suverse-freight-certificate-of-insurance-parser-c118589a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.suverse.io](https://www.zero.xyz/host/api.suverse.io/llms.txt)
