# RESET Verifica – Guatemala FEL DTE XML Parser

> RESET Verifica – Guatemala FEL DTE XML Parser is a paid API for AI agents from api.resetparatodos.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Parses a Guatemalan FEL (Factura Electrónica en Línea) DTE XML invoice into a structured JSON object containing document type, issue date, currency, issuer, receiver, grand total, tax phrases, and SAT authorization number.

## Facts

- Endpoint: POST https://api.resetparatodos.com/x402/v1/guatemala/fel/parse
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/reset-verifica-guatemala-fel-dte-xml-parser-b95923c8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FXKI18HJBPCQ70JZNV_gt

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 reset-verifica-guatemala-fel-dte-xml-parser-b95923c8 -d '<json body>'
```

Example prompt: I have a Guatemalan FEL electronic invoice XML — can you parse it and give me the issuer NIT, receiver, grand total, tax phrases, and SAT authorization number as structured JSON?

## When to prefer this

Use this endpoint when you need to extract structured metadata from a Guatemalan FEL DTE XML invoice — particularly for accounting automation, AP processing, or tax audit workflows. Prefer this over manual parsing when you need consistent JSON output. If you need to validate the XML schema first, use the sibling SAT schema validation endpoint before parsing.

## Known failure modes

- Invalid or malformed XML returns a parse error
- XML that does not conform to the FEL DTE schema may produce incomplete output
- Missing SAT authorization number in the XML results in that field being null or absent
- Base64-decoding errors if xml_base64 is incorrectly encoded
- Empty input returns a validation error

## How this service works

Parse a Guatemalan FEL electronic invoice (DTE) XML into a consistent JSON object: document type, issue date, currency, issuer (NIT/name), receiver, grand total, tax phrases and the SAT authorization number when present.

## Output

A structured JSON object containing: document type, issue date, currency, issuer NIT and name, receiver information, grand total, applicable tax phrases, and the SAT authorization number when present in the XML.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "xml": {
   "type": "string",
   "description": "FEL DTE XML document"
  },
  "xml_base64": {
   "type": "string",
   "description": "Alternatively, the XML base64-encoded"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/reset-verifica-guatemala-fel-dte-xml-parser-b95923c8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.resetparatodos.com](https://www.zero.xyz/host/api.resetparatodos.com/llms.txt)
