# VeraData LATAM Context Lookup

> VeraData LATAM Context Lookup is a paid API for AI agents from api.veradata.dev, paid per call via x402, $0.1/call, status down (last checked 2026-09-15).

Returns verified, structured data about Latin American entities with an audit hash, paid via x402 micropayment

## Facts

- Endpoint: POST https://api.veradata.dev/context
- Price: $0.1/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/veradata-latam-context-lookup-29dde402
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NEhqL3m1FNj3JALLoOEVv

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-latam-context-lookup-29dde402 -d '<json body>'
```

Example prompt: Can you pull verified structured data on a Brazilian company using VeraData — I need the context lookup with an audit hash so I can confirm the information is authenticated?

## When to prefer this

Choose this endpoint when you need verified, auditable data specifically about Latin American entities — businesses, individuals, or records — and require a cryptographic audit hash to prove data integrity. Prefer it over generic data enrichment APIs when LATAM coverage, data authenticity, and audit trails are critical requirements.

## Known failure modes

- Payment not received or x402 micropayment rejected — endpoint returns 402 Payment Required
- Missing required 'input.type' or 'input.method' fields — returns 400 Bad Request
- Unsupported data type or method combination — may return 422 or empty result
- Data unavailable for requested entity in LATAM coverage area — empty or null result field
- Network timeout if upstream LATAM data sources are slow

## How this service works

Verified Latin American Data for Autonomous AI Agents — x402 micropayments

## Output

A JSON object containing 'result' with structured LATAM data relevant to the queried type and method, plus an 'audit_hash' (SHA-256) that cryptographically attests to the data's authenticity and provenance.

## 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-latam-context-lookup-29dde402/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)
