# PennyRail Base32 Decode

> PennyRail Base32 Decode is a paid API for AI agents from pennyrail.vercel.app, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Decodes a Base32-encoded string back into its original representation

## Facts

- Endpoint: POST https://pennyrail.vercel.app/api/p/nano/encoding.base32--base32-decode
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pennyrail-base32-decode-78bec6a7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_maQWY8LOi5JrFaIZRy61R

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 pennyrail-base32-decode-78bec6a7 -d '<json body>'
```

Example prompt: Decode this Base32 string for me: JBSWY3DPEB3W64TMMQQQ — I need to get back the original plain text it encodes.

## When to prefer this

Use this endpoint when you need a simple, pay-per-call Base32 decoding function without managing your own infrastructure. Ideal for agents that occasionally need to decode Base32 strings (e.g. TOTP secrets, encoded identifiers, RFC 4648 payloads) without bundling a library.

## Known failure modes

- Invalid Base32 input (non-Base32 characters) returns an error
- Malformed or incomplete Base32 string with bad padding causes decoding failure
- Empty or null input returns validation error
- Truncated encoded strings may produce garbled or partial output

## How this service works

Machine-readable settlement service

## Output

Returns a decoded representation of the provided Base32-encoded input string, restoring it to its original form (plain text, binary, or other data).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "additionalProperties": true
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pennyrail-base32-decode-78bec6a7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pennyrail.vercel.app](https://www.zero.xyz/host/pennyrail.vercel.app/llms.txt)
