Loading...
Loading...
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.
npx skill4agent add eachlabs/skills image-upscalingcurl -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 |
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"
}'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"
}'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"
}'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"
}'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"
}'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"
}'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"
}'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"
}'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"
}'# 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"
}'"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]."| Mode | Best For | Speed | Quality |
|---|---|---|---|
| Final production images, print materials, important projects | Slower | Highest |
| Quick previews, batch testing, web thumbnails | Faster | Good |
session_id# 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 |
|---|---|---|
| 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-senseimage-generationimage-editingold-photo-restoration