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

# Generate Image ⚠️

> ⚠️ **ALPHA FEATURE:** Generates an image from a text prompt using an image generation model. This endpoint is in alpha state and not recommended for production use. The API and functionality may change without notice.



## OpenAPI

````yaml api-reference/openapi.json post /generate/image
openapi: 3.1.0
info:
  version: 2.0.0
  title: Animus API
  description: >-
    Animus' API provides you with a variety of AI-driven capabilities. From
    generating text with our advanced large language models to creating
    customized content schedules, our API's applications are vast and versatile.

    Whether it's facilitating seamless conversation through predictive response
    or simulating a comprehensive content calendar, our advanced functionalities
    can cater to an array of feature requirements.
servers:
  - url: https://api.animusai.co/v2
security: []
paths:
  /generate/image:
    post:
      tags:
        - Image Generation
      summary: Generate Image ⚠️
      description: >-
        ⚠️ **ALPHA FEATURE:** Generates an image from a text prompt using an
        image generation model. This endpoint is in alpha state and not
        recommended for production use. The API and functionality may change
        without notice.
      operationId: generateImage
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                prompt:
                  type: string
                  description: The text prompt describing the image to generate
                  example: A woman checking her phone
              required:
                - prompt
      responses:
        '200':
          description: Successfully generated image
          content:
            application/json:
              schema:
                type: object
                properties:
                  output:
                    type: array
                    description: Array containing the generated image URL(s)
                    items:
                      type: string
                      format: uri
                      description: URL of the generated image
                    example:
                      - https://somesite.com/image.png
                required:
                  - output
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````