> ## Documentation Index
> Fetch the complete documentation index at: https://docs.goenhance.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Multiple Angles

> Move the camera around the subject. The subject itself is kept; only the viewpoint changes.

Pick a horizontal angle (`azimuth`), a vertical angle (`elevation`) and a shot distance (`distance`) — 8 x 4 x 3 = 96 camera poses in total. All three are optional and default to a straight-on, eye-level, medium shot.

**Pricing:** 1 token per image (= $0.02). Same rate as `qwen-image-edit`.

Returns an `img_uuid`; poll GET /api/v1/jobs/detail (or use `custom_callback_url`) to get the generated image.



## OpenAPI

````yaml api-reference/image-api/openapi-multiple-angles.json POST /api/v1/images/generations
openapi: 3.1.0
info:
  title: GoEnhance API - Multiple Angles
  description: Multiple Angles
  version: 1.0.0
servers:
  - url: https://api.goenhance.ai
security: []
paths:
  /api/v1/images/generations:
    post:
      tags:
        - ImageAPI
      summary: Multiple Angles
      description: >-
        Move the camera around the subject. The subject itself is kept; only the
        viewpoint changes.


        Pick a horizontal angle (`azimuth`), a vertical angle (`elevation`) and
        a shot distance (`distance`) — 8 x 4 x 3 = 96 camera poses in total. All
        three are optional and default to a straight-on, eye-level, medium shot.


        **Pricing:** 1 token per image (= $0.02). Same rate as
        `qwen-image-edit`.


        Returns an `img_uuid`; poll GET /api/v1/jobs/detail (or use
        `custom_callback_url`) to get the generated image.
      parameters:
        - name: Authorization
          in: header
          description: ''
          required: false
          example: '{{Authorization}}'
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                model:
                  type: string
                  enum:
                    - multiple-angles
                  description: Model name. Must be `multiple-angles`.
                image_url:
                  type: string
                  format: uri
                  description: Source image. The subject is kept; only the camera moves.
                azimuth:
                  type: string
                  enum:
                    - front view
                    - front-right quarter view
                    - right side view
                    - back-right quarter view
                    - back view
                    - back-left quarter view
                    - left side view
                    - front-left quarter view
                  default: front view
                  description: >-
                    Horizontal camera position, 45 degrees apart going clockwise
                    from the front.
                elevation:
                  type: string
                  enum:
                    - low-angle shot
                    - eye-level shot
                    - elevated shot
                    - high-angle shot
                  default: eye-level shot
                  description: 'Vertical camera angle: -30 / 0 / 30 / 60 degrees.'
                distance:
                  type: string
                  enum:
                    - close-up
                    - medium shot
                    - wide shot
                  default: medium shot
                  description: Camera distance from the subject.
                ratio:
                  type: string
                  enum:
                    - auto
                    - '1:1'
                    - '2:3'
                    - '3:2'
                    - '3:4'
                    - '4:3'
                    - '9:16'
                    - '16:9'
                  default: auto
                  description: Output aspect ratio. `auto` keeps the input image size.
                custom_callback_url:
                  type: string
                  format: uri
                  description: >-
                    Optional. A publicly accessible HTTPS URL. When the task
                    status changes (processing / success / failed), GoEnhance
                    sends a POST request to this URL. The request body is
                    identical to the response of GET /api/v1/jobs/detail. If
                    your server does not respond with HTTP 200, the notification
                    is retried up to 3 times, with a 3-second timeout per
                    attempt.
                  example: https://your-server.com/goenhance/callback
              required:
                - model
                - image_url
            example:
              model: qwen-image-edit
              prompt: Replace the background with a snowy mountain
              image_list:
                - url: https://your-cdn.com/input.jpg
              ratio: auto
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: integer
                  msg:
                    type: string
                  data:
                    type: object
                    properties:
                      img_uuid:
                        type: string
                    required:
                      - img_uuid
                required:
                  - code
                  - msg
                  - data
              examples:
                '1':
                  summary: Success
                  value:
                    code: 0
                    msg: Success
                    data:
                      img_uuid: c12b656c-747a-44fd-9c80-add79b0c52d5
                '2':
                  summary: Insufficient tokens
                  value:
                    code: 100
                    msg: tokens is not enough
                quota:
                  summary: API key quota exceeded
                  value:
                    code: 101
                    msg: 'API key quota exceeded: 4990 of 5000 tokens used (monthly)'
          headers: {}
        '401':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: integer
                  msg:
                    type: string
                required:
                  - code
                  - msg
          headers: {}
      deprecated: false
      security: []

````