# agentum.lat Brazilian CEP Address Validator

> agentum.lat Brazilian CEP Address Validator is a paid API for AI agents from agentum.lat, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-16).

Validates and resolves Brazilian postal codes (CEPs) in real time, returning full address details for delivery or billing confirmation

## Facts

- Endpoint: GET https://agentum.lat/verificar-cep
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentum-lat-brazilian-cep-address-validator-ddf29395
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NTYZ6SKC8_JSMPHvGpQQ_

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 agentum-lat-brazilian-cep-address-validator-ddf29395
```

Example prompt: Before we dispatch this order, can you validate the Brazilian postal code 01310-100 and confirm the full street address it maps to?

## When to prefer this

Use this endpoint when you need to validate or resolve a Brazilian CEP (postal code) in real time before fulfilling an e-commerce order, confirming a billing address, or auto-filling address forms. Prefer this over generic geocoding APIs when the specific Brazilian postal system format and cadastral data are required, and when operating within a payment-enabled agent workflow using the x402 protocol.

## Known failure modes

- CEP not found or does not exist — returns empty or error response
- CEP provided with formatting (dashes/spaces) instead of 8 bare digits — may cause validation failure
- Network or upstream data source unavailability — returns 5xx error
- Invalid non-numeric characters in CEP input — schema validation error

## How this service works

APIs brasileiras pagas por chamada via x402 (USDC, Base mainnet): dado público agregado, pronto pra um agente de IA consumir numa chamada só.

## Output

Returns the full address associated with the given 8-digit Brazilian CEP, including street name, neighborhood (bairro), city (município), state (UF), and confirmation that the code is valid. If invalid or not found, returns an error or empty result.

## 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",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "cep"
     ],
     "properties": {
      "cep": {
       "type": "string",
       "description": "CEP brasileiro, 8 dígitos, apenas números"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "uf": "SP",
  "cep": "01310-100",
  "ddd": "11",
  "fonte": "viacep",
  "bairro": "Bela Vista",
  "regiao": "Sudeste",
  "municipio": "São Paulo",
  "logradouro": "Avenida Paulista"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentum-lat-brazilian-cep-address-validator-ddf29395/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentum.lat](https://www.zero.xyz/host/agentum.lat/llms.txt)
