# capi2 Claim Verify – Vendor Risk Pack

> capi2 Claim Verify – Vendor Risk Pack is a paid API for AI agents from capi2-claim-verify.onrender.com, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-15).

Verifies vendor, compliance, security, and commercial claims against public evidence URLs, returning evidence-backed verdicts with x402 micropayment settlement.

## Facts

- Endpoint: POST https://capi2-claim-verify.onrender.com/v1/vendor-risk-pack
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/capi2-claim-verify-vendor-risk-pack-f70cd849
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RseTeGLzPBGGyjSFMO10G

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 capi2-claim-verify-vendor-risk-pack-f70cd849 -d '<json body>'
```

Example prompt: Can you verify these two vendor claims for me: Acme Corp says they're SOC 2 Type II certified at acmecorp.com/security, and they also claim GDPR compliance at acmecorp.com/privacy — pull the evidence from those pages and tell me if the claims hold up.

## When to prefer this

Choose this endpoint when you need agent-native, evidence-backed verification of vendor, compliance, or security claims sourced from public URLs — especially in procurement, vendor onboarding, or third-party risk workflows. It is purpose-built for multi-claim batch verification (2–5 claims per call) and natively supports x402 micropayment on Base USDC, making it ideal for autonomous agent pipelines that need to pay-per-use without API key management. Prefer it over general web search when you need a structured, auditable verdict with evidence citations rather than raw search results.

## Known failure modes

- Provided URLs are inaccessible or return non-200 responses — claim cannot be verified
- Claim text is ambiguous or too short (under 3 characters) — validation error
- More than 5 claims submitted in a single request — rejected with input validation error
- Fewer than 2 claims submitted — minimum batch size not met
- Evidence page content does not contain sufficient signal to verify the claim — inconclusive result
- x402 micropayment not settled — request blocked before processing
- Source URLs return paywalled or JavaScript-rendered content — evidence extraction fails

## How this service works

Agent-native evidence-backed claim verification with x402 micropayments on Base USDC.

## Output

A JSON response containing per-claim verification verdicts, evidence summaries drawn from the provided source URLs, confidence or risk indicators, and any discrepancies found between the stated claim and the observable evidence.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "claims": {
   "type": "array",
   "items": {
    "type": "object",
    "anyOf": [
     {
      "required": [
       "vendor_url",
       "claim"
      ]
     },
     {
      "required": [
       "source_urls",
       "claim"
      ]
     }
    ],
    "properties": {
     "claim": {
      "type": "string",
      "maxLength": 1200,
      "minLength": 3,
      "description": "Vendor, product, compliance, security, or commercial claim to verify."
     },
     "claim_id": {
      "type": "string",
      "maxLength": 200
     },
     "vendor_url": {
      "type": "string",
      "format": "uri",
      "description": "Public source URL containing evidence relevant to the claim."
     },
     "source_urls": {
      "type": "array",
      "items": {
       "type": "string",
       "format": "uri"
      },
      "maxItems": 3,
      "minItems": 1,
      "description": "Optional list of up to three public evidence URLs. These are checked together; vendor_url remains supported for backward compatibility.",
      "uniqueItems": true
     },
     "vendor_name": {
      "type": "string",
      "maxLength": 200
     },
     "request_type": {
      "type": "string",
      "maxLength": 120
     },
     "verification_type": {
      "type": "string",
      "maxLength": 120
     }
    },
    "additionalProperties": true
   },
   "maxItems": 5,
   "minItems": 2
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/capi2-claim-verify-vendor-risk-pack-f70cd849/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from capi2-claim-verify.onrender.com](https://www.zero.xyz/host/capi2-claim-verify.onrender.com/llms.txt)
