---
title: "Generate an image using AI"
method: POST
path: "/api/ai/images/generate/v2"
tags: ["AI Services"]
---

# Generate an image using AI

`POST /api/ai/images/generate/v2`

This endpoint is used to generate an image using AI. It accepts a JSON object containing the image generation parameters and returns the generated image. The ImageCon V2 model is our Fastest and basic model for generating images that can handle image sizes of 512x512 and 512x768.

## Request body

- object
  - `prompt` string[] — The prompt and descriptions to be used for generating the image.
  - `image_style` string — The style of the image to be generated. You can choose between `Abstract`, `Landscape`, `Portrait`, `Still Life`, `Animal`, `Anime`, `Architecture`, etc.
  - `output_type` 'url' | 'blob' — The type of output to be generated. You can choose between `url` and `blob` . `URL` will return a cloud-hosted Temporary URL for the generated image, you need to handle the image download on your end. `blob` will return the image as a base64 encoded string.
  - `orientation` 'square' | 'portrait' | 'landscape' — The orientation of the image to be generated. You can choose between `square` , `portrait`, and `landscape`. `square` will generate a square image of dimensions 512x512. `portrait` will generate a portrait image of dimensions 512x768. `landscape` will generate a landscape image of dimensions 768x512.

## Response `200`

Image generated successfully

- object
  - `status` string — Status indicating the success of the image generation.
  - `image` string — The generated image.
  - `processing_time` integer — The time taken to process the request, in milliseconds.
  - `processing_id` string — A universally unique identifier for the request. This can be used to track the request in the logs.
  - `processing_count` integer — The number of times the request has been processed. This is what is considered in the Billing Process. This is either the number of times the image is processed or the number of words that the server processes.

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `404` — Not Found
- `406` — Not Acceptable
- `500` — Internal Server Error

---

[API](https://skmtc.net/worqhat/apis/worqhat-ai-api-endpoints-2.md) · [All operations](https://skmtc.net/worqhat/apis/worqhat-ai-api-endpoints-2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/worqhat/worqhat-ai-api-endpoints-2/versions/fc369f69a3e6/schema)
