Get started for free now
and only pay for downloads
Free
First training is free: see the results first-hand before you commit. Start for free.
Start for free
Create images for free
and only pay for the ones
you download
£75 per
1 licensed download
Perpetual license for commercial use, online and in print, including physical or digital resale
Fixed pricing per download
Train your first style model for free
Train style models for 50 credits each
5 free credits a day
£15 for 100 extra credits
Access to all models & features
*One-time purchases do not expire
Volume plans
Subscribe and get volume
discounts on images you
download
From £33 per
1 licensed download
Perpetual license for commercial use, online and in print, including physical or digital resale
*
Up to 55% volume discounts
Train your first style model for free
Train style models for 50 credits each
Balance renews monthly
£15 for 100 extra credits
Access to all models & features
*If you commit to 50 licenses per month
Enterprise
Custom solution and
pricing – an AI workflow
built for your needs
Let’s discuss your plan
Custom per license pricing
Custom volume discounts
Perfect your style with our ML team
Custom built solutions
SSO and team training
API access
New
Guaranteed priority support
*Finial pricing is based on usage volume
Start for free
Create images for free
and only pay for the ones
you download
£75 per
1 licensed download
Perpetual license for commercial use, online and in print, including physical or digital resale
Fixed pricing per download
Train your first style model for free
Train style models for 50 credits each
5 free credits a day
£15 for 100 extra credits
Access to all models & features
*One-time purchases do not expire
Volume plans
Subscribe and get volume
discounts on images you
download
From £33 per
1 licensed download
Perpetual license for commercial use, online and in print, including physical or digital resale
*
Up to 55% volume discounts
Train your first style model for free
Train style models for 50 credits each
Balance renews monthly
£15 for 100 extra credits
Access to all models & features
*If you commit to 50 licenses per month
Enterprise
Custom solution and
pricing – an AI workflow
built for your needs
Let’s discuss your plan
Custom per license pricing
Custom volume discounts
Perfect your style with our ML team
Custom built solutions
SSO and team training
API access
New
Guaranteed priority support
*Finial pricing is based on usage volume
Start for free
Create images for free
and only pay for the ones
you download
£75 per
1 licensed download
Perpetual license for commercial use, online and in print, including physical or digital resale
Fixed pricing per download
Train your first style model for free
Train style models for 50 credits each
5 free credits a day
£15 for 100 extra credits
Access to all models & features
*One-time purchases do not expire
Volume plans
Subscribe and get volume
discounts on images you
download
From £33 per
1 licensed download
Perpetual license for commercial use, online and in print, including physical or digital resale
*
Up to 55% volume discounts
Train your first style model for free
Train style models for 50 credits each
Balance renews monthly
£15 for 100 extra credits
Access to all models & features
*If you commit to 50 licenses per month
Enterprise
Custom solution and
pricing – an AI workflow
built for your needs
Let’s discuss your plan
Custom per license pricing
Custom volume discounts
Perfect your style with our ML team
Custom built solutions
SSO and team training
API access
New
Guaranteed priority support
*Finial pricing is based on usage volume
Start for free
Create images for free
and only pay for the ones
you download
£75 per
1 licensed download
Perpetual license for commercial use, online and in print, including physical or digital resale
Fixed pricing per download
Train your first style model for free
Train style models for 50 credits each
5 free credits a day
£15 for 100 extra credits
Access to all models & features
*One-time purchases do not expire
Volume plans
Subscribe and get volume
discounts on images you
download
From £33 per
1 licensed download
Perpetual license for commercial use, online and in print, including physical or digital resale
*
Up to 55% volume discounts
Train your first style model for free
Train style models for 50 credits each
Balance renews monthly
£15 for 100 extra credits
Access to all models & features
*If you commit to 50 licenses per month
Enterprise
Custom solution and
pricing – an AI workflow
built for your needs
Let’s discuss your plan
Custom per license pricing
Custom volume discounts
Perfect your style with our ML team
Custom built solutions
SSO and team training
API access
New
Guaranteed priority support
*Finial pricing is based on usage volume
Trusted by the best creative teams and companies, globally
Trusted by the best creative teams
and companies, globally
Trusted by the best creative teams and companies, globally
Trusted by the best creative teams and companies, globally
Pricing for licensed downloads.
Choose the monthly volume you
need, commit and save.
Volume discounts.
Get volume pricing as
your usage grows.
Package size
One-time purchase
per 1 license & 50 credits
Pay monthly
per 1 license & 50 credits
Pay yearly
per 1 license & 50 credits
Up to 5 licensed downloads
500 credits included
£75
£64
£53
Up to 10 licensed downloads
1,000 credits included
£75
£60
£49
Up to 20 licensed downloads
2,000 credits included
£75
£56
£45
40% off
Up to 30 licensed downloads
3,000 credits included
£75
£53
£41
45% off
Up to 40 licensed downloads
4,000 credits included
£75
£49
£38
50% off
Up to 50 licensed downloads
5,000 credits included
£75
£45
£34
55% off
More than 50 downloads
or larger volumes
Your creative engine, our API.
Build our AI into your products.
Your creative
engine, our API.
Build our AI into
your products.
All our tools, via API
Access all our platform features, from style transfer to on-brand image generation, and build them directly into your own applications
const API_BASE = "https://api.exactly.ai/public-api"; const headers = { "Authorization": `Bearer ${API_KEY}`, "Content-Type": "application/json" }; async function createModel(name, customData = null) { const res = await fetch(`${API_BASE}/v1/models/`, { method: "POST", headers, body: JSON.stringify({ name, custom_data: customData }) }); return (await res.json()).uid; } async function uploadTrainingImage(modelUid, imageFile) { const formData = new FormData(); formData.append("image", imageFile); const res = await fetch(`${API_BASE}/v1/models/${modelUid}/train_images/`, { method: "POST", headers: { "Authorization": `Bearer ${API_KEY}` }, body: formData }); return await res.json(); } async function trainModel(modelUid) { await fetch(`${API_BASE}/v1/models/${modelUid}/train/`, { method: "POST", headers }); } async function getTrainingProgress(modelUid) { const res = await fetch(`${API_BASE}/v1/models/${modelUid}/train/progress/`, { headers }); return (await res.json()).progress; } async function generateImages(modelUid, prompt, numImages = 4, size = [1024, 1024]) { const res = await fetch(`${API_BASE}/v1/images/`, { method: "POST", headers, body: JSON.stringify({ model_uid: modelUid, prompt, num_images: numImages, size }) }); return (await res.json()).images; } async function upscaleImage(imageUid, scale = "4k") { await fetch(`${API_BASE}/v1/images/${imageUid}/upscales/`, { method: "POST", headers, body: JSON.stringify({ scale }) }); await sleep(3000); const res = await fetch(`${API_BASE}/v1/images/${imageUid}/upscales/${scale}/`, { headers }); return await res.json(); } async function generateVideo(modelUid, prompt, size, fps = 24, duration = 5) { const res = await fetch(`${API_BASE}/v1/videos/`, { method: "POST", headers, body: JSON.stringify({ model_uid: modelUid, prompt, num_videos: 1, size, fps, duration }) }); return await res.json(); } async function listModels(activeOnly = false) { const params = activeOnly ? "?active=true" : ""; const res = await fetch(`${API_BASE}/v1/models/${params}`, { headers }); return (await res.json()).items; }
Read more
All our tools, via API
Access all our platform features, from style transfer to on-brand image generation, and build them directly into your own applications
const API_BASE = "https://api.exactly.ai/public-api"; const headers = { "Authorization": `Bearer ${API_KEY}`, "Content-Type": "application/json" }; async function createModel(name, customData = null) { const res = await fetch(`${API_BASE}/v1/models/`, { method: "POST", headers, body: JSON.stringify({ name, custom_data: customData }) }); return (await res.json()).uid; } async function uploadTrainingImage(modelUid, imageFile) { const formData = new FormData(); formData.append("image", imageFile); const res = await fetch(`${API_BASE}/v1/models/${modelUid}/train_images/`, { method: "POST", headers: { "Authorization": `Bearer ${API_KEY}` }, body: formData }); return await res.json(); } async function trainModel(modelUid) { await fetch(`${API_BASE}/v1/models/${modelUid}/train/`, { method: "POST", headers }); } async function getTrainingProgress(modelUid) { const res = await fetch(`${API_BASE}/v1/models/${modelUid}/train/progress/`, { headers }); return (await res.json()).progress; } async function generateImages(modelUid, prompt, numImages = 4, size = [1024, 1024]) { const res = await fetch(`${API_BASE}/v1/images/`, { method: "POST", headers, body: JSON.stringify({ model_uid: modelUid, prompt, num_images: numImages, size }) }); return (await res.json()).images; } async function upscaleImage(imageUid, scale = "4k") { await fetch(`${API_BASE}/v1/images/${imageUid}/upscales/`, { method: "POST", headers, body: JSON.stringify({ scale }) }); await sleep(3000); const res = await fetch(`${API_BASE}/v1/images/${imageUid}/upscales/${scale}/`, { headers }); return await res.json(); } async function generateVideo(modelUid, prompt, size, fps = 24, duration = 5) { const res = await fetch(`${API_BASE}/v1/videos/`, { method: "POST", headers, body: JSON.stringify({ model_uid: modelUid, prompt, num_videos: 1, size, fps, duration }) }); return await res.json(); } async function listModels(activeOnly = false) { const params = activeOnly ? "?active=true" : ""; const res = await fetch(`${API_BASE}/v1/models/${params}`, { headers }); return (await res.json()).items; }
Read more
All our tools, via API
Access all our platform features, from style transfer to on-brand image generation, and build them directly into your own applications
const API_BASE = "https://api.exactly.ai/public-api"; const headers = { "Authorization": `Bearer ${API_KEY}`, "Content-Type": "application/json" }; async function createModel(name, customData = null) { const res = await fetch(`${API_BASE}/v1/models/`, { method: "POST", headers, body: JSON.stringify({ name, custom_data: customData }) }); return (await res.json()).uid; } async function uploadTrainingImage(modelUid, imageFile) { const formData = new FormData(); formData.append("image", imageFile); const res = await fetch(`${API_BASE}/v1/models/${modelUid}/train_images/`, { method: "POST", headers: { "Authorization": `Bearer ${API_KEY}` }, body: formData }); return await res.json(); } async function trainModel(modelUid) { await fetch(`${API_BASE}/v1/models/${modelUid}/train/`, { method: "POST", headers }); } async function getTrainingProgress(modelUid) { const res = await fetch(`${API_BASE}/v1/models/${modelUid}/train/progress/`, { headers }); return (await res.json()).progress; } async function generateImages(modelUid, prompt, numImages = 4, size = [1024, 1024]) { const res = await fetch(`${API_BASE}/v1/images/`, { method: "POST", headers, body: JSON.stringify({ model_uid: modelUid, prompt, num_images: numImages, size }) }); return (await res.json()).images; } async function upscaleImage(imageUid, scale = "4k") { await fetch(`${API_BASE}/v1/images/${imageUid}/upscales/`, { method: "POST", headers, body: JSON.stringify({ scale }) }); await sleep(3000); const res = await fetch(`${API_BASE}/v1/images/${imageUid}/upscales/${scale}/`, { headers }); return await res.json(); } async function generateVideo(modelUid, prompt, size, fps = 24, duration = 5) { const res = await fetch(`${API_BASE}/v1/videos/`, { method: "POST", headers, body: JSON.stringify({ model_uid: modelUid, prompt, num_videos: 1, size, fps, duration }) }); return await res.json(); } async function listModels(activeOnly = false) { const params = activeOnly ? "?active=true" : ""; const res = await fetch(`${API_BASE}/v1/models/${params}`, { headers }); return (await res.json()).items; }
Read more
All our tools, via API
Access all our platform features, from style transfer to on-brand image generation, and build them directly into your own applications
const API_BASE = "https://api.exactly.ai/public-api"; const headers = { "Authorization": `Bearer ${API_KEY}`, "Content-Type": "application/json" }; async function createModel(name, customData = null) { const res = await fetch(`${API_BASE}/v1/models/`, { method: "POST", headers, body: JSON.stringify({ name, custom_data: customData }) }); return (await res.json()).uid; } async function uploadTrainingImage(modelUid, imageFile) { const formData = new FormData(); formData.append("image", imageFile); const res = await fetch(`${API_BASE}/v1/models/${modelUid}/train_images/`, { method: "POST", headers: { "Authorization": `Bearer ${API_KEY}` }, body: formData }); return await res.json(); } async function trainModel(modelUid) { await fetch(`${API_BASE}/v1/models/${modelUid}/train/`, { method: "POST", headers }); } async function getTrainingProgress(modelUid) { const res = await fetch(`${API_BASE}/v1/models/${modelUid}/train/progress/`, { headers }); return (await res.json()).progress; } async function generateImages(modelUid, prompt, numImages = 4, size = [1024, 1024]) { const res = await fetch(`${API_BASE}/v1/images/`, { method: "POST", headers, body: JSON.stringify({ model_uid: modelUid, prompt, num_images: numImages, size }) }); return (await res.json()).images; } async function upscaleImage(imageUid, scale = "4k") { await fetch(`${API_BASE}/v1/images/${imageUid}/upscales/`, { method: "POST", headers, body: JSON.stringify({ scale }) }); await sleep(3000); const res = await fetch(`${API_BASE}/v1/images/${imageUid}/upscales/${scale}/`, { headers }); return await res.json(); } async function generateVideo(modelUid, prompt, size, fps = 24, duration = 5) { const res = await fetch(`${API_BASE}/v1/videos/`, { method: "POST", headers, body: JSON.stringify({ model_uid: modelUid, prompt, num_videos: 1, size, fps, duration }) }); return await res.json(); } async function listModels(activeOnly = false) { const params = activeOnly ? "?active=true" : ""; const res = await fetch(`${API_BASE}/v1/models/${params}`, { headers }); return (await res.json()).items; }
Read more
Style transfer at scale
Get unrestricted access to our best style transfer technology, built to handle high-volume generation for all your clients
Read more
Style transfer at scale
Get unrestricted access to our best style transfer technology, built to handle high-volume generation for all your clients
Read more
Style transfer at scale
Get unrestricted access to our best style transfer technology, built to handle high-volume generation for all your clients
Read more
Style transfer at scale
Get unrestricted access to our best style transfer technology, built to handle high-volume generation for all your clients
Read more
Seamless integration
Our API is designed to fit seamlessly into your stack. Deliver studio-grade, watermark-free results directly to your users.
Read more
Seamless integration
Our API is designed to fit seamlessly into your stack. Deliver studio-grade, watermark-free results directly to your users.
Read more
Seamless integration
Our API is designed to fit seamlessly into your stack. Deliver studio-grade, watermark-free results directly to your users.
Read more
Seamless integration
Our API is designed to fit seamlessly into your stack. Deliver studio-grade, watermark-free results directly to your users.
Read more
A clear guide to what's included in
credits, licenses and plans
A clear guide to
what's included in
credits, licenses
and plans
Benefits
On-brand styles
AI models
Artist styles
AI style training
First is free
Train a custom AI to replicate your style
using on-brand visuals
Train a custom AI to replicate your style using on-brand visuals
Train a custom AI to replicate your style using on-brand visuals
Credits
Image generations
Create an image from a prompt
Credits
Credits
Credits
Video generations
Create a video from a prompt
Credits
Image to prompt
Convert an image into a detailed prompt or combine multiple images in one prompt
Convert an image into a detailed prompt or combine multiple images in one prompt
Credits
Credits
Credits
Reference image
Edit uploaded images directly using Nano Banano, Flux.1 Kontext, and other leading models
Edit uploaded images directly using Nano Banano, Flux.1 Kontext, and other leading models
Credits
Character pin
Maintain consistency when generating characters and mascots in different scenarios
Credits
Credits
Product pin
Maintain consistency when generating products in different scenes
Maintain consistency when generating products in different scenes
Maintain consistency when generating products in different scenes
Maintain consistency when generating products in different scenes
Credits
Editing tools
Select and regenerate any area with a prompt while maintaining composition and style
Select and regenerate any area with a prompt while maintaining composition and style
Credits
Credits
Credits
Commercial usage
Perpetual license for commercial use, online and in print, including physical or digital resale
Perpetual license for commercial use, online and in print, including physical or digital resale
License
Granted
License
Removing watermarks
Export clean, watermark-free images ready for commercial use
Export clean, watermark-free images ready for commercial use
License
Granted
License
Up to 8K image downloads
Get ultra-high resolution exports perfect for print and large displays
Get ultra-high resolution exports perfect for print and large displays
License
Credits
License
Vectorization
Convert your images to vector files
License
Credits
License
Image animation
Bring static images to life by turning them into short video clips
License
Credits
License
Custom solutions
Fine-tune AI models to your exact specifications and build custom workflows for any use case
Enterprise
Enterprise
Enterprise
Team onboarding
Our experts will guide your team through
setup and training
Our experts will guide your team through setup and training
Our experts will guide your team through setup and training
Our experts will guide your team through setup and training
Enterprise
Enterprise
Enterprise
Support
Dedicated support channel and personal customer success manager
Dedicated support channel and personal customer success manager
Dedicated support channel and personal customer success manager
Enterprise
Enterprise
Enterprise
The tool professionals
actually want to use
Nov, 2024
“I've found I'm spending most of my time on exactly.ai as I have been able to train my own models and hone my own AI style of art and get the results I'm trying for.”
Rob Ford
Founder & owner the FWA
Nov, 2024
“There are so many ai services out there for creatives but none are as genuinely useful and powerful as exactly.ai when it comes to image generation. Our team has used it to generate several illustration styles to test with our client, at pace and to a high fidelity. I’m excited to see where it goes next.”
Craig Lewisohn
Design Studio
Nov, 2024
“exactly.ai has revolutionised the way we source and create visual content. The platform allows us to generate on-brand illustrations effortlessly. It’s a game-changer!”
Andy Moore
Head of design, Anna Money
Nov, 2024
“I was amazed by the outputs we got from training exactly.ai on different Sennep project styles – both 2D and 3D. It feels like having a creative partner that rapidly bounces back visual ideas, making it a powerful tool in our creative toolkit and process.”
Matt Rice
Founder of Sennep
Nov, 2024
“exactly.ai is the rarest of things, technology that actually enhances the creators of the world and not just that of the client. It’s incredibly powerful and really demonstrates how AI can work for creative rather than against them.”
Mike Bennet
Chief Creative Officer of TheCltr
Nov, 2024
“I was buzzing when I found this. I’ve been trying to find something to replicate our illustrative style for 18 months and exactly.ai is the first platform we’ve seen that’s really cracked it.”
Pete Daykin
CEO of wordnerds.ai
Nov, 2024
“Using exactly.ai feels like writing the same brief to a tonne of amazing illustrators at once and receiving their responses instantly. Also without feeling guilty of stealing from them as I know they are getting a cut. It streamlines the process of exploring styles to complement your existing narrative and design language.”
Igor Pancaldi
VP of Design, Disguise
Nov, 2024
“I've found I'm spending most of my time on exactly.ai as I have been able to train my own models and hone my own AI style of art and get the results I'm trying for.”
Rob Ford
Founder & owner the FWA
Nov, 2024
“There are so many ai services out there for creatives but none are as genuinely useful and powerful as exactly.ai when it comes to image generation. Our team has used it to generate several illustration styles to test with our client, at pace and to a high fidelity. I’m excited to see where it goes next.”
Craig Lewisohn
Design Studio
Nov, 2024
“exactly.ai has revolutionised the way we source and create visual content. The platform allows us to generate on-brand illustrations effortlessly. It’s a game-changer!”
Andy Moore
Head of design, Anna Money
Nov, 2024
“I was amazed by the outputs we got from training exactly.ai on different Sennep project styles – both 2D and 3D. It feels like having a creative partner that rapidly bounces back visual ideas, making it a powerful tool in our creative toolkit and process.”
Matt Rice
Founder of Sennep
Nov, 2024
“exactly.ai is the rarest of things, technology that actually enhances the creators of the world and not just that of the client. It’s incredibly powerful and really demonstrates how AI can work for creative rather than against them.”
Mike Bennet
Chief Creative Officer of TheCltr
Nov, 2024
“I've found I'm spending most of my time on exactly.ai as I have been able to train my own models and hone my own AI style of art and get the results I'm trying for.”
Rob Ford
Founder & owner the FWA
Nov, 2024
“There are so many ai services out there for creatives but none are as genuinely useful and powerful as exactly.ai when it comes to image generation. Our team has used it to generate several illustration styles to test with our client, at pace and to a high fidelity. I’m excited to see where it goes next.”
Craig Lewisohn
Design Studio
Nov, 2024
“exactly.ai has revolutionised the way we source and create visual content. The platform allows us to generate on-brand illustrations effortlessly. It’s a game-changer!”
Andy Moore
Head of design, Anna Money
Nov, 2024
“I was amazed by the outputs we got from training exactly.ai on different Sennep project styles – both 2D and 3D. It feels like having a creative partner that rapidly bounces back visual ideas, making it a powerful tool in our creative toolkit and process.”
Matt Rice
Founder of Sennep
Nov, 2024
“exactly.ai is the rarest of things, technology that actually enhances the creators of the world and not just that of the client. It’s incredibly powerful and really demonstrates how AI can work for creative rather than against them.”
Mike Bennet
Chief Creative Officer of TheCltr
Nov, 2024
“I've found I'm spending most of my time on exactly.ai as I have been able to train my own models and hone my own AI style of art and get the results I'm trying for.”
Rob Ford
Founder & owner the FWA
Nov, 2024
“There are so many ai services out there for creatives but none are as genuinely useful and powerful as exactly.ai when it comes to image generation. Our team has used it to generate several illustration styles to test with our client, at pace and to a high fidelity. I’m excited to see where it goes next.”
Craig Lewisohn
Design Studio
Nov, 2024
“exactly.ai has revolutionised the way we source and create visual content. The platform allows us to generate on-brand illustrations effortlessly. It’s a game-changer!”
Andy Moore
Head of design, Anna Money
Nov, 2024
“I was amazed by the outputs we got from training exactly.ai on different Sennep project styles – both 2D and 3D. It feels like having a creative partner that rapidly bounces back visual ideas, making it a powerful tool in our creative toolkit and process.”
Matt Rice
Founder of Sennep
Nov, 2024
“exactly.ai is the rarest of things, technology that actually enhances the creators of the world and not just that of the client. It’s incredibly powerful and really demonstrates how AI can work for creative rather than against them.”
Mike Bennet
Chief Creative Officer of TheCltr
Nov, 2024
“I was buzzing when I found this. I’ve been trying to find something to replicate our illustrative style for 18 months and exactly.ai is the first platform we’ve seen that’s really cracked it.”
Pete Daykin
CEO of wordnerds.ai
Nov, 2024
“Using exactly.ai feels like writing the same brief to a tonne of amazing illustrators at once and receiving their responses instantly. Also without feeling guilty of stealing from them as I know they are getting a cut. It streamlines the process of exploring styles to complement your existing narrative and design language.”
Igor Pancaldi
VP of Design, Disguise
The value of 100 credits.
See what you can create.
See how 120 credits
converts into generations, trainings, and images
Image models
Cost per image
Total images
Default access
On-brand styles
1 credit
100 images
Trial
Artist styles
1 credit
100 images
Trial
Nano Banana
1 credit
100 images
Commercial
Imagen 4
1 credit
100 images
Commercial
Flux.1 Kontext
1 credit
100 images
Commercial
Seedream 4.0
1 credit
100 images
Commercial
GPT Image
2 credit
50 images
Commercial
Video models
Cost per video
Total videos
Default access
Seedance 1.0 (5 sec.)
2 credit
25 images
Commercial
Seedance 1.0 (10 sec.)
4 credit
50 images
Commercial
Trainings
Cost per training
Total trainings
Default access
Welcome training
Free
1
Style training
16 credits
1
Perfect, private, on-brand ai assets.
Owned by you, protected by us.
Perfect, private,
on-brand ai assets.
Owned by you,
protected by us.
Still have questions?
Take a look at our FAQ.
Can I use exactly.ai for free?
Yes. You receive 5 free credits every day to test our features and generate drafts. To download high-resolution images without watermarks, use your generations commercially, or train on-brand styles, you will need to purchase credits or licenses.
How does the pricing work?
Do you offer volume discounts?
Who owns the rights to my data and generated images?
Can I collaborate commercially with my style?
How many images can I create with my on-brand style?
Do my credits and licenses expire?
What if I run out of credits before my subscription ends?
Can I share my credits and licenses with my team?
Do I need a license for artist-created styles?
Can I use exactly.ai for free?
Yes. You receive 5 free credits every day to test our features and generate drafts. To download high-resolution images without watermarks, use your generations commercially, or train on-brand styles, you will need to purchase credits or licenses.
How does the pricing work?
Do you offer volume discounts?
Who owns the rights to my data and generated images?
Can I collaborate commercially with my style?
How many images can I create with my on-brand style?
Do my credits and licenses expire?
What if I run out of credits before my subscription ends?
Can I share my credits and licenses with my team?
Do I need a license for artist-created styles?
Can I use exactly.ai for free?
Yes. You receive 5 free credits every day to test our features and generate drafts. To download high-resolution images without watermarks, use your generations commercially, or train on-brand styles, you will need to purchase credits or licenses.
How does the pricing work?
Do you offer volume discounts?
Who owns the rights to my data and generated images?
Can I collaborate commercially with my style?
How many images can I create with my on-brand style?
Do my credits and licenses expire?
What if I run out of credits before my subscription ends?
Can I share my credits and licenses with my team?
Do I need a license for artist-created styles?
Can I use exactly.ai for free?
Yes. You receive 5 free credits every day to test our features and generate drafts. To download high-resolution images without watermarks, use your generations commercially, or train on-brand styles, you will need to purchase credits or licenses.
How does the pricing work?
Do you offer volume discounts?
Who owns the rights to my data and generated images?
Can I collaborate commercially with my style?
How many images can I create with my on-brand style?
Do my credits and licenses expire?
What if I run out of credits before my subscription ends?
Can I share my credits and licenses with my team?
Do I need a license for artist-created styles?
Get started for free
and see the possibilities
Get started for free
and see the possibilities
Get started for free
and see the possibilities
Get started for free
and see the possibilities
© exactly.ai 2025. All rights reserved.
Instagram • X (Twitter) • LinkedIn • YouTube
© exactly.ai 2025. All rights reserved.
© exactly.ai 2025. All rights reserved.
Instagram • X (Twitter) • LinkedIn • YouTube
© exactly.ai 2025. All rights reserved.
Instagram • X (Twitter) • LinkedIn • YouTube