# Strale Vendor Risk Assessment

> Strale Vendor Risk Assessment is a paid API for AI agents from api.strale.io, paid per call via x402, $1.944/call, status unknown (last checked 2026-09-15).

Assesses vendor/supplier risk for a given company using domain or company name, returning a structured risk profile with audit trail

## Facts

- Endpoint: POST https://api.strale.io/x402/v2/solutions/vendor-risk-assess
- Price: $1.944/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-vendor-risk-assessment-c583dcd6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ehQoCQUtzhkpIZ2dY0Ldi

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 strale-vendor-risk-assessment-c583dcd6 -d '<json body>'
```

Example prompt: Can you run a vendor risk assessment on Acme Corp (domain: acmecorp.com) before we sign the contract with them?

## When to prefer this

Choose this endpoint when you need a structured, auditable vendor risk assessment with cryptographic proof of the result — especially in compliance or procurement workflows requiring defensible third-party risk records. Prefer this over generic web searches or credit-check APIs when you need a standardized risk score across 27 countries with an immutable audit trail.

## Known failure modes

- Unknown or unrecognizable company domain returns no match or low-confidence result
- Invalid CIK or ticker symbol causes lookup failure
- Company with no public data footprint returns sparse or incomplete risk profile
- Rate limiting or payment failure (x402) prevents call from completing
- Ambiguous company name resolves to wrong entity

## How this service works

The trust layer for AI agents — 250+ independently tested data capabilities across 27 countries. Execute capabilities via REST, MCP, A2A, or x402 micropayments. Every call returns an audit record with cryptographic chain hashing.

## Output

Returns a structured vendor risk profile for the specified company, including risk scores, risk flags, and relevant risk indicators. Each response includes an audit record with a cryptographic chain hash for traceability and compliance documentation.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "type": "object",
     "required": [
      "company",
      "domain"
     ],
     "properties": {
      "domain": {
       "type": "string",
       "description": "Company domain to assess"
      },
      "company": {
       "type": "string",
       "description": "Company name, CIK, or ticker"
      }
     }
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  }
 },
 "required": [
  "input"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-vendor-risk-assessment-c583dcd6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
