PDF to Images
Convert each PDF page to PNG images
API · SAME JOB, YOUR MACHINE
# Upload file and create job
curl -X POST http://localhost:8000/api/upload \
-F "file=@document.pdf" \
-F "job_type=pdf-to-images"
# Response: {"job_id": "abc-123", "status": "queued"}
# Connect to WebSocket for status updates
# ws://localhost:8001/ws/{job_id}
# Download result when completed (ZIP file with PNG images)
curl -X GET http://localhost:8000/api/download/{file_id}