Lucy Image 2

Model Information

Display Name: Lucy Image 2

API Model ID: decart/lucy-image-2

Category: Image To Image

Description: Lucy Image 2 is Decart's image editing model. Send an image plus an edit instruction — optionally with a reference image showing exactly what to add or change — and it applies the edit while preserving the subject's identity, pose and the core structure of the original. **Key Features:** - Precise image-to-image editing from a text prompt - Optional reference image to guide the edit (a specific product, logo, accessory or style) - Preserves identity, pose and structure - Two output sizes: 720p (quality) and 480p (fast/cheap previews) - Optional automatic prompt enhancement **Capabilities:** - Clothing changes and character/object replacement - Color changes, adding accessories - Background transformations - Style transfer **Best For:** - Product and fashion swaps on existing photos - Fast, cheap edit previews (480p) before higher-quality output (720p) - Companion stills for videos edited with Lucy 2.5 **Technical Specs:** - Input: image (JPEG/PNG/WebP) — `images[0]`; optional reference in `images[1]` or `parameters.reference_image` - Output: 720p (720×1280) or 480p (480×832), PNG - Prompt: best results with 20-30 words focused on one specific change **Parameters:** | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | images[0] | URL / base64 | Yes | Image to edit | | prompt | string | Yes | Edit instruction | | images[1] / reference_image | URL / base64 | No | Reference image guiding the edit | | resolution | string | No | `720p` (default) or `480p` — affects price | | seed | integer | No | 0..4294967295 | | enhance_prompt | boolean | No | Auto-enhance the prompt (default true) | **Pricing:** $0.03 per image at 720p, $0.015 at 480p.

How to Use This Model

To use Lucy Image 2 via the HInow.ai API, use the model ID: decart/lucy-image-2

API Request Example (Image Generation)


POST https://api.hinow.ai/v1/images
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

{
  "model": "decart/lucy-image-2",
  "prompt": "Your image description here"
}
              

Pricing

  • total: $0

Available Parameters

  • resolution: Output size: 720p (720x1280, $0.03) or 480p (480x832, $0.015). (Options: 480p, 720p)
  • reference_image: Optional reference image (URL or base64) guiding the edit. images[1] is accepted as an alias.
  • seed: Random seed for reproducibility (0-4294967295).
  • enhance_prompt: Let Decart rewrite/enhance the prompt automatically.

Quick Reference

To use this model, set: "model": "decart/lucy-image-2"

Featured: No

Documentation: https://hinow.ai/models/decart/lucy-image-2

API Endpoint: https://api.hinow.ai/v1

Back to Models

Lucy Image 2

decart/lucy-image-2

$0.000000
per image

About

Lucy Image 2 is Decart's image editing model. Send an image plus an edit instruction — optionally with a reference image showing exactly what to add or change — and it applies the edit while preserving the subject's identity, pose and the core structure of the original.

Key Features:

  • Precise image-to-image editing from a text prompt
  • Optional reference image to guide the edit (a specific product, logo, accessory or style)
  • Preserves identity, pose and structure
  • Two output sizes: 720p (quality) and 480p (fast/cheap previews)
  • Optional automatic prompt enhancement

Capabilities:

  • Clothing changes and character/object replacement
  • Color changes, adding accessories
  • Background transformations
  • Style transfer

Best For:

  • Product and fashion swaps on existing photos
  • Fast, cheap edit previews (480p) before higher-quality output (720p)
  • Companion stills for videos edited with Lucy 2.5

Technical Specs:

  • Input: image (JPEG/PNG/WebP) — images[0]; optional reference in images[1] or parameters.reference_image
  • Output: 720p (720×1280) or 480p (480×832), PNG
  • Prompt: best results with 20-30 words focused on one specific change

Parameters:

ParameterTypeRequiredDescription
images[0]URL / base64YesImage to edit
promptstringYesEdit instruction
images[1] / reference_imageURL / base64NoReference image guiding the edit
resolutionstringNo720p (default) or 480p — affects price
seedintegerNo0..4294967295
enhance_promptbooleanNoAuto-enhance the prompt (default true)

Pricing: $0.03 per image at 720p, $0.015 at 480p.

Capabilities

Image To Image

Parameters

resolution

Output size: 720p (720x1280, $0.03) or 480p (480x832, $0.015).

480p720p
reference_image

Optional reference image (URL or base64) guiding the edit. images[1] is accepted as an alias.

seed

Random seed for reproducibility (0-4294967295).

enhance_prompt

Let Decart rewrite/enhance the prompt automatically.

Code Examples

curl -X POST https://api.hinow.ai/v1/images \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $HINOW_API_KEY" \
  -d '{
    "model": "decart/lucy-image-2",
    "prompt": "Transform this image into cyberpunk style",
    "images": [
      "https://example.com/image1.jpg",
      "data:image/png;base64,iVBORw0KGgo..."
    ],
    "parameters": {
      "resolution": "480p",
      "reference_image": "",
      "seed": "",
      "enhance_prompt": ""
    }
  }'