# VeraData KYB Complete MX

> VeraData KYB Complete MX is a paid API for AI agents from api.veradata.dev, paid per call via x402, $0.15/call, status down (last checked 2026-09-15).

Performs a comprehensive Know-Your-Business (KYB) verification lookup for Mexican companies using verified Latin American data sources

## Facts

- Endpoint: POST https://api.veradata.dev/solutions/kyb-complete-mx
- Price: $0.15/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/veradata-kyb-complete-mx-b726967a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__VRy_aR507vqTd6mXgolI

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-complete-mx-b726967a -d '<json body>'
```

Example prompt: Run a full KYB check on the Mexican company 'Grupo Financiero Banorte' — I need their verified registration status, legal name, and an audit hash I can store for compliance records.

## When to prefer this

Choose this endpoint when you need authoritative, verified KYB data specifically for Mexican businesses with a cryptographic audit trail. Ideal for compliance workflows, vendor onboarding, or fraud prevention where you need a tamper-evident audit hash alongside the business data. Prefer this over generic business lookup APIs when operating in the Mexican/LATAM market and when micropayment-per-call pricing fits your usage pattern.

## Known failure modes

- Business not found in Mexican registry — returns empty or null result
- Invalid or malformed RFC/business identifier — returns validation error
- Network timeout or upstream registry unavailable — returns 5xx error
- Insufficient USDC balance or x402 payment failure — returns 402 Payment Required
- Rate limiting exceeded — returns 429 Too Many Requests

## How this service works

Verified Latin American Data for Autonomous AI Agents — x402 micropayments

## Output

Returns a JSON object with structured verified business data about the Mexican entity (legal name, registration status, corporate details) plus a SHA-256 audit hash for compliance record-keeping, all sourced from verified Latin American data registries.

## 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-complete-mx-b726967a/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)
