# VeraData KYB Entity Lookup

> VeraData KYB Entity Lookup is a paid API for AI agents from api.veradata.dev, paid per call via x402, $0.08/call, status down (last checked 2026-09-16).

Performs Know Your Business (KYB) verification and data lookup for Latin American entities using micropayments via x402

## Facts

- Endpoint: POST https://api.veradata.dev/entity/kyb
- Price: $0.08/call
- Payment: x402
- Status: down
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/veradata-kyb-entity-lookup-9319feb8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nLyXM-UU86ig6JGHiJsZI

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 veradata-kyb-entity-lookup-9319feb8 -d '<json body>'
```

Example prompt: Run a KYB check on this Brazilian company — look up its entity registration data and give me the structured result with an audit hash so I can verify the data integrity.

## When to prefer this

Use this endpoint when you need verified, structured business entity data specifically for Latin American companies, especially for KYB/compliance workflows. Prefer this over generic business lookup APIs when you need LATAM-specific coverage and an auditable SHA-256 hash for data provenance. The x402 micropayment model ($0.08 USDC) makes it cost-effective for per-query usage without subscription overhead.

## Known failure modes

- Missing required 'type' or 'method' fields returns a 400 validation error
- Unknown or unsupported entity type returns an empty or error result
- Entity not found in LATAM databases returns null or empty result
- Payment failure via x402 (insufficient funds or unsupported wallet) blocks the request
- Rate limiting or quota exceeded returns a 429 error
- Invalid input schema (wrong types) causes request rejection

## How this service works

Verified Latin American Data for Autonomous AI Agents — x402 micropayments

## Output

A structured JSON object containing verified Latin American business entity data (e.g. registration details, status) alongside a SHA-256 audit hash for data integrity verification.

## 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"
    },
    "method": {
     "type": "string"
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": "structured LATAM data",
  "audit_hash": "sha256:..."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/veradata-kyb-entity-lookup-9319feb8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.veradata.dev](https://www.zero.xyz/host/api.veradata.dev/llms.txt)
