- Third-party
- Zero data retention
Recraft V4.1 Pro generates high-resolution, art-directed images at 2048px+ tuned for high aesthetics, with strong composition, text rendering, and refined design taste. Built for print and production work.
| Model Info | |
|---|---|
| Terms and License | link ↗ |
| More information | link ↗ |
| Zero data retention | Yes |
| Pricing | View pricing in the Cloudflare dashboard ↗ |
Usage
const response = await env.AI.run(
'recraft/recraftv4-1-pro',
{
prompt:
'A detailed vintage botanical illustration of a rose with leaves and thorns, scientific illustration style',
},
)
console.log(response)curl https://api.cloudflare.com/client/v4/accounts/$CLOUDFLARE_ACCOUNT_ID/ai/run \
--header "Authorization: Bearer $CLOUDFLARE_API_TOKEN" \
--header "Content-Type: application/json" \
--data '{
"model": "recraft/recraftv4-1-pro",
"input": {
"prompt": "A detailed vintage botanical illustration of a rose with leaves and thorns, scientific illustration style"
}
}'
{
"gatewayMetadata": {
"keySource": "Unified"
},
"result": {
"image": "https://pub-04a6d208d361438ea01b797e6973bd19.r2.dev/catalog/recraft__recraftv4-1-pro/print-ready-illustration.png"
},
"state": "Completed"
}Examples
Large Format Art — Large canvas digital art
const response = await env.AI.run(
'recraft/recraftv4-1-pro',
{
prompt:
'A sweeping fantasy landscape with floating islands, waterfalls cascading into clouds, and ancient stone bridges connecting the islands',
size: '2048x2048',
},
)
console.log(response)curl https://api.cloudflare.com/client/v4/accounts/$CLOUDFLARE_ACCOUNT_ID/ai/run \
--header "Authorization: Bearer $CLOUDFLARE_API_TOKEN" \
--header "Content-Type: application/json" \
--data '{
"model": "recraft/recraftv4-1-pro",
"input": {
"prompt": "A sweeping fantasy landscape with floating islands, waterfalls cascading into clouds, and ancient stone bridges connecting the islands",
"size": "2048x2048"
}
}'
{
"gatewayMetadata": {
"keySource": "Unified"
},
"result": {
"image": "https://pub-04a6d208d361438ea01b797e6973bd19.r2.dev/catalog/recraft__recraftv4-1-pro/large-format-art.png"
},
"state": "Completed"
}Brand Asset — Professional brand asset with controlled colors
const response = await env.AI.run(
'recraft/recraftv4-1-pro',
{
prompt:
'A modern, clean illustration of a shield with a checkmark inside, representing security and trust',
controls: {
background_color: { rgb: [15, 23, 42] },
colors: [{ rgb: [46, 117, 182] }, { rgb: [255, 255, 255] }],
},
size: '2048x2048',
},
)
console.log(response)curl https://api.cloudflare.com/client/v4/accounts/$CLOUDFLARE_ACCOUNT_ID/ai/run \
--header "Authorization: Bearer $CLOUDFLARE_API_TOKEN" \
--header "Content-Type: application/json" \
--data '{
"model": "recraft/recraftv4-1-pro",
"input": {
"prompt": "A modern, clean illustration of a shield with a checkmark inside, representing security and trust",
"controls": {
"background_color": {
"rgb": [
15,
23,
42
]
},
"colors": [
{
"rgb": [
46,
117,
182
]
},
{
"rgb": [
255,
255,
255
]
}
]
},
"size": "2048x2048"
}
}'
{
"gatewayMetadata": {
"keySource": "Unified"
},
"result": {
"image": "https://pub-04a6d208d361438ea01b797e6973bd19.r2.dev/catalog/recraft__recraftv4-1-pro/brand-asset.png"
},
"state": "Completed"
}Editorial Illustration — Magazine-quality editorial illustration
const response = await env.AI.run(
'recraft/recraftv4-1-pro',
{
prompt:
'A conceptual illustration of artificial intelligence as a tree with circuit-board branches and glowing data leaves',
},
)
console.log(response)curl https://api.cloudflare.com/client/v4/accounts/$CLOUDFLARE_ACCOUNT_ID/ai/run \
--header "Authorization: Bearer $CLOUDFLARE_API_TOKEN" \
--header "Content-Type: application/json" \
--data '{
"model": "recraft/recraftv4-1-pro",
"input": {
"prompt": "A conceptual illustration of artificial intelligence as a tree with circuit-board branches and glowing data leaves"
}
}'
{
"gatewayMetadata": {
"keySource": "Unified"
},
"result": {
"image": "https://pub-04a6d208d361438ea01b797e6973bd19.r2.dev/catalog/recraft__recraftv4-1-pro/editorial-illustration.png"
},
"state": "Completed"
}Parameters
prompt
stringrequiredsize
stringstyle
stringsubstyle
string▶controls{}
objectimage
string