Midjourney V7 Image Generation
Generate images with Midjourney V7 and selectable processing speed.
Aesthetic image generation with reference guidance and selectable processing speed.
Provider
MidjourneyModel ID
mj-v7Endpoint
POST /api-platform/v1/generationsModel notes
- The speed field determines the request price.
Request parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
model | string | Yes | Stable PixMind model ID. Use `mj-v7`. Allowed values: |
prompt | string | Yes | Natural-language generation or editing instructions. |
aspectRatio | string | No | Requested output aspect ratio. Allowed values: Default: |
referenceImages | string[] (URI) | No | Reference image URLs used for editing, composition, subject, or style guidance. |
speed | string | No | Processing speed and pricing tier. Allowed values: Default: |
Request example
curl https://aihub-admin.aimix.pro/api-platform/v1/generations \
-H "Authorization: Bearer $PIXMIND_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "mj-v7",
"prompt": "A dramatic fashion editorial in a brutalist gallery, cinematic lighting",
"aspectRatio": "3:4",
"speed": "fast"
}'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": "mj-v7",
"prompt": "A dramatic fashion editorial in a brutalist gallery, cinematic lighting",
"aspectRatio": "3:4",
"speed": "fast"
})
});
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.
{
"code": 1000,
"data": {
"id": "img_44160",
"taskId": 44160,
"type": "image",
"model": "mj-v7",
"status": "processing"
}
}API pricing
| Configuration | Price |
|---|---|
| Relaxed | $0.030 / image |
| Fast | $0.070 / image |
| Turbo | $0.110 / image |
API pricing uses the apiPlatform role and is separate from PixMind Studio credits. The accepted task response is the final pricing snapshot.