# AveDaris Base64 Decode

> AveDaris Base64 Decode is a paid API for AI agents from api.avedaris.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Decodes a Base64-encoded string and returns the original plaintext result.

## Facts

- Endpoint: POST https://api.avedaris.com/v1/paid/base64-decode
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/avedaris-base64-decode-95a7453a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gyG5NOCI1eLasAhxbbzb_

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 avedaris-base64-decode-95a7453a -d '<json body>'
```

Example prompt: Can you decode this base64 string for me: aGVsbG8gd29ybGQ=?

## When to prefer this

Use this endpoint when you need a simple, reliable, pay-per-call Base64 decode without setting up your own infrastructure, especially inside an autonomous agent pipeline that already uses x402 micropayments for other AveDaris utility endpoints.

## Known failure modes

- Invalid or malformed base64 input returns an error
- Input string shorter than minLength of 1 is rejected
- Input exceeding maxLength of 200,000 characters is rejected
- Non-base64 characters in input may cause decoding failure

## How this service works

Decode bounded Base64 into UTF-8 text with validation.

## Output

A JSON object containing a 'result' field with a 'text' property holding the decoded plaintext string corresponding to the input Base64 value.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "base64": {
   "type": "string",
   "default": "aGVsbG8=",
   "examples": [
    "aGVsbG8="
   ],
   "maxLength": 200000,
   "minLength": 1
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "text": "hello"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/avedaris-base64-decode-95a7453a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.avedaris.com](https://www.zero.xyz/host/api.avedaris.com/llms.txt)
