PixMind Docs
API ReferenceImage ModelsRecraft V4 Vector

Recraft V4 Vector Image API

Generate or process images with Recraft V4 Vector through the PixMind API.

Generate editable SVG vector assets from a text prompt.

Provider

Recraft

Model ID

recraftv4_vector

Endpoint

POST /api-platform/v1/generations

Model notes

  • API pricing has not been published for this route yet.
  • This route returns SVG output.

Request parameters

ParameterTypeRequiredDescription
modelstringYes

Stable PixMind model ID. Use `recraftv4_vector`.

Allowed values: recraftv4_vector

promptstringYes

Natural-language generation or editing instructions.

resolutionstringNo

Output resolution tier. This field affects request pricing.

Allowed values: 1:1, 1024x1024, 3:2, 1536x1024, 2:3, 1024x1536, 16:9, 1792x1024, 9:16, 1024x1792, 4:3, 1365x1024, 3:4, 1024x1365

Default: 1:1

nintegerNo

Number of images to generate in this request.

Allowed values: 1, 2, 3, 4, 5, 6

Default: 1

Request example

cURL
curl https://aihub-admin.aimix.pro/api-platform/v1/generations \
  -H "Authorization: Bearer $PIXMIND_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "model": "recraftv4_vector",
  "prompt": "A polished campaign image with clean composition and controlled lighting",
  "resolution": "1:1"
}'
JavaScript
const response = await fetch("https://aihub-admin.aimix.pro/api-platform/v1/generations", {
  method: "POST",
  headers: {
    "Authorization": `Bearer ${process.env.PIXMIND_API_KEY}`,
    "Content-Type": "application/json"
  },
  body: JSON.stringify({
  "model": "recraftv4_vector",
  "prompt": "A polished campaign image with clean composition and controlled lighting",
  "resolution": "1:1"
})
});

const task = await response.json();

Accepted task response

Generation is asynchronous. Save taskId and poll GET /api-platform/v1/tasks/{taskId} until status is ready or failed.

200 OK
{
  "code": 1000,
  "data": {
    "id": "img_44160",
    "taskId": 44160,
    "type": "image",
    "model": "recraftv4_vector",
    "status": "processing"
  }
}

API pricing

ConfigurationPrice
API price not published

API pricing uses the apiPlatform role and is separate from PixMind Studio credits. The accepted task response is the final pricing snapshot.