# VeraData DeFi LATAM Report

> VeraData DeFi LATAM Report 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 DeFi activity and financial metrics in Latin America, delivered via x402 micropayment per call

## Facts

- Endpoint: POST https://api.veradata.dev/report/defi-latam
- 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-defi-latam-report-9075e6bf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JJDURb46t9hsdwNx9C_YH

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-defi-latam-report-9075e6bf -d '<json body>'
```

Example prompt: Pull me the latest verified DeFi LATAM report using the 'defi-latam' data type and 'report' method — I need the structured data along with the audit hash so I can verify it.

## When to prefer this

Choose this endpoint when you need verified, auditable DeFi data specifically scoped to Latin American markets, particularly when micropayment-per-call billing via x402 is acceptable and an audit hash for data provenance is required.

## Known failure modes

- Payment failure: x402 micropayment not completed or insufficient USDC balance — returns 402 Payment Required
- Invalid input schema: missing required 'type' or 'method' fields — returns 400 Bad Request
- Data unavailable: no current LATAM DeFi data matching the requested type/method — returns 404 or empty result
- Service timeout: data pipeline latency causes request to hang — returns 504 or timeout error
- Authentication/wallet error: x402 payment address misconfigured — returns payment-related error

## How this service works

Verified Latin American Data for Autonomous AI Agents — x402 micropayments

## Output

A JSON object containing 'result' with structured Latin American DeFi data and an 'audit_hash' (SHA-256) for data integrity verification, delivered after a $0.10 USDC x402 micropayment is processed.

## 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-defi-latam-report-9075e6bf/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)
