Back to models
Live APIQwen Image Tools
Live APIQwen Image ToolsQwen Multi-Angles
qwen-multi-anglesCreate a new camera viewpoint from one to three reference images using explicit horizontal, vertical, and distance controls.
Model overview
- Endpoint
- /api/v1/images/generations
- Credit cost
- 5 credits / image
- Typical latency
- 20-60 sec
- Input and output
- 1-3 images → PNG or JPEG
Capabilities
- Camera orbit control
- Elevation control
- Distance control
- Reference preservation
Request parameters
| Parameter | Type | Requirement | Description |
|---|---|---|---|
| model | string | Required | Model identifier. Default: qwen-multi-angles |
| images | string[] | Required | One to three public source image URLs. |
| horizontal_angle | number | Optional | Horizontal camera rotation in degrees. Default: 0 |
| vertical_angle | number | Optional | Vertical camera rotation in degrees. Default: 0 |
| distance | number | Optional | Relative camera distance. Default: 1 |
Request example
curl https://qwenapi.org/api/v1/images/generations \
-H "Authorization: Bearer $QWEN_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "qwen-multi-angles",
"images": [
"https://example.com/product.jpg"
],
"horizontal_angle": 45,
"vertical_angle": 10,
"distance": 1,
"output_format": "jpeg"
}'The generation endpoint is asynchronous. Poll GET /api/v1/tasks/ with the same Bearer key.