Lucid Origin by Leonardo AI creates high-fidelity, prompt-faithful, artistically diverse images with exceptional detail and refined definition. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
待機中

$0.021回あたり·~50 / $1

A soulful portrait of a jazz musician, created in a mixed-media collage style. The image is composed of torn sheet music, old newspaper clippings, dried flower petals, and burlap fabric. The musician's face is sketched with charcoal, overlaid with expressive splashes of acrylic paint. The overall feeling is chaotic yet passionate, full of creative and improvisational energy.

National Geographic style photography, epic wide-angle shot of Jökulsárlón glacier lagoon in Iceland at sunset. Giant blue icebergs floating on the calm water, reflecting the vibrant pink and orange clouds in the sky. Majestic glacier in the background. Crystal clear reflection, immense scale, serene atmosphere, ultra-detailed, HDR, Canon EOS R5.

surreal fantasy art of a giant whale made of translucent crystal, gracefully swimming through a sea of clouds under a tranquil starry sky. The whale's body glows softly with a galaxy nebula inside. Ethereal, dreamlike, magical, mysterious atmosphere, beautifully detailed, digital painting.

Minimalist and vast landscape, silhouette of a lone figure standing on a hill against a giant, vibrant setting sun. The sky is a gradient of orange and purple. Strong contrast, sense of solitude and wonder, clean composition, epic scale.

A female knight in intricate silver armor, standing on a cliff edge, holding a faintly glowing runic longsword, her white cape billowing in the wind. In the background, a giant twin moon hangs in the purple twilight sky over a distant gothic spire castle. Digital painting, concept art, in the style of Alphonse Mucha and Zdzisław Beksiński. Epic and mystical mood, strong chiaroscuro.

ultra realistic close-up portrait of an 80-year-old Tibetan woman, deep wrinkles on her weathered face, her eyes twinkling with wisdom and resilience. Dramatic side lighting from the sun, highlighting every skin texture detail and her silver hair. Shot on Sony a7 IV, 85mm f/1.4 lens, extremely shallow depth of field, blurred Himalayas in the background. photorealistic, National Geographic photography style, hyperdetailed, authentic skin texture.

A sun-drenched modern Japandi-style living room. Golden late-afternoon sunlight streams through a massive floor-to-ceiling window, creating long shadows on the floor. visible dust motes floating in the air. The room features natural oak floors, a beige linen sofa, and a rustic ceramic vase with a single dry branch. Minimalist, serene, and cozy atmosphere. Architectural Digest magazine photography, shot on a 35mm lens, clean and airy aesthetic.

Action shot of a basketball player frozen mid-air executing a powerful tomahawk dunk. Muscles taut, sweat droplets flying, an expression of intense focus on his face. Dramatic overhead stadium spotlights creating harsh highlights and shadows. The crowd in the background is treated with motion blur. Sports Illustrated cover photography style, high-shutter-speed effect, immense power and explosive energy.

Close-up shot of a young woman's face, tears welling up in her large, expressive brown eyes. Her brow is furrowed with sadness and despair. Rain streaks down the windowpane behind her, blurring the city lights. Cinematic lighting, shallow depth of field, emotionally charged.

A model in an elegant pose, wearing a futuristic haute couture gown made of iridescent, flowing fabric. A stylistic fusion of Patrick Nagel's minimalist graphic aesthetic and Alphonse Mucha's art nouveau linework. Soft gradient background, minimalist composition, emphasizing the character's silhouette and the dress's design.

An epic underwater palace, its architecture an organic fusion of the Baroque style and a living coral reef. The spires and arches of the palace are made of iridescent mother-of-pearl and living coral formations. Gardens are composed of giant, colorful sea anemones. Swarms of bioluminescent jellyfish drift by like lanterns. Sunbeams penetrate the water's surface, creating dramatic god rays (Tyndall effect). Epic scale concept art, awe-inspiring and serene.
Versatile, vibrant, and design-savvy. Lucid Origin is Leonardo’s all-purpose text-to-image model built for rapid concepting, polished graphics, and lush color work—equally at home with photoreal scenes, stylized illustration, brand layouts, and product mockups.
Just $0.02 per image!!!
Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/leonardoai/lucid-origin with your input as JSON. The endpoint returns a prediction id; poll the prediction endpoint until status flips to completed, then read the output URL from data.outputs[0]. Examples for Lucid Origin below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/leonardoai/lucid-origin" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $WAVESPEED_API_KEY" \
-d '{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"aspect_ratio": "16:9",
"enable_sync_mode": false,
"enable_base64_output": false
}'
# Response includes a prediction id. Poll for the result:
curl -X GET "https://api.wavespeed.ai/api/v3/predictions/{request_id}/result" \
-H "Authorization: Bearer $WAVESPEED_API_KEY"
# When status is "completed", read the output from data.outputs[0].// npm install wavespeed
const WaveSpeed = require('wavespeed');
const client = new WaveSpeed(); // reads WAVESPEED_API_KEY from env
const result = await client.run("leonardoai/lucid-origin", {
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"aspect_ratio": "16:9",
"enable_sync_mode": false,
"enable_base64_output": false
});
console.log(result.outputs[0]); // → URL of the generated output# pip install wavespeed
import wavespeed
output = wavespeed.run(
"leonardoai/lucid-origin",
{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"aspect_ratio": "16:9",
"enable_sync_mode": false,
"enable_base64_output": false
}
)
print(output["outputs"][0]) # → URL of the generated outputLucid Origin is a Leonardoai model for image generation, exposed as a REST API on WaveSpeedAI. Lucid Origin by Leonardo AI creates high-fidelity, prompt-faithful, artistically diverse images with exceptional detail and refined definition. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing. You can call it programmatically or try it from the playground above.
POST your input parameters to the model's REST endpoint (shown in the API tab of this playground) with your WaveSpeedAI API key in the Authorization header. Submission returns a prediction ID; poll the prediction endpoint until status flips to "completed", then read the output URL from the result. The playground generates a ready-to-paste code sample in Python, JavaScript, or cURL for whatever inputs you've set. Full request/response shape is documented at https://wavespeed.ai/docs/docs-api/leonardoai/leonardoai-lucid-origin.
Lucid Origin starts at $0.020 per run. That figure is the base price — the final charge scales with the parameters you set in the form (output size, length, count, references, or whatever knobs this model exposes), so a higher-quality or larger output costs more than a minimal one. The exact cost for your current input is shown live next to the Generate button before you submit, and the actual per-call charge is recorded on the prediction afterwards.
Key inputs: `prompt`, `aspect_ratio`, `enable_base64_output`, `enable_sync_mode`. The full JSON schema (types, defaults, allowed values) is rendered above the Generate button and mirrored in the API reference at https://wavespeed.ai/docs/docs-api/leonardoai/leonardoai-lucid-origin.
Average end-to-end generation time on WaveSpeedAI is around 6 seconds per request — measured across recent runs. Queue time scales with global demand; live status is visible in the prediction record.
Commercial usage rights depend on the model's license, set by its provider (Leonardoai). The license summary appears on the model card above; see WaveSpeedAI's Terms of Service for platform-level conditions.