Upscale images using each::sense AI. Enhance resolution for web, print, large format displays, with options for face enhancement, noise reduction, and AI art optimization.
Upscale and enhance images using each::sense. This skill provides AI-powered image upscaling from 2x to 16x resolution with intelligent enhancement options for faces, noise reduction, and detail preservation.
curl -X POST https://sense.eachlabs.run/chat \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-H "Accept: text/event-stream" \
-d '{
"message": "Upscale this image 4x for print quality",
"image_urls": ["https://example.com/my-image.jpg"],
"mode": "max"
}'
| Scale | Output Size (from 1024px) | Best Use Case |
|---|---|---|
| 2x | 2048px | Web images, social media, thumbnails |
| 4x | 4096px | Print materials, high-res displays |
| 8x | 8192px | Large format prints, posters |
| 16x | 16384px | Billboards, exhibition displays |
Perfect for improving image quality for websites, social media posts, and digital marketing.
curl -X POST https://sense.eachlabs.run/chat \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-H "Accept: text/event-stream" \
-d '{
"message": "Upscale this web image 2x. Optimize for fast loading while improving sharpness and clarity. The image will be used on a website hero section.",
"image_urls": ["https://example.com/website-hero.jpg"],
"mode": "eco"
}'
High-quality upscaling for brochures, flyers, magazines, and other print materials requiring 300 DPI.
curl -X POST https://sense.eachlabs.run/chat \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-H "Accept: text/event-stream" \
-d '{
"message": "Upscale this image 4x for print production. I need 300 DPI quality for a magazine spread. Preserve all fine details and ensure crisp edges.",
"image_urls": ["https://example.com/magazine-photo.jpg"],
"mode": "max"
}'
Extreme upscaling for billboards, trade show displays, and wall-sized prints.
curl -X POST https://sense.eachlabs.run/chat \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-H "Accept: text/event-stream" \
-d '{
"message": "Upscale this image 8x for a large format banner print. The final output will be displayed on a 10 foot wide trade show backdrop. Maximize detail enhancement and ensure no artifacts.",
"image_urls": ["https://example.com/tradeshow-banner.jpg"],
"mode": "max"
}'
Intelligent facial restoration that enhances eyes, skin texture, and facial features while upscaling portraits.
curl -X POST https://sense.eachlabs.run/chat \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-H "Accept: text/event-stream" \
-d '{
"message": "Upscale this portrait 4x with face enhancement enabled. Restore facial details, enhance eyes, improve skin texture while keeping it natural. This is a headshot photo.",
"image_urls": ["https://example.com/portrait-headshot.jpg"],
"mode": "max"
}'
Clean up grainy, compressed, or low-quality images while increasing resolution.
curl -X POST https://sense.eachlabs.run/chat \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-H "Accept: text/event-stream" \
-d '{
"message": "Upscale this noisy low-light photo 4x. Apply aggressive noise reduction while preserving important details. The image was taken in low light conditions and has visible grain and compression artifacts.",
"image_urls": ["https://example.com/low-light-photo.jpg"],
"mode": "max"
}'
Restore and upscale vintage photographs, old family photos, and historical images.
curl -X POST https://sense.eachlabs.run/chat \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-H "Accept: text/event-stream" \
-d '{
"message": "Upscale and restore this old family photograph from the 1970s. The image is faded, slightly damaged, and low resolution. Enhance to 4x while restoring colors, fixing damage, and improving clarity. Preserve the vintage aesthetic.",
"image_urls": ["https://example.com/old-family-photo.jpg"],
"mode": "max"
}'
Enhance AI-generated artwork while preserving artistic style and avoiding artifacts.
curl -X POST https://sense.eachlabs.run/chat \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-H "Accept: text/event-stream" \
-d '{
"message": "Upscale this AI-generated artwork 4x for print. Preserve the artistic style and enhance fine details. This is digital art created by an AI image generator - avoid adding unwanted textures or changing the artistic style.",
"image_urls": ["https://example.com/ai-artwork.png"],
"mode": "max"
}'
E-commerce optimized upscaling for product photography with detail enhancement.
curl -X POST https://sense.eachlabs.run/chat \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-H "Accept: text/event-stream" \
-d '{
"message": "Upscale this product photo 4x for e-commerce use. Enhance product details, improve sharpness on edges and textures. The image is of a leather handbag and needs to show material texture clearly for zoom functionality.",
"image_urls": ["https://example.com/product-handbag.jpg"],
"mode": "max"
}'
Enhance individual video frames or thumbnails extracted from video content.
curl -X POST https://sense.eachlabs.run/chat \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-H "Accept: text/event-stream" \
-d '{
"message": "Upscale this video frame 4x. This is a still frame extracted from 1080p video footage. Enhance it to 4K quality while reducing compression artifacts and maintaining natural motion blur where present.",
"image_urls": ["https://example.com/video-frame.jpg"],
"mode": "max"
}'
Process multiple images with consistent settings using session persistence.
# First image in batch
curl -X POST https://sense.eachlabs.run/chat \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-H "Accept: text/event-stream" \
-d '{
"message": "Upscale this product image 4x with face enhancement and noise reduction. This is the first of a series of product photos I need processed.",
"image_urls": ["https://example.com/product-001.jpg"],
"session_id": "batch-upscale-products",
"mode": "max"
}'
# Second image (same session maintains settings)
curl -X POST https://sense.eachlabs.run/chat \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-H "Accept: text/event-stream" \
-d '{
"message": "Upscale this next product image using the same settings as before.",
"image_urls": ["https://example.com/product-002.jpg"],
"session_id": "batch-upscale-products"
}'
# Third image
curl -X POST https://sense.eachlabs.run/chat \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-H "Accept: text/event-stream" \
-d '{
"message": "Continue with the same upscaling settings for this product image.",
"image_urls": ["https://example.com/product-003.jpg"],
"session_id": "batch-upscale-products"
}'
When requesting upscaling, include these details in your prompt:
"Upscale this [image type] [scale factor] for [use case].
[Special requirements like face enhancement or noise reduction].
[Additional context about the source image quality or intended output]."
Ask your users before processing:
"Do you want fast & cheap, or high quality?"
| Mode | Best For | Speed | Quality |
|---|---|---|---|
max | Final production images, print materials, important projects | Slower | Highest |
eco | Quick previews, batch testing, web thumbnails | Faster | Good |
Use session_id to iterate on upscaling results:
# Initial upscale
curl -X POST https://sense.eachlabs.run/chat \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-H "Accept: text/event-stream" \
-d '{
"message": "Upscale this photo 4x for print",
"image_urls": ["https://example.com/photo.jpg"],
"session_id": "upscale-project-001"
}'
# Request adjustments
curl -X POST https://sense.eachlabs.run/chat \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-H "Accept: text/event-stream" \
-d '{
"message": "The result looks good but can you also apply face enhancement and reduce noise?",
"session_id": "upscale-project-001"
}'
# Request different scale
curl -X POST https://sense.eachlabs.run/chat \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-H "Accept: text/event-stream" \
-d '{
"message": "Actually I need 8x for a larger print. Can you upscale it further?",
"session_id": "upscale-project-001"
}'
| Error | Cause | Solution |
|---|---|---|
Failed to create prediction: HTTP 422 | Insufficient balance | Top up at eachlabs.ai |
| Image too large | Source image exceeds maximum dimensions | Resize source image before upscaling |
| Timeout | Large scale factors take longer | Set client timeout to minimum 10 minutes |
| Unsupported format | Invalid image format | Use JPEG, PNG, or WebP input |
each-sense - Core API documentationimage-generation - Generate images from text promptsimage-editing - Edit and modify existing imagesold-photo-restoration - Specialized restoration for vintage photos