# Losbeto BR PIX Parse

> Losbeto BR PIX Parse is a paid API for AI agents from api.losbeto.xyz, paid per call via x402, $0.004/call, status unknown (last checked 2026-09-14).

Parses and extracts structured data from Brazilian PIX payment keys or QR code strings

## Facts

- Endpoint: GET https://api.losbeto.xyz/br-pix-parse
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/losbeto-br-pix-parse-afe64cb8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SoivBDHUGPMK4m_ZURMLb

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 losbeto-br-pix-parse-afe64cb8
```

Example prompt: Can you parse this Brazilian PIX key or QR code string for me and tell me who it belongs to, what type of key it is, and any payment details embedded in it?

## When to prefer this

Use this endpoint when you need to parse, validate, or extract structured information from Brazilian PIX payment keys or QR codes without setting up an account or API key. Ideal for fintech agents, payment automation, invoice processing, or fraud detection workflows targeting the Brazilian market. Pay-per-call with USDC means no subscription overhead for low-volume use.

## Known failure modes

- Invalid or malformed PIX key returns parsing error
- Unsupported PIX key format not recognized
- Payment required (402) if USDC payment not included or fails
- Network timeout or service unavailability
- Empty or null input returns validation error

## How this service works

OpenAI-compatible LLM gateway at $0.005/call — change base_url, pay in USDC. Plus pay-per-call market data: multi-oracle price consensus, sentiment, forex, equities, commodities, Brazil macro (BCB/B3) and crypto. No API keys, no accounts. USDC on Base, Solana and Algorand via x402.

## Output

A JSON object containing parsed PIX payment data, including the key type (CPF, CNPJ, phone, email, or EVP/random), recipient name, financial institution, transaction amount if embedded, transaction ID, and other structured fields extracted from the PIX key or QR code string.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "properties": {
    "queryParams": {
     "properties": {
      "code": {
       "description": "code parameter",
       "type": "string"
      }
     },
     "type": "object"
    }
   },
   "type": "object"
  },
  "output": {
   "properties": {
    "example": {
     "description": "Decode and CRC-verify a PIX BR Code (EMV-MPM) payload. Input: the full ?code= string from a QR. Returns the pix key, amount, merchant, txid and — the part that matters — whether the CRC16-CCITT checksum actually matches, so an agent can reject a tampered or truncated QR before moving money. Zero upstream calls, sub-millisecond, cannot rate-limit. Use this before initiating any Brazilian payment. Do NOT use it to look up a payment's status — it only reads the QR.",
     "type": "object"
    }
   },
   "type": "object"
  }
 },
 "required": [
  "input"
 ],
 "type": "object"
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/losbeto-br-pix-parse-afe64cb8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.losbeto.xyz](https://www.zero.xyz/host/api.losbeto.xyz/llms.txt)
