Base64 Encoder/Decoder

Encode and decode text to/from Base64 format

Base64 Converter

Enter text to encode or Base64 string to decode

API Usage

Encode to Base64:

curl -q -LSsf -X POST http://api.casjay.coffee/api/v1/tools/base64/encode \
  -H "Content-Type: application/json" \
  -d '{"text": "Hello World"}'

Decode from Base64:

curl -q -LSsf -X POST http://api.casjay.coffee/api/v1/tools/base64/decode \
  -H "Content-Type: application/json" \
  -d '{"text": "SGVsbG8gV29ybGQ="}'