Personalized Image Generator

Generate personalized images based on your preferences.


CURL

curl \
  --request POST \
  --url 'https://app.imggen.ai/v1/generate-personalized-image' \
  --header 'X-IMGGEN-KEY: YOUR_IMGGEN_API_KEY' \
  --header 'Content-Type: application/json' \
  --data '{"image":"@/path/to/reference/image.jpg", "prompt": "A cat under the snow with blue eyes" }' \

Request body

image

fileRequired

Reference image, Supported formats: jpg , jpeg , png.


prompt

textRequired

Text description to generate image.


samples

number
No. of images to be generated.

safe_filter

boolean
Filter explicit/unsafe content in output.

style

text
Desired artistic style for output.
Available Options
enhanceanimephotographicdigital-artcomic-bookfantasy-artanalog-filmneonpunkisometriclowpolyorigamiline-artcraft-claycinematic3d-modelpixel-arttexturefuturisticrealismwatercolorphotorealistic

Results

When images generated successfully, you’ll receive a JSON response:

{
  "success": true,
  "message": "Images Generated Successfully",
  "images": ["iVBORw0KGgoAAA...SUVORK5CYII="]
}