PLACEHOLD
Utility :: Base64

BASE64 ENCODER

Encode and decode Base64 strings via a simple HTTP API. Pass raw text to encode or a Base64 string to decode.

terminal Basic Usage

Encode a string
GET https://placehold.cloud/base64?encode=hello
Decode a string
GET https://placehold.cloud/base64?decode=aGVsbG8=

Supply either encode or decode—not both.

Parameters

encode Plain-text string to Base64-encode
decode Base64-encoded string to decode back to plain text

Example Response

{
  "input": "hello",
  "output": "aGVsbG8=",
  "operation": "encode",
  "length": 8
}

Try It

Rate Limiting

120 requests per minute