While our web studio operates 100% locally in browser workers, our developer REST API (`/api/v1/transform`) allows backend servers and microservices to transform and watermark images on the fly.
curl -X POST https://pixelcraft.io/api/v1/transform \
-H "Authorization: Bearer px_test_demo1234567890abcdef" \
-H "Content-Type: application/json" \
-d '{
"operation": "grayscale",
"width": 800,
"height": 600,
"watermarkText": "Studio API v1"
}'