Back to models
Live APIQwen Image Tools

Qwen Multi-Angles

qwen-multi-angles

Create 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

ParameterTypeRequirementDescription
modelstringRequiredModel identifier. Default: qwen-multi-angles
imagesstring[]RequiredOne to three public source image URLs.
horizontal_anglenumberOptionalHorizontal camera rotation in degrees. Default: 0
vertical_anglenumberOptionalVertical camera rotation in degrees. Default: 0
distancenumberOptionalRelative 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.