Base64 Encoder/Decoder
Encode text to Base64 or decode Base64 to text
API · SAME JOB, YOUR MACHINE
# Encode text to Base64
curl -X POST https://api-uat.open-tools.app/api/upload \
-F "file=@input.txt" \
-F "job_type=base64-encode"
# Decode Base64 to text
curl -X POST https://api-uat.open-tools.app/api/upload \
-F "file=@encoded.txt" \
-F "job_type=base64-decode"
# Response: {"job_id": "abc-123", "status": "queued"}
# Connect to WebSocket for status updates
# wss://api-uat.open-tools.app/ws/{job_id}
# Download result when completed
curl -X GET https://api-uat.open-tools.app/api/download/{file_id}