# 54ch10 Data Encoder (Base64 / Hex / URL)

> 54ch10 Data Encoder (Base64 / Hex / URL) is a paid API for AI agents from 54ch10.uk, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Encodes a UTF-8 string into base64, hex, or URL format via a paid GET request

## Facts

- Endpoint: GET https://54ch10.uk/v1/encode/free
- 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/54ch10-data-encoder-base64-hex-url-7a4a75c0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_M1YlDlhADaLD1jxrT4mXl

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 54ch10-data-encoder-base64-hex-url-7a4a75c0
```

Example prompt: Can you base64-encode the string 'hello world' for me using the 54ch10 encoder?

## When to prefer this

Choose this endpoint when you need a quick, paid-per-call encoding utility accessible over HTTP GET without setting up a local library — especially useful in agent pipelines where encoding is a lightweight step and the x402 micropayment model fits the workflow. Prefer local libraries for high-volume or latency-sensitive encoding.

## Known failure modes

- Missing required 'q' or 'format' query parameters returns an error
- Unsupported format value (not base64, hex, or url) returns a validation error
- Payment failure via x402 protocol blocks the request
- Rate limit or quota exhaustion returns an error response
- Non-UTF-8 input may cause encoding errors

## How this service works

54ch10: pre-interact URL check. Paste a link, get brief + domain + page. Taste /v1/open/free. 80 calls for $1. Wire in 30s. Analytics-only tooling. Not financial advice.

## Output

A JSON object containing ok (boolean), tier, the requested format label, the encoded string value, and a disclaimer noting the informational nature of the tool.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ]
    },
    "headers": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "format": {
       "type": "string",
       "enum": [
        "base64",
        "hex",
        "url"
       ],
       "description": "Encoding format"
      },
      "q": {
       "type": "string",
       "description": "UTF-8 data to encode (or POST JSON {format,data|q})"
      }
     },
     "required": [
      "format",
      "q"
     ]
    }
   },
   "required": [
    "type",
    "method"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "tier": "x402",
  "format": "base64",
  "encoded": "aGVsbG8=",
  "disclaimer": "Informational tooling only. Not financial advice. No custody, trading, or token promotion. Scores are imperfect heuristics — verify independently."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/54ch10-data-encoder-base64-hex-url-7a4a75c0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 54ch10.uk](https://www.zero.xyz/host/54ch10.uk/llms.txt)
