Reve 2.1 Edit
Playground
Try it on WavespeedAI!Reve 2.1 Image Edit transforms existing images with natural-language edit instructions, preserving layout intelligence, accurate text rendering, and fine visual details for posters, ads, product visuals, and typography-rich designs. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Features
Reve 2.1 Edit
Reve 2.1 Edit applies natural-language instructions to an existing image. It is designed for precise visual changes, layout-aware recomposition, and detailed image refinement while preserving the parts of the source image that should remain unchanged.
Why Choose This?
-
Instruction-based image editing
Edit an existing image by describing the desired change in natural language. -
Precise visual refinement
Apply focused changes to objects, backgrounds, colors, lighting, layout, or style. -
Preservation-aware editing
Keep important parts of the original image unchanged while modifying selected details. -
Layout-aware recomposition
Adjust composition and visual structure while maintaining a coherent final image. -
Flexible output formats
Export edited images aspng,jpeg, orwebp.
Parameters
| Parameter | Required | Description |
|---|---|---|
| prompt | Yes | Text description of how to edit the reference image. |
| image | Yes | Reference image to edit. Public image URLs and uploaded images are supported. |
| aspect_ratio | No | Output aspect ratio, including auto and supported ratio presets. |
| output_format | No | Output format: png, jpeg, or webp. |
How to Use
- Upload your image — Provide the source image you want to edit.
- Write your edit prompt — Describe the desired changes and clearly state what should remain unchanged.
- Choose aspect ratio — Select an aspect ratio or use
autoto let the model choose the best layout. - Choose output format — Select
png,jpeg, orwebpwhen needed. - Submit — Generate the edited image and retrieve the output URL.
Pricing
| Output | Price |
|---|---|
| One image | $0.28 |
Best Use Cases
- Background editing — Replace, clean up, or restyle image backgrounds.
- Object changes — Remove, replace, recolor, or refine objects in an image.
- Product image refinement — Improve product visuals for marketing, ecommerce, and presentation.
- Layout adjustments — Recompose images while keeping the main subject and visual intent intact.
- Portrait and scene edits — Adjust style, lighting, mood, or environment in existing images.
Pro Tips
- Describe both the change and the elements that must stay unchanged.
- Use concise, concrete instructions for object removal, replacement, color, lighting, and background edits.
- Use a clear source image with the main subject visible.
- Use
pngfor high-quality general output,jpegfor smaller files, andwebpfor web-friendly images.
<ApiPage model={model}>
## Authentication
For authentication details, please refer to the [Authentication Guide](/docs-authentication).
## API Endpoints
### Submit Task & Query Result
## Parameters
### Task Submission Parameters
#### Request Parameters
#### Response Parameters
<SubmitResponse />
#### Result Request Parameters
| Parameter | Type | Required | Default | Description |
|-----------|------|----------|---------|-------------|
| id | string | Yes | - | Task ID |
#### Result Response Parameters
| Parameter | Type | Description |
|-----------|------|-------------|
| code | integer | HTTP status code (e.g., 200 for success) |
| message | string | Status message (e.g., "success") |
| data | object | The prediction data object containing all details |
| data.id | string | Unique identifier for the prediction, the ID of the prediction to get |
| data.model | string | Model ID used for the prediction |
| data.outputs | string | Array of URLs to the generated content (empty when status is not completed). |
| data.urls | object | Object containing related API endpoints |
| data.urls.get | string | URL to retrieve the prediction result |
| data.status | string | Status of the task: `created`, `processing`, `completed`, or `failed` |
| data.created_at | string | ISO timestamp of when the request was created (e.g., "2023-04-01T12:34:56.789Z") |
| data.error | string | Error message (empty if no error occurred) |
| data.timings | object | Object containing timing details |
| data.timings.inference | integer | Inference time in milliseconds |
</ApiPage>