Everything you need to get started with Claripix
Learn the basics of using Claripix
Core image processing features
AI-powered enhancement tools
Integrate with our REST API
Sign up for a free account to get started. No credit card required for the free tier.
Create AccountNavigate to the Editor and drag & drop an image or click to upload. We support JPEG, PNG, WebP, and GIF formats up to 100MB.
Choose from resize, convert, optimize, or AI features. Adjust settings and click process. Download your result instantly.
$0/mo
$19/mo
$99/mo
Your dashboard is the central hub for managing your images and account. Here's what you'll find:
Track your monthly image processing usage and remaining quota
Quick access to your recently processed images
One-click access to common tasks like upload and batch processing
Manage your API keys for programmatic access (Pro & Enterprise)
Resize images to exact dimensions or scale proportionally while maintaining quality.
// API Example
POST /api/v1/images/resize
{
"width": 800,
"height": 600,
"mode": "fit", // fit, fill, exact
"quality": 90
}Convert images between formats with optimized settings for each type.
Best for photographs. Adjustable quality 1-100.
Lossless compression. Supports transparency.
Modern format. 25-35% smaller than JPEG/PNG.
Animated images. Limited to 256 colors.
Reduce file size while maintaining visual quality for faster web loading.
Process multiple images at once with the same settings. Available on Pro and Enterprise plans.
Automatically improve image quality using AI-powered algorithms.
One-click improvement of brightness, contrast, and color balance
Remove grain and noise while preserving detail
Intelligent edge enhancement for crisp images
Fix white balance and color cast issues
Remove backgrounds from images with AI precision. Perfect for product photos and portraits.
AI-powered cropping that automatically identifies and focuses on the most important parts of your image.
Increase image resolution using AI while maintaining sharpness and detail.
2x
Double resolution
4x
Quadruple resolution
8x
Enterprise only
Generate descriptive captions and alt text for your images using AI.
All API requests require authentication using Bearer tokens.
// Include your API key in the Authorization header curl -X GET https://api.claripix.io/v1/user \ -H "Authorization: Bearer YOUR_API_KEY"
Security Note: Never expose your API key in client-side code. Always make API calls from your server.
Resize an image to specified dimensions.
{
"image": "base64_or_url",
"width": 800,
"height": 600,
"mode": "fit" // fit, fill, exact
}Convert image to a different format.
{
"image": "base64_or_url",
"format": "webp", // jpeg, png, webp, gif
"quality": 85
}Optimize image for web delivery.
{
"image": "base64_or_url",
"level": "balanced" // lossless, balanced, maximum
}AI-powered image enhancement.
{
"image": "base64_or_url",
"enhancements": ["auto", "denoise", "sharpen"]
}Remove image background.
{
"image": "base64_or_url",
"output_format": "png"
}Upscale image resolution.
{
"image": "base64_or_url",
"scale": 2 // 2, 4, or 8
}Receive real-time notifications when image processing completes.
{
"event": "image.processed",
"timestamp": "2024-01-15T10:30:00Z",
"data": {
"image_id": "img_abc123",
"status": "completed",
"result_url": "https://cdn.claripix.io/...",
"processing_time_ms": 1250
}
}Tip: Configure webhooks in your dashboard under Settings → Webhooks.
API rate limits vary by plan to ensure fair usage.
| Plan | Requests/min | Requests/day |
|---|---|---|
| Free | 10 | 100 |
| Pro | 60 | 5,000 |
| Enterprise | 300 | Unlimited |
Rate Limit Headers: Check X-RateLimit-Remaining and X-RateLimit-Reset in API responses.
Can't find what you're looking for? Our support team is here to help.