Skip to main content
ArtEmotion
Image

Krea v2 Large

Credit-based pricing.

Krea v2 Large preview
Output
image
Aspect ratio
1:1, 4:3, 3:2, 16:9, 2.35:1, 4:5, 2:3, 9:16

Example prompt

Portrait of a young woman with flowers, butterflies and galaxies emerging from her hair, soft cinematic lighting, dreamlike atmosphere, fantasy realism, highly detailed, masterpiece
Try this prompt →
LLM-ready

API & LLM schema

Exact request contract for this model. Agents can fetch it from /api/v1/models?id=krea/v2/large/text-to-image.

POST/api/v1/generate24 fields · 2 required
FieldTypeRequirementContract
model_idconstantRequiredArtEmotion model identifier.
extraobjectOptionalModel-specific settings may also be nested here.
max_creditsnumberOptionalReject before submission if the estimated list price exceeds this cap. · Range: 1–…
webhook_urlstringOptionalFormat: uri
webhook_secretstringOptionalOptional model input.
folder_idstringOptionalOptional model input.
promptstringRequiredOptional model input.
creativitystringOptionalControls how loosely the model interprets the prompt. Higher values produce more creative results that may drift from the prompt; lower values stay closer. · Allowed: raw, low, medium, high · Default: medium
seedintegerOptionalRandom seed for reproducible generation.
style_idstringOptionalKrea style preset ID (a LoRA-based preset style identifier).
style_strengthnumberOptionalInfluence strength for the style (-2 to 2). · Default: 1 · Range: -2–2
style_id_2stringOptionalA second Krea style preset ID.
style_strength_2numberOptionalInfluence strength for style 2. · Default: 1 · Range: -2–2
style_id_3stringOptionalA third Krea style preset ID.
style_strength_3numberOptionalInfluence strength for style 3. · Default: 1 · Range: -2–2
image_style_ref_urlstringOptionalPublicly accessible URL of a reference image to guide style.
image_style_ref_strengthnumberOptionalInfluence strength for the style reference (-2 to 2). · Default: 1 · Range: -2–2
image_style_ref_url_2stringOptionalA second reference image URL.
image_style_ref_strength_2numberOptionalInfluence strength for style reference 2. · Default: 1 · Range: -2–2
image_style_ref_url_3stringOptionalA third reference image URL.
image_style_ref_strength_3numberOptionalInfluence strength for style reference 3. · Default: 1 · Range: -2–2
moodboard_idstringOptionalKrea moodboard UUID to guide the generation's mood and atmosphere.
moodboard_strengthnumberOptionalInfluence strength of the moodboard (0 to 1). · Default: 0.23 · Range: 0–1
aspect_ratiostringOptionalAllowed: 1:1, 4:3, 3:2, 16:9, 2.35:1, 4:5, 2:3, 9:16
Minimal request example
{
  "model_id": "krea/v2/large/text-to-image",
  "prompt": "Portrait of a young woman with flowers, butterflies and galaxies emerging from her hair, soft cinematic lighting, dreamlike atmosphere, fantasy realism, highly detailed, masterpiece"
}
Raw JSON Schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.artemotion.ai/api/v1/models?id=krea%2Fv2%2Flarge%2Ftext-to-image",
  "title": "Krea v2 Large generation request",
  "description": "Request body accepted by POST /api/v1/generate for krea/v2/large/text-to-image.",
  "type": "object",
  "properties": {
    "model_id": {
      "type": "string",
      "const": "krea/v2/large/text-to-image",
      "description": "ArtEmotion model identifier."
    },
    "extra": {
      "type": "object",
      "additionalProperties": true,
      "description": "Model-specific settings may also be nested here."
    },
    "max_credits": {
      "type": "number",
      "minimum": 1,
      "description": "Reject before submission if the estimated list price exceeds this cap."
    },
    "webhook_url": {
      "type": "string",
      "format": "uri",
      "maxLength": 2048
    },
    "webhook_secret": {
      "type": "string",
      "maxLength": 512
    },
    "folder_id": {
      "type": "string"
    },
    "prompt": {
      "type": "string"
    },
    "creativity": {
      "title": "Creativity",
      "description": "Controls how loosely the model interprets the prompt. Higher values produce more creative results that may drift from the prompt; lower values stay closer.",
      "default": "medium",
      "type": "string",
      "enum": [
        "raw",
        "low",
        "medium",
        "high"
      ]
    },
    "seed": {
      "title": "Seed",
      "description": "Random seed for reproducible generation.",
      "type": "integer"
    },
    "style_id": {
      "title": "Style ID",
      "description": "Krea style preset ID (a LoRA-based preset style identifier).",
      "type": "string"
    },
    "style_strength": {
      "title": "Style Strength",
      "description": "Influence strength for the style (-2 to 2).",
      "default": 1,
      "type": "number",
      "minimum": -2,
      "maximum": 2,
      "multipleOf": 0.05
    },
    "style_id_2": {
      "title": "Style ID 2",
      "description": "A second Krea style preset ID.",
      "type": "string"
    },
    "style_strength_2": {
      "title": "Style Strength 2",
      "description": "Influence strength for style 2.",
      "default": 1,
      "type": "number",
      "minimum": -2,
      "maximum": 2,
      "multipleOf": 0.05
    },
    "style_id_3": {
      "title": "Style ID 3",
      "description": "A third Krea style preset ID.",
      "type": "string"
    },
    "style_strength_3": {
      "title": "Style Strength 3",
      "description": "Influence strength for style 3.",
      "default": 1,
      "type": "number",
      "minimum": -2,
      "maximum": 2,
      "multipleOf": 0.05
    },
    "image_style_ref_url": {
      "title": "Style Ref URL",
      "description": "Publicly accessible URL of a reference image to guide style.",
      "type": "string"
    },
    "image_style_ref_strength": {
      "title": "Style Ref Strength",
      "description": "Influence strength for the style reference (-2 to 2).",
      "default": 1,
      "type": "number",
      "minimum": -2,
      "maximum": 2,
      "multipleOf": 0.05
    },
    "image_style_ref_url_2": {
      "title": "Style Ref URL 2",
      "description": "A second reference image URL.",
      "type": "string"
    },
    "image_style_ref_strength_2": {
      "title": "Style Ref Strength 2",
      "description": "Influence strength for style reference 2.",
      "default": 1,
      "type": "number",
      "minimum": -2,
      "maximum": 2,
      "multipleOf": 0.05
    },
    "image_style_ref_url_3": {
      "title": "Style Ref URL 3",
      "description": "A third reference image URL.",
      "type": "string"
    },
    "image_style_ref_strength_3": {
      "title": "Style Ref Strength 3",
      "description": "Influence strength for style reference 3.",
      "default": 1,
      "type": "number",
      "minimum": -2,
      "maximum": 2,
      "multipleOf": 0.05
    },
    "moodboard_id": {
      "title": "Moodboard ID",
      "description": "Krea moodboard UUID to guide the generation's mood and atmosphere.",
      "type": "string"
    },
    "moodboard_strength": {
      "title": "Moodboard Strength",
      "description": "Influence strength of the moodboard (0 to 1).",
      "default": 0.23,
      "type": "number",
      "minimum": 0,
      "maximum": 1,
      "multipleOf": 0.05
    },
    "aspect_ratio": {
      "type": "string",
      "enum": [
        "1:1",
        "4:3",
        "3:2",
        "16:9",
        "2.35:1",
        "4:5",
        "2:3",
        "9:16"
      ]
    }
  },
  "required": [
    "model_id",
    "prompt"
  ],
  "additionalProperties": false
}

FAQ

How much does Krea v2 Large cost on ArtEmotion?

Credit-based pricing. You pay in ArtEmotion credits — every plan and top-up converts USD to credits at a fixed rate.

Do I get my credits back if Krea v2 Large fails?

Yes — failed generations are never charged. The credits are released back to your balance automatically.

Can I call Krea v2 Large from the API?

Yes. Use POST /api/v1/generate with model_id: "krea/v2/large/text-to-image". See the API reference for the full schema.

Where are my generations stored?

Every output is saved to your personal Library. You can export or delete everything any time from Privacy & deletion.

Ready to generate with Krea v2 Large?

Start now →

No commitment. New accounts get 50 free credits on signup. See pricing.