# VeraData Global Screening

> VeraData Global Screening 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-15).

Performs global screening and verification lookups on Latin American individuals or entities, returning structured LATAM compliance data with an audit hash.

## Facts

- Endpoint: POST https://api.veradata.dev/solutions/screening-global
- Price: $0.08/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/veradata-global-screening-3712395b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hhX0t12nwg3m6ZJ8yrMfh

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-global-screening-3712395b -d '<json body>'
```

Example prompt: Screen Juan Carlos Ramirez Vega, a business contact based in Colombia, against verified Latin American compliance and watchlist databases and give me an auditable result with the hash.

## When to prefer this

Choose this endpoint when you need verified, auditable screening or compliance data specifically for Latin American individuals or entities, especially in KYC/AML, onboarding, or due-diligence workflows where an audit hash is required for record-keeping. Prefer it over generic identity APIs when your subject is based in Latin America and you need regionally-accurate data with micropayment-based per-call pricing.

## Known failure modes

- Payment failure or insufficient USDC balance — x402 payment rejected
- Subject not found in LATAM databases — empty or null result set
- Invalid or malformed input entity — 400 Bad Request
- Service unavailable or rate limit exceeded — 5xx error
- Insufficient identifying information to perform screening — ambiguous match

## How this service works

Verified Latin American Data for Autonomous AI Agents — x402 micropayments

## Output

A JSON object containing structured LATAM compliance/screening data about the queried subject and a SHA-256 audit hash that can be used to verify the integrity of the response.

## 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-global-screening-3712395b/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)
