About Krea 2 Large
Krea 2 Large is Krea's text-to-image model. It generates high-fidelity images from text with strong aesthetic quality and fine detail.
The model supports a range of aspect ratios, a creativity control that trades prompt adherence for more imaginative results, and seed control for reproducible generation. It also accepts optional image style references, which can be weighted to control how strongly they influence the output.
Krea 2 Large cannot be fine-tuned. For fine-tuning, see Krea 2 Raw, the open-weights checkpoint Krea released as a base for customization.
Ready to build with Krea 2 Large?
Try Krea 2 Large in the Workbench to prompt it, compare outputs, and iterate on prompts without writing any code. When you're ready to ship, call the same model from our API and build your own apps on top of it.
curl -sSf -X POST https://hub.oxen.ai/api/ai/images/generate \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OXEN_API_KEY" \
-d '{
"model": "krea-v2-large-text-to-image",
"prompt": "A Van Gogh-tinged Provençal farmhouse under starry nights.",
"aspect_ratio": "1:1",
"creativity": "medium"
}'Request parameters
Every field Krea 2 Large accepts in the request body. See the API reference for response formats.
https://hub.oxen.ai/api/ai/images/generate| Field | Type | Required | Default | Description |
|---|---|---|---|---|
prompt | string | Yes | — | Text description of the image to generate. |
image_style_references | array<object>nullable | No | — | Optional list of reference image URLs that guide the style of the generated image. At most 10 entries. |
aspect_ratio | string | No | "1:1" | 1:14:33:216:92.35:14:52:39:16 |
creativity | string | No | "medium" | Controls how loosely the model interprets the prompt. Higher means more creative results that may drift from the prompt; low or raw values stay closer to the prompt.rawlowmediumhigh |
seed | integernullable | No | — | Random seed for reproducible generation. |
