Generate images from text prompts via the OpenDunes image generation endpoint.
The image generation endpoint produces images from natural language prompts. It is OpenAI-compatible, so the openai SDK's images.generate call works without modification — just swap the base URL. It maps to POST /v1/images/generations.
Images are stored on OpenDunes object storage and returned as a signed, time-limited URL in data[].url (not raw base64), so responses stay small. If the provider returns no image, the call fails with 502 no_image and you are not charged.
Editing and variations (
images.edit,images.createVariation) are not yet supported — only generation is live.
Image generation is billed per output image — n images cost n × the model's per-image rate. Rates are shown in the model catalog. See the image API reference.