Skip to main content
Back to API Platform

Recraft V4 API

Recraft's latest image model. Strong prompt accuracy, art-directed composition, integrated text rendering. Fast and cost-efficient at standard resolution. Integrate this model via REST with endpoint docs, parameters, and code examples.

Image Generation
Credit Cost
1 credit
Type
image

API Endpoint

POST
/api/v1/models/recraft-v4/run

Parameters

Input parameters accepted by this model

ParameterTypeDefault
prompt
required
string
-
aspect_ratio
enum
1:1
size
string
-
seed
integer
-

Supported Aspect Ratios

1:1
16:9
9:16
4:3
3:4
3:2
2:3
4:5

Example Outputs

Real outputs generated by this model

abstract isometric vector graphic for a SaaS landing page hero, layered geometric shapes, sapphire and amber accent colors on white, clean tech illustration
View Details

abstract isometric vector graphic for a SaaS landing page hero, layered geometric shapes, sapphire and amber accent colors on white, clean tech illustration

1 credits
19.2s
editorial illustration in the style of The New Yorker, limited muted palette, conceptual visual metaphor, hand-drawn texture, sophisticated composition
View Details

editorial illustration in the style of The New Yorker, limited muted palette, conceptual visual metaphor, hand-drawn texture, sophisticated composition

1 credits
19.2s
information design poster with stylized data visualizations, bold sans-serif typography, swiss grid layout, single accent color, museum gift shop aesthetic
View Details

information design poster with stylized data visualizations, bold sans-serif typography, swiss grid layout, single accent color, museum gift shop aesthetic

1 credits
16.2s
vintage circular badge design with custom hand-lettered typography, two-color print aesthetic, distressed edges, craft brewery or artisan brand quality
View Details

vintage circular badge design with custom hand-lettered typography, two-color print aesthetic, distressed edges, craft brewery or artisan brand quality

1 credits
16.0s
modern iOS-style app icon design, geometric construction, single accent color on white, rounded-square format, clean vector lines, App Store quality
View Details

modern iOS-style app icon design, geometric construction, single accent color on white, rounded-square format, clean vector lines, App Store quality

1 credits
16.2s
bold typography product poster, strong visual hierarchy, accent color blocks, sans-serif headline, museum gift shop aesthetic
View Details

bold typography product poster, strong visual hierarchy, accent color blocks, sans-serif headline, museum gift shop aesthetic

1 credits
19.2s
modern monogram logo design, two-letter mark, geometric construction, single color on white, vector-clean lines
View Details

modern monogram logo design, two-letter mark, geometric construction, single color on white, vector-clean lines

1 credits
16.1s
single flat icon, two-color minimalist design, geometric construction, suitable for an app navigation set, on transparent background
View Details

single flat icon, two-color minimalist design, geometric construction, suitable for an app navigation set, on transparent background

1 credits
28.6s
a thrilling action sequence of a woman trying to find her favorite candy. The candy wrapper is purple with a pixelated dragon and reads "Pixel Dojo". The woman says "Gotta have that pixel dojo candy. with over 60 ai tools, it's basically zero calories."
View Details

a thrilling action sequence of a woman trying to find her favorite candy. The candy wrapper is purple with a pixelated dragon and reads "Pixel Dojo". The woman says "Gotta have that pixel dojo candy. with over 60 ai tools, it's basically zero calories."

1 credits
24.9s
a thrilling action sequence of a woman trying to find her favorite candy. The candy wrapper is purple with a pixelated dragon and reads "Pixel Dojo". The woman says "Gotta have that pixel dojo candy. with over 60 ai tools, it's basically zero calories."
View Details

a thrilling action sequence of a woman trying to find her favorite candy. The candy wrapper is purple with a pixelated dragon and reads "Pixel Dojo". The woman says "Gotta have that pixel dojo candy. with over 60 ai tools, it's basically zero calories."

1 credits
34.1s

Code Examples

Copy and paste to get started

bash
curl -X POST "https://pixeldojo.ai/api/v1/models/recraft-v4/run" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "A beautiful mountain landscape at golden hour",
    "aspect_ratio": "1:1"
  }'

Response Format

Submit Response (202 Accepted)

json
{
  "jobId": "job_abc123...",
  "status": "pending",
  "statusUrl": "https://pixeldojo.ai/api/v1/jobs/job_abc123...",
  "creditCost": 1,
  "creditsRemaining": 95,
  "expiresAt": "2025-01-23T12:00:00Z"
}

Completed Response

json
{
  "jobId": "job_abc123...",
  "status": "completed",
  "output": {
    "images": [
      "https://temp.pixeldojo.ai/pixeldojotemp/1705930123-456789.png"
    ]
  },
  "creditCost": 1,
  "expiresAt": "2025-01-23T12:00:00Z"
}