Image Generation
Generate images and visual assets through OpenAI DALL-E and compatible models.
Image Generation
POST/v1/images/generations
Inference Key (Bearer zrv_...)
Generate images using models like openai/dall-e-3.
Inference Key TesterInteractive
Paste your Zorveus key to dynamically update all code snippets below.
Code Example
from openai import OpenAI
client = OpenAI(
base_url="https://api.zorveus.com/v1",
api_key="zrv_your_inference_key",
)
response = client.images.generate(
model="openai/dall-e-3",
prompt="A modern minimalist geometric workspace with emerald mint lighting",
size="1024x1024",
quality="standard",
n=1,
)
print(response.data[0].url)Was this page helpful?
Edit this page on GitHub