Encodes and decodes text in various formats: Base64, URL encoding, HTML entities, ROT13, and hexadecimal.
POST https://text-encoder-api-x402-689670267582.us-central1.run.app/encode
POST https://text-encoder-api-x402-689670267582.us-central1.run.app/decode
$0.005 USDC per request (Base L2)
base64 - Base64 encodingurl - URL encoding (percent-encoding)html - HTML entity encodingrot13 - ROT13 cipherhex - Hexadecimal encoding{
"text": "Hello World!",
"format": "base64"
}
{
"result": "SGVsbG8gV29ybGQh",
"format": "base64"
}
{
"text": "SGVsbG8gV29ybGQh",
"format": "base64"
}
{
"result": "Hello World!",
"format": "base64"
}