# Vendor Risk and KYB Evidence Report

> Vendor Risk and KYB Evidence Report is a paid API for AI agents from ai-data-marketplace-1042299154756.us-central1.run.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Aggregates live domain, TLS, OFAC sanctions, GLEIF, website, hosting, and optional SEC evidence into a complete vendor onboarding risk report with an explicit pass/fail decision and recommended next action.

## Facts

- Endpoint: GET https://ai-data-marketplace-1042299154756.us-central1.run.app/api/v1/vendor_risk_report
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vendor-risk-and-kyb-evidence-report-dfe5a302
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hGWkwqEqK1RZg6U2qSJdd

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 vendor-risk-and-kyb-evidence-report-dfe5a302
```

Example prompt: Can you run a full vendor risk and KYB report on acme-logistics.com — their legal name is Acme Logistics Inc — and flag any OFAC sanctions hits, TLS issues, or critical findings before we onboard them?

## When to prefer this

Choose this endpoint when you need a single-call, consolidated vendor due diligence report that combines sanctions screening, entity verification, and domain/TLS trust signals rather than calling OFAC, GLEIF, and domain lookup APIs separately. Ideal for procurement automation, vendor onboarding workflows, and compliance pipelines where a structured pass/fail decision with evidence is required. Prefer over manual multi-source lookups when speed and auditability matter.

## Known failure modes

- Missing required 'domain' query parameter returns an error
- Unresolvable or non-existent domain may return empty or partial evidence sections
- OFAC/GLEIF APIs temporarily unavailable may cause degraded or incomplete results
- Invalid ticker symbol may cause SEC evidence section to be absent or errored
- Rate limiting or upstream provider timeouts may cause partial report generation

## How this service works

Produce a complete vendor onboarding risk report from live domain, TLS, website, hosting, OFAC, GLEIF, and optional SEC evidence, with an explicit decision and next action.

## Output

Returns a structured JSON report including a boolean success flag, a top-level risk decision string (e.g. APPROVE, REVIEW, REJECT), and an executive summary containing counts of critical findings and warnings, a boolean sanctions name match flag, and detailed evidence sections covering domain health, TLS certificate status, website content signals, hosting reputation, OFAC screening results, GLEIF entity data, and optionally SEC filings — enabling a procurement or compliance team to act on a clear recommendation.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "domain"
     ],
     "properties": {
      "domain": {
       "type": "string",
       "description": "Public vendor domain."
      },
      "ticker": {
       "type": "string",
       "description": "Optional US public-company ticker for SEC evidence."
      },
      "company": {
       "type": "string",
       "description": "Legal or trading name for entity and sanctions screening."
      }
     },
     "additionalProperties": true
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "success",
      "decision",
      "executive_summary"
     ],
     "properties": {
      "success": {
       "type": "boolean"
      },
      "decision": {
       "type": "string"
      },
      "executive_summary": {
       "type": "object",
       "required": [
        "critical_findings",
        "warnings",
        "sanctions_name_match"
       ],
       "properties": {
        "warnings": {
         "type": "integer"
        },
        "critical_findings": {
         "type": "integer"
        },
        "sanctions_name_match": {
         "type": "boolean"
        }
       },
       "additionalProperties": true
      }
     },
     "additionalProperties": true
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "success": true,
  "decision": "no_obvious_public_risk_detected",
  "executive_summary": {
   "warnings": 0,
   "critical_findings": 0,
   "sanctions_name_match": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vendor-risk-and-kyb-evidence-report-dfe5a302/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ai-data-marketplace-1042299154756.us-central1.run.app](https://www.zero.xyz/host/ai-data-marketplace-1042299154756.us-central1.run.app/llms.txt)
