Convert HEIC to JPEG/WEBP/AVIF

View Markdown

Convert iPhone uploads to formats that work across the web.


Convert HEIC to JPEG

curl -X POST "https://api.ittybit.com/tasks" \
-H "Authorization: Bearer ITTYBIT_API_KEY" \
-H "Content-Type: application/json" \
-d '{
  "url": "https://example.com/iphone-photo.heic",
  "kind": "image",
  "options": {
    "format": "jpeg"
  }
}'

Convert HEIC to WEBP

curl -X POST "https://api.ittybit.com/tasks" \
-H "Authorization: Bearer ITTYBIT_API_KEY" \
-H "Content-Type: application/json" \
-d '{
  "url": "https://example.com/iphone-photo.heic",
  "kind": "image",
  "options": {
    "format": "webp"
  }
}'

Convert HEIC to AVIF

curl -X POST "https://api.ittybit.com/tasks" \
-H "Authorization: Bearer ITTYBIT_API_KEY" \
-H "Content-Type: application/json" \
-d '{
  "url": "https://example.com/iphone-photo.heic",
  "kind": "image",
  "options": {
    "format": "avif"
  }
}'

On this page