Skip to main content
TlamakatlTlamakatl

Image Resize

Resize images to exact dimensions

API · SAME JOB, YOUR MACHINE

# Upload file and create job
curl -X POST http://localhost:8000/api/upload \
  -F "file=@image.jpg" \
  -F "job_type=image-resize" \
  -F "width=800" \
  -F "height=600"

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