- Third-party
- Zero data retention
Generate detailed, high-resolution SVG vector graphics from text prompts with high aesthetic quality, fine geometry, scalable to any size for print and design 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-vector',
{ prompt: 'A modern minimalist logo for a cloud computing company, clean geometric shapes' },
)
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-vector",
"input": {
"prompt": "A modern minimalist logo for a cloud computing company, clean geometric shapes"
}
}'
{
"gatewayMetadata": {
"keySource": "Unified"
},
"result": {
"image": "https://pub-04a6d208d361438ea01b797e6973bd19.r2.dev/catalog/recraft__recraftv4-1-pro-vector/logo-design.jpg"
},
"state": "Completed"
}Examples
Icon Set — Generate a vector icon
const response = await env.AI.run(
'recraft/recraftv4-1-pro-vector',
{
prompt: 'A flat design icon of a rocket launching, suitable for a mobile app',
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-vector",
"input": {
"prompt": "A flat design icon of a rocket launching, suitable for a mobile app",
"size": "2048x2048"
}
}'{
"gatewayMetadata": {
"keySource": "Unified"
},
"result": {
"image": "https://pub-04a6d208d361438ea01b797e6973bd19.r2.dev/catalog/recraft__recraftv4-1-pro-vector/icon-set.jpg"
},
"state": "Completed"
}Print-Ready Vector — High-resolution vector for large-format print
const response = await env.AI.run(
'recraft/recraftv4-1-pro-vector',
{
prompt:
'An intricate mandala pattern with floral and geometric elements, highly detailed and symmetrical',
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-vector",
"input": {
"prompt": "An intricate mandala pattern with floral and geometric elements, highly detailed and symmetrical",
"size": "2048x2048"
}
}'
{
"gatewayMetadata": {
"keySource": "Unified"
},
"result": {
"image": "https://pub-04a6d208d361438ea01b797e6973bd19.r2.dev/catalog/recraft__recraftv4-1-pro-vector/print-ready-vector.jpg"
},
"state": "Completed"
}Brand Illustration — Vector illustration with brand colors
const response = await env.AI.run(
'recraft/recraftv4-1-pro-vector',
{
prompt: 'A vector illustration of a cityscape skyline at sunset with clean lines and flat colors',
controls: { colors: [{ rgb: [255, 87, 51] }, { rgb: [41, 50, 65] }, { rgb: [239, 239, 239] }] },
},
)
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-vector",
"input": {
"prompt": "A vector illustration of a cityscape skyline at sunset with clean lines and flat colors",
"controls": {
"colors": [
{
"rgb": [
255,
87,
51
]
},
{
"rgb": [
41,
50,
65
]
},
{
"rgb": [
239,
239,
239
]
}
]
}
}
}'
{
"gatewayMetadata": {
"keySource": "Unified"
},
"result": {
"image": "https://pub-04a6d208d361438ea01b797e6973bd19.r2.dev/catalog/recraft__recraftv4-1-pro-vector/brand-illustration.jpg"
},
"state": "Completed"
}Parameters
prompt
stringrequiredsize
stringstyle
stringsubstyle
string▶controls{}
objectimage
string