Qwen Image Edit 2509 Multiple Angles is an AI image editing model that generates multiple-angle views of objects or scenes from a single image. Transform perspectives and create diverse viewpoints with text prompts. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Idle

$0.025per run·~40 / $1

Qwen Image Edit 2509 Multiple Angles generates new camera perspectives of a subject from reference images. Control horizontal rotation, vertical tilt, and camera distance to create realistic multi-angle views — perfect for product photography and 3D visualization without reshooting.
Multi-angle generation Create new camera perspectives from up to 3 reference images.
Precise horizontal rotation Rotate the viewpoint in 5 positions: -90 (left), -45, 0 (front), 45, 90 (right).
Vertical tilt control Adjust camera elevation: -30 (low angle), 0 (eye level), 30 (elevated), 60 (high angle).
Camera distance Control zoom level: 0 = close-up, 1 = medium shot, 2 = wide shot.
Optional prompt guidance Add text descriptions to refine the generated perspective.
| Parameter | Required | Description |
|---|---|---|
| images | Yes | Reference images, up to 3 (click "+ Add Item") |
| horizontal_angle | No | Horizontal rotation: -90, -45, 0, 45, 90 (default: 90) |
| vertical_angle | No | Vertical tilt: -30, 0, 30, 60 (default: 0) |
| distance | No | Camera distance: 0 (close-up), 1 (medium), 2 (wide) (default: 1) |
| prompt | No | Text description to guide the output |
| size | No | Custom output size |
| seed | No | Random seed for reproducibility (-1 for random) |
| output_format | No | Output format: jpeg (default), png, webp |
| enable_base64_output | No | Return BASE64 string instead of URL (API only) |
| enable_sync_mode | No | Wait for result before returning response (API only) |
Horizontal Angle (horizontal_angle):
Vertical Angle (vertical_angle):
Distance:
| Output | Cost |
|---|---|
| Per image | $0.025 |
Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/wavespeed-ai/qwen-image/edit-2509-multiple-angles with your input as JSON. The endpoint returns a prediction id; poll the prediction endpoint until status flips to completed, then read the output URL from data.outputs[0]. Examples for Qwen Image Edit 2509 Multiple Angles below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/wavespeed-ai/qwen-image/edit-2509-multiple-angles" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $WAVESPEED_API_KEY" \
-d '{
"horizontal_angle": 0,
"vertical_angle": 0,
"distance": 1,
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"seed": -1,
"output_format": "jpeg",
"enable_base64_output": false,
"enable_sync_mode": false
}'
# Response includes a prediction id. Poll for the result:
curl -X GET "https://api.wavespeed.ai/api/v3/predictions/{request_id}/result" \
-H "Authorization: Bearer $WAVESPEED_API_KEY"
# When status is "completed", read the output from data.outputs[0].// npm install wavespeed
const WaveSpeed = require('wavespeed');
const client = new WaveSpeed(); // reads WAVESPEED_API_KEY from env
const result = await client.run("wavespeed-ai/qwen-image/edit-2509-multiple-angles", {
"horizontal_angle": 0,
"vertical_angle": 0,
"distance": 1,
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"seed": -1,
"output_format": "jpeg",
"enable_base64_output": false,
"enable_sync_mode": false
});
console.log(result.outputs[0]); // → URL of the generated output# pip install wavespeed
import wavespeed
output = wavespeed.run(
"wavespeed-ai/qwen-image/edit-2509-multiple-angles",
{
"horizontal_angle": 0,
"vertical_angle": 0,
"distance": 1,
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"seed": -1,
"output_format": "jpeg",
"enable_base64_output": false,
"enable_sync_mode": false
}
)
print(output["outputs"][0]) # → URL of the generated outputQwen Image Edit 2509 Multiple Angles is a WaveSpeedAI model for image editing, exposed as a REST API on WaveSpeedAI. Qwen Image Edit 2509 Multiple Angles is an AI image editing model that generates multiple-angle views of objects or scenes from a single image. Transform perspectives and create diverse viewpoints with text prompts. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing. You can call it programmatically or try it from the playground above.
POST your input parameters to the model's REST endpoint (shown in the API tab of this playground) with your WaveSpeedAI API key in the Authorization header. Submission returns a prediction ID; poll the prediction endpoint until status flips to "completed", then read the output URL from the result. The playground generates a ready-to-paste code sample in Python, JavaScript, or cURL for whatever inputs you've set. Full request/response shape is documented at https://wavespeed.ai/docs/docs-api/wavespeed-ai/qwen-image-edit-2509-multiple-angles.
Qwen Image Edit 2509 Multiple Angles starts at $0.025 per run. That figure is the base price — the final charge scales with the parameters you set in the form (output size, length, count, references, or whatever knobs this model exposes), so a higher-quality or larger output costs more than a minimal one. The exact cost for your current input is shown live next to the Generate button before you submit, and the actual per-call charge is recorded on the prediction afterwards.
Key inputs: `prompt`, `images`, `seed`, `distance`, `enable_base64_output`, `enable_sync_mode`. The full JSON schema (types, defaults, allowed values) is rendered above the Generate button and mirrored in the API reference at https://wavespeed.ai/docs/docs-api/wavespeed-ai/qwen-image-edit-2509-multiple-angles.
Average end-to-end generation time on WaveSpeedAI is around 46 seconds per request — measured across recent runs. Queue time scales with global demand; live status is visible in the prediction record.
Commercial usage rights depend on the model's license, set by its provider (WaveSpeedAI). The license summary appears on the model card above; see WaveSpeedAI's Terms of Service for platform-level conditions.