Skip to main content
TlamakatlTlamakatl

Base64 Encoder/Decoder

Encode text to Base64 or decode Base64 to text

API · SAME JOB, YOUR MACHINE

# Encode text to Base64
curl -X POST http://localhost:8000/api/upload \
  -F "file=@input.txt" \
  -F "job_type=base64-encode"

# Decode Base64 to text
curl -X POST http://localhost:8000/api/upload \
  -F "file=@encoded.txt" \
  -F "job_type=base64-decode"

# Response: {"job_id": "abc-123", "status": "queued"}

# Connect to WebSocket for status updates
# ws://localhost:8001/ws/{job_id}

# Download result when completed
curl -X GET http://localhost:8000/api/download/{file_id}