Routeway Logo
Back to Models
leonardoLE

Lucid Origin

Available

Description

Leonardo.AI's most versatile and responsive model, built to handle everything from sharp graphic design and HD renders to complex creative directions. It excels at following detailed prompts, rendering accurate text, and mastering styles ranging from stylized concept art to realistic product mockups.

At a Glance

Key pricing and model details available for this model.

Starting price

$0.03

per image

Hallucination rate

0%

Supported sizes

16:9, 9:16, 1:1, 4:3, 3:4, 3:2, 2:3, 4:5, 5:4, 2:1, 1:2, 3:1, 1:3

Image Pricing

Image generation pricing currently exposed by the models API.

Starting price

$0.03

per image

Resolution Pricing

Resolution-specific prices returned for this image model.

1:1$0.03
1:2$0.03
1:3$0.03
16:9$0.03
2:1$0.03
2:3$0.03
3:1$0.03
3:2$0.03
3:4$0.03
4:3$0.03
4:5$0.03
5:4$0.03
9:16$0.03
auto$0.03

Image Details

Additional image-related pricing and format support.

Pricing unitper image
Supported sizes
16:9
9:16
1:1
4:3
3:4
3:2
2:3
4:5
5:4
2:1
1:2
3:1
1:3

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

Benchmark Summary

Overall image benchmark metrics currently available. CI95: -11/11

Overall ELO

1106

Rank

#38

Appearances

3,598

Category Breakdown

Available per-category ELO results from the current benchmark payload.

Subject People: Groups Activities

363 appearances · CI95 -37/37

1179

ELO

Style Traditional Art

232 appearances · CI95 -46/46

1162

ELO

Style Vintage Retro

153 appearances · CI95 -58/58

1156

ELO

Style General Photorealistic

1,468 appearances · CI95 -18/18

1132

ELO

Subject Nature Landscapes

381 appearances · CI95 -35/35

1132

ELO

Subject Fantasy Mythical

519 appearances · CI95 -30/30

1122

ELO

Style Anime

255 appearances · CI95 -44/44

1120

ELO

Subject Physical Spaces

468 appearances · CI95 -32/32

1107

ELO

Style Cartoon Illustration

327 appearances · CI95 -39/39

1105

ELO

Subject Commercial

216 appearances · CI95 -47/47

1105

ELO

Subject Futuristic Sci-fi

418 appearances · CI95 -34/34

1098

ELO

Style Graphic Design Digital Rendering

978 appearances · CI95 -22/22

1057

ELO

Subject People: Portraits

425 appearances · CI95 -34/34

1053

ELO

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

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