Routeway Logo
Back to Models
Stability

SDXL ArliMix V1

Available

Description

Image generation using SDXL ArliMix V1 via Arli AI. Cartoon-like generation.

At a Glance

Key pricing and model details available for this model.

Starting price

$0.0094

per image

Hallucination rate

0%

Supported sizes

512x512, 768x768, 1024x1024, 1408x1408, 576x1024, 1024x576, 768x1024, 1024x768

Image Pricing

Image generation pricing currently exposed by the models API.

Starting price

$0.0094

per image

Resolution Pricing

Resolution-specific prices returned for this image model.

1024x1024$0.0094
1024x576$0.0094
1024x768$0.0094
1408x1408$0.0094
512x512$0.0094
576x1024$0.0094
768x1024$0.0094
768x768$0.0094
auto$0.0094

Image Details

Additional image-related pricing and format support.

Pricing unitper image
Supported sizes
512x512
768x768
1024x1024
1408x1408
576x1024
1024x576
768x1024
1024x768

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: 'sdxl-arlimix-v1',
    prompt: 'A futuristic city skyline at sunset',
    size: '1024x1024',
  })
});

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