Routeway Logo
Back to Models
Zhipu

Z Image Turbo LoRA

Available

Description

Z Image Turbo LoRA supports up to 3 LoRAs for custom styles, characters, or brand identity.

At a Glance

Key pricing and model details available for this model.

Starting price

$0.02

per image

Hallucination rate

0%

Supported sizes

256x256, 512x512, 768x768, 1024x1024, 1280x720, 720x1280, 1536x1024, 1024x1536, 1536x1536

Image Pricing

Image generation pricing currently exposed by the models API.

Starting price

$0.02

per image

Resolution Pricing

Resolution-specific prices returned for this image model.

1024x1024$0.02
1024x1536$0.02
1280x720$0.02
1536x1024$0.02
1536x1536$0.02
256x256$0.02
512x512$0.02
720x1280$0.02
768x768$0.02
auto$0.02

Image Details

Additional image-related pricing and format support.

Pricing unitper image
Supported sizes
256x256
512x512
768x768
1024x1024
1280x720
720x1280
1536x1024
1024x1536
1536x1536

Feature Availability

Capabilities explicitly listed in the current payload.

Image

Available

Yes

Vision

Not listed

No

Function calling

Not listed

No

Reasoning

Not listed

No

Code Samples

Quick start with the Routeway API

const response = await fetch('https://api.routeway.ai/v1/images/generations', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer <YOUR_API_KEY>',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    model: 'z-image-turbo-lora',
    prompt: 'A futuristic city skyline at sunset',
    size: '1024x1024',
  })
});

const imageData = await response.json();
console.log(imageData);