AI Models
Recraft V3
Recraft V3. Proven AI image generation and editing for design work.
POST
from $0.08/image/v1/media/queueOverview
Proven image generation and editing via Recraft V3. Async operation — submit a job, poll for completion.
| Property | Value |
|---|---|
| Model ID | recraft/recraft-v3 |
| Provider | Recraft |
| Aspect Ratios | 1:1, 4:3, 3:4, 16:9, 9:16, auto |
| Reference Images | Supported |
| Billing | Dynamic (actual cost per job) |
| Typical Cost | ~$0.08 per image |
Usage
All media models use the async job queue. Submit a job, then poll for the result.
Step 1: Submit Job
Text-to-Image
const res = await fetch('https://api.yepapi.com/v1/media/queue', {
method: 'POST',
headers: {
'x-api-key': 'YOUR_API_KEY',
'Content-Type': 'application/json',
},
body: JSON.stringify({
model: 'recraft/recraft-v3',
prompt: 'A futuristic city skyline at sunset with flying vehicles',
options: { aspectRatio: '1:1' },
}),
});
const { data } = await res.json();
// data.jobId — use this to poll for resultscurl -X POST https://api.yepapi.com/v1/media/queue \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model": "recraft/recraft-v3", "prompt": "A futuristic city skyline at sunset with flying vehicles", "options": {"aspectRatio": "1:1"}}'Image-to-Image (Edit / Transform)
Pass a reference image via imageData alongside your prompt to edit or transform an existing image.
const res = await fetch('https://api.yepapi.com/v1/media/queue', {
method: 'POST',
headers: {
'x-api-key': 'YOUR_API_KEY',
'Content-Type': 'application/json',
},
body: JSON.stringify({
model: 'recraft/recraft-v3',
prompt: 'Make the sky purple and add northern lights',
options: { aspectRatio: '1:1' },
imageData: {
mimeType: 'image/png',
base64: '...', // Base64-encoded image
},
}),
});Step 2: Poll for Result
const status = await fetch(`https://api.yepapi.com/v1/media/status/${data.jobId}`, {
headers: { 'x-api-key': 'YOUR_API_KEY' },
});
const { data: job } = await status.json();
// job.status — "pending" | "processing" | "completed" | "failed"
// job.result.image — { mimeType, base64 } when completedcurl https://api.yepapi.com/v1/media/status/JOB_ID \
-H "x-api-key: YOUR_API_KEY"Request Body
| Parameter | Type | Required | Description | Default |
|---|---|---|---|---|
model | string | Yes | recraft/recraft-v3 or alias recraft-v3 | — |
prompt | string | Yes | Text description of the image to generate or edit | — |
options.aspectRatio | string | No | One of: 1:1, 4:3, 3:4, 16:9, 9:16, auto | 1:1 |
imageData.mimeType | string | No | MIME type of input image (image/png, image/jpeg, image/webp) | — |
imageData.base64 | string | No | Base64-encoded input image for image-to-image editing | — |
Pricing
Billing is dynamic — each job is billed from the actual cost of that generation.
| Metric | Cost |
|---|---|
| Typical cost per image | ~$0.08 |
Info
Image jobs typically complete in 5–60 seconds. Results retained for 1 hour.
Under the Hood
Powered by Recraft's Recraft V3 via our AI provider. 100% margin on upstream costs.