Convert HEIC to JPEG/WEBP/AVIFCopy for LLMsView MarkdownConvert iPhone uploads to formats that work across the web. Convert HEIC to JPEG curlfetchcurl -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 curlfetchcurl -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 curlfetchcurl -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" } }'