# Qonoro KYB Entity Verification

> Qonoro KYB Entity Verification is a paid API for AI agents from api.qonoro.ai, paid per call via x402, $0.6/call, status unknown (last checked 2026-09-13).

Verifies a business entity for compliance: checks registration status, sanctions screening, beneficial ownership, and returns a risk score plus proceed/review/reject recommendation.

## Facts

- Endpoint: POST https://api.qonoro.ai/v1/kyb/verify
- Price: $0.6/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/qonoro-kyb-entity-verification-5d32afb7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UoBrrItlmZbx91HrSxc5X

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 qonoro-kyb-entity-verification-5d32afb7 -d '<json body>'
```

Example prompt: Run a KYB check on Acme Logistics Ltd — I need to know if they're properly registered, whether they show up on any sanctions lists, who the beneficial owners are, and whether we should proceed, review, or reject them for onboarding.

## When to prefer this

Choose this endpoint when you need a comprehensive, single-call KYB decision for business onboarding, loan approval, or vendor vetting — especially in fintech or compliance workflows where you need registration status, sanctions screening, beneficial ownership, and a proceed/review/reject recommendation bundled together. Prefer it over manual registry lookups or separate sanctions-check APIs when you want a unified risk score and actionable recommendation without orchestrating multiple data sources yourself.

## Known failure modes

- Company not found in registry — returns not_found status with no risk score
- Ambiguous company name matching multiple entities — may return low-confidence result or require additional identifiers
- Sanctions database temporarily unavailable — may return inconclusive screening result
- Unsupported jurisdiction — may return partial data or error
- Invalid or malformed registration number — returns validation error

## How this service works

Know Your Business (KYB) entity verification: registration status, sanctions screening, beneficial ownership, risk score, and a proceed/review/reject recommendation for compliance and fintech agents.

## Output

Returns a structured compliance report including: business registration status (active/inactive/not found), sanctions screening result (clear/hit/inconclusive), beneficial ownership records, a numerical risk score, and a three-way recommendation of proceed, review, or reject.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "country": {
   "type": "string",
   "description": "ISO 3166-1 alpha-2 country code (e.g. 'US', 'GB', 'DE'). Helps scope registration lookup."
  },
  "buyer_region": {
   "type": "string",
   "description": "Optional privacy-safe buyer region for operational reporting."
  },
  "company_name": {
   "type": "string",
   "description": "Legal company name to verify."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/qonoro-kyb-entity-verification-5d32afb7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.qonoro.ai](https://www.zero.xyz/host/api.qonoro.ai/llms.txt)
