Skip to main content
TlamakatlTlamakatl

UUID Generator

Generate cryptographically secure UUID v4 identifiers

API · SAME JOB, YOUR MACHINE

# Generate UUIDs
curl -X POST http://localhost:8000/api/upload \
  -F "file=@dummy.txt" \
  -F "job_type=uuid-generator" \
  -F "count=5"

# 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}