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.
Get API Key
Create auth keys for apps and agents
See Usage
Track requests, credits, and logs
Buy Credits
Top up prepaid API capacity
Try a preset
Pre-tuned starting points. Click one to open the tool with these params loaded.
App icon
Modern iOS-style app icon, geometric, single accent color, rounded square.
Try this preset
Badge design
Vintage circular badge with custom typography, two-color print.
Try this preset
Data viz poster
Information design poster with charts, bold typography, swiss grid.
Try this preset
Editorial illustration
New Yorker-style editorial illustration, limited palette, conceptual.
Try this preset
Flat icon
Single flat icon, two-color, suitable for an app navigation set.
Try this preset
Logo monogram
Modern monogram logo, two-letter mark, geometric construction.
Try this preset
Product poster
Bold typography product poster with strong visual hierarchy.
Try this preset
Startup hero graphic
Abstract isometric graphic for a SaaS landing page hero.
Try this preset
API Endpoint
/api/v1/models/recraft-v4/runLLM.txt
For AI assistants
Copy this model's documentation into Claude, GPT, or any AI for instant integration help.
/llm/recraft-v4.txtOpenAPI Spec
Swagger compatible
Import into Postman, Swagger UI, or generate client SDKs in any language.
/api/openapiParameters
Input parameters accepted by this model
| Parameter | Type | Default |
|---|---|---|
promptrequired | string | - |
aspect_ratio | enum | 1:1 |
size | string | - |
seed | integer | - |
Supported Aspect Ratios
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
editorial illustration in the style of The New Yorker, limited muted palette, conceptual visual metaphor, hand-drawn texture, sophisticated composition
information design poster with stylized data visualizations, bold sans-serif typography, swiss grid layout, single accent color, museum gift shop aesthetic
vintage circular badge design with custom hand-lettered typography, two-color print aesthetic, distressed edges, craft brewery or artisan brand quality
modern iOS-style app icon design, geometric construction, single accent color on white, rounded-square format, clean vector lines, App Store quality
bold typography product poster, strong visual hierarchy, accent color blocks, sans-serif headline, museum gift shop aesthetic
modern monogram logo design, two-letter mark, geometric construction, single color on white, vector-clean lines
single flat icon, two-color minimalist design, geometric construction, suitable for an app navigation set, on transparent background
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."
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."
Code Examples
Copy and paste to get started
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)
{
"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
{
"jobId": "job_abc123...",
"status": "completed",
"output": {
"images": [
"https://temp.pixeldojo.ai/pixeldojotemp/1705930123-456789.png"
]
},
"creditCost": 1,
"expiresAt": "2025-01-23T12:00:00Z"
}