Phoenix 1.0
Description
Leonardo.AI's state-of-the-art model designed for incredible prompt adherence and crystal-clear text rendition, perfect for creating highly specific and coherent visuals.
At a Glance
Key pricing and model details available for this model.
Starting price
$0.01
per image
Hallucination rate
0%
Supported sizes
1792x1024, 1024x1792, 1024x768, 768x1024, 1080x1350
Image Pricing
Image generation pricing currently exposed by the models API.
Starting price
$0.01
per image
Resolution Pricing
Resolution-specific prices returned for this image model.
| 1024x1792 | $0.01 |
| 1024x768 | $0.01 |
| 1080x1350 | $0.01 |
| 1792x1024 | $0.01 |
| 768x1024 | $0.01 |
| auto | $0.01 |
Image Details
Additional image-related pricing and format support.
| Pricing unit | per image |
| Supported sizes | 1792x1024 1024x1792 1024x768 768x1024 1080x1350 |
Feature Availability
Capabilities explicitly listed in the current payload.
Image
Available
Vision
Not listed
Function calling
Not listed
Reasoning
Not listed
Benchmark Summary
Overall image benchmark metrics currently available. CI95: -12/12
Overall ELO
982
Rank
#94
Appearances
3,528
Category Breakdown
Available per-category ELO results from the current benchmark payload.
Style Traditional Art
196 appearances · CI95 -51/51
1063
ELO
Style Cartoon Illustration
263 appearances · CI95 -44/44
1046
ELO
Subject Commercial
195 appearances · CI95 -52/52
1022
ELO
Subject Nature Landscapes
406 appearances · CI95 -35/35
1008
ELO
Subject People: Groups Activities
312 appearances · CI95 -42/42
1008
ELO
Subject Fantasy Mythical
539 appearances · CI95 -31/31
1006
ELO
Subject Futuristic Sci-fi
480 appearances · CI95 -32/32
990
ELO
Subject Text Typography
146 appearances · CI95 -60/60
979
ELO
Style Anime
242 appearances · CI95 -47/47
970
ELO
Style Graphic Design Digital Rendering
1,024 appearances · CI95 -22/22
968
ELO
Style General Photorealistic
1,485 appearances · CI95 -19/19
959
ELO
Subject People: Portraits
279 appearances · CI95 -44/44
954
ELO
Subject Physical Spaces
563 appearances · CI95 -31/31
932
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: 'phoenix-1.0',
prompt: 'A futuristic city skyline at sunset',
size: '1024x1024',
})
});
const imageData = await response.json();
console.log(imageData);