PixMind Docs
API ReferenceImage ModelsNano Banana

Nano Banana Image API

Generate or process images with Nano Banana through the PixMind API.

Google image generation and natural-language editing for everyday visual tasks.

Provider

Google

Model ID

nano-banana

Endpoint

POST /api-platform/v1/generations

Model notes

  • API pricing has not been published for this route yet.

Request parameters

ParameterTypeRequiredDescription
modelstringYes

Stable PixMind model ID. Use `nano-banana`.

Allowed values: nano-banana

promptstringYes

Natural-language generation or editing instructions.

aspectRatiostringNo

Requested output aspect ratio.

Allowed values: 1:1, 16:9, 9:16, 4:3, 3:4

Default: 1:1

referenceImagesstring[] (URI)No

Reference image URLs used for editing, composition, subject, or style guidance.

nintegerNo

Number of images to generate in this request.

Allowed values: 1, 2, 3, 4

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": "nano-banana",
  "prompt": "Create a polished campaign image while preserving the supplied subject",
  "aspectRatio": "1:1",
  "referenceImages": [
    "https://example.com/reference.png"
  ]
}'
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": "nano-banana",
  "prompt": "Create a polished campaign image while preserving the supplied subject",
  "aspectRatio": "1:1",
  "referenceImages": [
    "https://example.com/reference.png"
  ]
})
});

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": "nano-banana",
    "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.