# AgentBIT Base64 Decoder

> AgentBIT Base64 Decoder is a paid API for AI agents from agentbit.app, paid per call via x402, $0.0015/call, status unknown (last checked 2026-09-13).

Decodes a Base64-encoded string and returns the original plaintext or binary content

## Facts

- Endpoint: POST https://agentbit.app/v1/decode/base64
- Price: $0.0015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentbit-base64-decoder-030343ed
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LLLGy1oasmwr2GBie6P39

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 agentbit-base64-decoder-030343ed -d '<json body>'
```

Example prompt: Can you decode this Base64 string for me: 'SGVsbG8sIFdvcmxkIQ=='?

## When to prefer this

Use this endpoint when you need a quick, no-auth, pay-per-call Base64 decoding step inside an AI agent workflow — especially useful when handling encoded fields from API responses, JWT tokens, email headers, or configuration values without needing to spin up local compute or install libraries.

## Known failure modes

- Invalid Base64 string — malformed or incorrectly padded input returns an error
- Empty input field causes a bad request response
- Non-Base64 characters in the input string trigger a decoding error
- Binary output may not display cleanly if the original data was not UTF-8 text

## How this service works

Live web, business, finance and security tools for AI agents. Pay per call with x402 — no signup, no API keys.

## Output

Returns a JSON object containing the decoded content of the Base64-encoded input string, rendered as readable plaintext or data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentbit-base64-decoder-030343ed/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentbit.app](https://www.zero.xyz/host/agentbit.app/llms.txt)
