Documentation
Everything you need to integrate ZipPixel into your applications.
Quick Start
Get up and running with ZipPixel in under 5 minutes.
Authentication
Learn how to authenticate API requests with your API key.
API Reference
Complete REST API documentation with request and response examples.
SDKs & Libraries
Official SDKs for JavaScript, Python, Go, Ruby, and PHP.
Webhooks
Set up webhooks to receive real-time notifications when images are processed.
Guides & Tutorials
Step-by-step guides for common use cases and best practices.
Quick example
compress.js
import { ZipPixel } from '@zippixel/sdk';
const client = new ZipPixel('your-api-key');
const result = await client.compress({
source: 'https://example.com/photo.jpg',
quality: 80,
format: 'webp',
});
console.log(result.url); // Compressed image URL
console.log(result.savings); // "78%"