Krea V2 Turbo API Documentation

Krea V2 Turbo API Documentation

Playground

Try it on WaveSpeedAI!

Krea 2 Turbo is Krea’s 12.9B open-weights diffusion transformer distilled to 8 steps, generating aesthetic-first images natively at 1K to 2K resolution in seconds, with both text-to-image and image-to-image supported. Ready-to-use REST inference API, best performance, no cold starts, affordable pricing.

Features

Krea 2 Turbo is Krea’s first from-scratch foundation image model, released as open weights. The Turbo checkpoint is distilled to 8 sampling steps and generates images natively from 1K up to 2K resolution with the aesthetic-first look Krea is known for — no oversaturated, over-smooth “AI look”.


Why Choose This?

  • Native 2K generation — 2048x2048 output straight from the model, no upscaler pass.
  • 8-step Turbo speed — distilled inference engine; images in seconds.
  • Aesthetic-first — trained for photographic realism and strong art direction.
  • Text-to-image and image-to-image — pass an image URL to restyle or vary it, with strength control.
  • Flexible aspect ratios — 15 presets from 1:3 to 3:1, plus vertical and widescreen formats.

Parameters

ParameterRequiredDescription
promptYesText description of the desired image
resolutionNo1k (default, ~1MP) or 2k (~4MP) total output pixels
aspect_ratioNoOne of 1:1 (default), 1:2, 2:1, 1:3, 3:1, 2:3, 3:2, 3:4, 4:3, 4:5, 5:4, 9:16, 16:9, 9:21, 21:9
imageNoSource image URL; when set, runs image-to-image
strengthNo0-1 (default 0.8); how strongly to repaint the source image
seedNoRandom seed; -1 for random

Pricing

ResolutionCost per image
1K$0.012
2K$0.024

Pro Tips

  • Krea 2 responds well to photographic language: film stock, lens, lighting terms.
  • For image-to-image, strength 0.4-0.6 keeps composition; 0.7-0.9 repaints more freely.
  • 2K is generated natively by the model — use it for final assets; 1K for iteration.

Authentication

For authentication details, please refer to the Authentication Guide.

API Endpoints

Submit Task & Query Result

set -euo pipefail

export WAVESPEED_API_KEY="your-api-key"

REQUEST_BODY=$(cat <<'JSON'
{
  "prompt": "A cinematic ocean wave at sunrise, highly detailed",
  "aspect_ratio": "1:1",
  "resolution": "1k",
  "strength": 0.8,
  "seed": -1
}
JSON
)

# 1. Submit the prediction.
SUBMIT_RESPONSE=$(curl --silent --show-error --fail-with-body \
  -X POST "https://api.wavespeed.ai/api/v3/wavespeed-ai/krea-v2/turbo" \
  -H "Authorization: Bearer ${WAVESPEED_API_KEY}" \
  -H "Content-Type: application/json" \
  -d "${REQUEST_BODY}")

TASK=$(printf '%s' "${SUBMIT_RESPONSE}" | jq 'if type == "object" and has("data") then .data else . end')
PREDICTION_ID=$(printf '%s' "${TASK}" | jq -r '.id // empty')
if [ -z "${PREDICTION_ID}" ]; then
  printf 'Submission response did not contain a prediction id
' >&2
  exit 1
fi
RESULT_URL=$(printf '%s' "${TASK}" | jq -r '.urls.get // empty')
if [ -z "${RESULT_URL}" ]; then RESULT_URL="https://api.wavespeed.ai/api/v3/predictions/${PREDICTION_ID}/result"; fi

# 2. Poll until the prediction finishes.
while true; do
  RESPONSE=$(curl --silent --show-error --fail-with-body \
    "${RESULT_URL}" \
    -H "Authorization: Bearer ${WAVESPEED_API_KEY}")
  RESULT=$(printf '%s' "${RESPONSE}" | jq 'if type == "object" and has("data") then .data else . end')
  STATUS=$(printf '%s' "${RESULT}" | jq -r '.status // empty')

  case "${STATUS}" in
    completed) printf '%s\n' "${RESULT}" | jq '.outputs'; break ;;
    failed|cancelled|timeout) printf '%s\n' "${RESULT}" | jq . >&2; exit 1 ;;
    created|processing) sleep 2 ;;
    *) printf 'Unexpected status: %s
' "${STATUS}" >&2; exit 1 ;;
  esac
done

Parameters

Task Submission Parameters

Request Parameters

ParameterTypeRequiredDefaultRangeDescription
promptstringYes-The positive prompt for the generation.
imagestringNo-Optional source image URL. When provided, the model runs image-to-image from it; the output keeps the source aspect ratio.
aspect_ratiostringNo1:11:1, 1:2, 2:1, 1:3, 3:1, 2:3, 3:2, 3:4, 4:3, 4:5, 5:4, 9:16, 16:9, 9:21, 21:9The aspect ratio of the generated image.
resolutionstringNo1k1k, 2kTotal output resolution tier: 1k (~1 megapixel) or 2k (~4 megapixels, generated natively).
strengthnumberNo0.80 ~ 1Image-to-image strength (0-1). Higher values repaint the source image more freely. Only used when `image` is set.
seedintegerNo-1-The random seed to use for the generation. -1 means a random seed will be used.
enable_sync_modebooleanNofalse-If set to `true`, the request attempts to wait for the generated result and return outputs in the same response. If the result is not ready within the sync wait window, the API can return a timeout body while the task continues processing. This option is only available via the API and is supported only by some models.
enable_base64_outputbooleanNofalse-If set to `true`, the prediction's `output` strings are returned as **naked base64** (no `data:<mime>;base64,` prefix). When `false` (default), outputs are returned as URLs pointing to our CDN.

Response Parameters

ParameterTypeDescription
codeintegerHTTP status code (e.g., 200 for success)
messagestringStatus message (e.g., “success”)
data.idstringUnique identifier for the prediction, Task Id
data.modelstringModel ID used for the prediction
data.outputsarrayOutput values, usually URL strings; some models return text strings or structured result objects (empty when status is not completed)
data.urlsobjectObject containing related API endpoints
data.urls.getstringURL to retrieve the prediction result
data.statusstringStatus of the task: created, processing, completed, or failed
data.created_atstringISO timestamp of when the request was created (e.g., “2023-04-01T12:34:56.789Z”)
data.errorstringError message (empty if no error occurred)
data.timingsobjectObject containing timing details
data.timings.inferenceintegerInference time in milliseconds

Result Request Parameters

ParameterTypeRequiredDefaultDescription
idstringYes-Task ID

Result Response Parameters

ParameterTypeDescription
codeintegerHTTP status code (e.g., 200 for success)
messagestringStatus message (e.g., “success”)
dataobjectThe prediction data object containing all details
data.idstringUnique identifier for the prediction
data.modelstringModel ID used for the prediction
data.outputsarray<string | object>Array of generated outputs (empty when status is not completed). Items are usually URL strings, but may be text strings or structured result objects, depending on the model.
data.urlsobjectObject containing related API endpoints
data.urls.getstringURL to poll for the prediction result
data.statusstringStatus: created, processing, completed, or failed
data.created_atstringISO timestamp of when the request was created
data.errorstringError message (empty if no error occurred)
data.timingsobjectObject containing timing details
data.timings.inferenceintegerInference time in milliseconds
© 2026 WaveSpeedAI. All rights reserved.