Reve Remix
Playground
Try it on WavespeedAI!Reve Remix remixes images with Reve Art AI to produce creative variations and new compositions. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Features
ReVE Remix — Image-to-Image Creative Generator
ReVE Remix is an advanced image-to-image (I2I) generation model that reimagines or restyles an input image based on your textual prompt. It allows creators to transform portraits, scenes, or concept art while preserving structure and composition.
✨ Key Features
-
Creative Restyling Apply different artistic styles, lighting, and moods to existing images with natural consistency.
-
Reference-Guided Generation Accepts up to 4 reference images for accurate structure retention or multi-source blending.
-
Flexible Aspect Ratios Supports a wide range of formats — including
16:9,1:1,3:4and so on. -
High Prompt Fidelity Follows descriptive prompts closely while balancing creativity and realism.
🧩 How to Use
- Upload 1–4 reference images (PNG/JPEG/WEBP).
- Enter a prompt describing the desired transformation.
- Adjust aspect_ratio to fit your target format.
- (Optional) Set a seed for reproducible results.
- Click Run to generate your remix image.
💰 Pricing
- Just $0.04 per image generation !!!
📝 Notes
- Works best with clear, well-lit reference images.
- Highly detailed prompts yield more refined and visually consistent results.
- Complex compositions may require experimentation with aspect ratios.
Authentication
For authentication details, please refer to the Authentication Guide.
API Endpoints
Submit Task & Query Result
# Submit the task
curl --location --request POST "https://api.wavespeed.ai/api/v3/reve/remix" \
--header "Content-Type: application/json" \
--header "Authorization: Bearer ${WAVESPEED_API_KEY}" \
--data-raw '{
"aspect_ratio": "1:1"
}'
# Get the result
curl --location --request GET "https://api.wavespeed.ai/api/v3/predictions/${requestId}/result" \
--header "Authorization: Bearer ${WAVESPEED_API_KEY}"
Parameters
Task Submission Parameters
Request Parameters
| Parameter | Type | Required | Default | Range | Description |
|---|---|---|---|---|---|
| prompt | string | Yes | - | The positive prompt for the generation. | |
| reference_images | array | Yes | - | 1 ~ 4 items | A list of images to use as style references. |
| aspect_ratio | string | No | 1:1 | 21:9, 16:9, 4:3, 1:1, 3:4, 9:16, 9:21 | The aspect ratio of the generated media. |
| seed | integer | No | - | -1 ~ 2147483647 | The random seed to use for the generation. |
Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | integer | HTTP status code (e.g., 200 for success) |
| message | string | Status message (e.g., “success”) |
| data.id | string | Unique identifier for the prediction, Task Id |
| data.model | string | Model ID used for the prediction |
| data.outputs | array | 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.has_nsfw_contents | array | Array of boolean values indicating NSFW detection for each output |
| 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 |