Encode and decode text to/from Base64 format
Enter text to encode or Base64 string to decode
curl -q -LSsf -X POST http://api.casjay.coffee/api/v1/tools/base64/encode \
-H "Content-Type: application/json" \
-d '{"text": "Hello World"}'
curl -q -LSsf -X POST http://api.casjay.coffee/api/v1/tools/base64/decode \
-H "Content-Type: application/json" \
-d '{"text": "SGVsbG8gV29ybGQ="}'