Reve 2.1 Remix
Playground
Try it on WavespeedAI!Reve 2.1 Image Remix combines one or more reference images with a text prompt to create new image compositions, blending visual references while preserving layout intelligence, visual consistency, and fine image details for posters, ads, product visuals, and creative design workflows. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Features
Reve 2.1 Remix
Reve 2.1 Remix creates a new image from one or more reference images and a text prompt. It is designed for multi-reference composition, style transfer, subject blending, and controlled visual remixing across creative and production workflows.
Why Choose This?
-
Multi-reference image remixing
Combine one or more reference images into a new generated image. -
Prompt-guided composition
Describe how the references should be combined, transformed, or reinterpreted. -
Flexible creative control
Blend subjects, styles, layouts, and visual elements into a new composition. -
Reference-aware generation
Use image position tags in the prompt when you need to assign a specific role to a specific reference image. -
Flexible output formats
Export remixed images aspng,jpeg, orwebp.
Parameters
| Parameter | Required | Description |
|---|---|---|
| prompt | Yes | Instructions for combining or transforming the reference images. |
| images | Yes | Refer to them in the prompt with zero-based frame tags. |
| aspect_ratio | No | Output aspect ratio, including several supported ratio presets. |
| output_format | No | Output format: png, jpeg, or webp. |
How to Use
- Upload reference images — Provide one to eight images for the remix.
- Write your prompt — Describe the desired composition and how the references should be used.
- Choose aspect ratio — Select an aspect ratio to let the model choose the best layout.
- Choose output format — Select
png,jpeg, orwebp. - Submit — Generate the remixed image and retrieve the output URL.
Pricing
| Output | Price |
|---|---|
| One image | $0.28 |
Best Use Cases
- Multi-reference creative composition — Combine multiple visual sources into a new image.
- Style exploration — Transfer or blend visual direction from one or more references.
- Product and campaign concepting — Build concept images from product, branding, or lifestyle references.
- Character and subject blending — Mix subjects, outfits, scenes, or visual identities into a new composition.
- Creative development — Explore new visual directions from a controlled set of references.
Pro Tips
- Keep each reference image clear and relevant to the requested composition.
- Explicitly describe how each frame should contribute to the result.
- Use frame tags when the prompt refers to a specific reference image.
- Keep the composition request focused when using many reference images.
- 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>