MindVideo API
Models / Image generation / gemini-2-5-flash-image-preview-official

Gemini 2.5 Flash Image Preview Official

Gemini 2.5 Flash Image is suitable for fast and stable image generation tasks.

FastGeneral image
1

Calling the API

Submit a task to MindVideo with your platform model slug. The response includes a request ID, task ID, normalized status, and estimated cost.

For production retries, send a unique Idempotency-Key per business request. Reusing the same key with the same payload returns the original task without charging again; reusing it with different input returns 409.

Submit a request

curl -X POST https://api.mindvideo.ai/api/v1/tasks \
  -H "Authorization: Bearer mv_live_xxx" \
  -H "Content-Type: application/json" \
  -H "Idempotency-Key: task_$(date +%s)" \
  -d '{
  "model": "gemini-2-5-flash-image-preview-official",
  "input": {
    "prompt": "云海之上的漂浮瀑布群,晨雾和金色光线,电影感风景画面",
    "size": "16:9",
    "resolution": "1K",
    "n": 1
  }
}'
2

Authentication

Every server-side request must include an API key in the Authorization header. Keys can be created, disabled, and deleted from the dashboard.

Keep API keys server-sideDo not expose production API keys in browser code. Route user requests through your own backend before calling MindVideo.
3

Queue and polling

The platform maps runtime states into queued, processing, succeeded, failed, or cancelled so clients do not depend on model-specific fields.

Submit a request

Create an async generation task and poll the task endpoint for terminal status updates.

Fetch status

curl https://api.mindvideo.ai/api/v1/tasks/task_demo_model \
  -H "Authorization: Bearer mv_live_xxx"

Fetch task events

curl https://api.mindvideo.ai/api/v1/tasks/task_demo_model/events \
  -H "Authorization: Bearer mv_live_xxx"

Read the result

{
  "request_id": "req_demo_model",
  "task_id": "task_demo_model",
  "status": "succeeded",
  "cost_estimate": 0.0351,
  "cost_actual": 0.0351,
  "output": {
    "images": [
      {
        "url": "https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?auto=format&fit=crop&w=1200&q=80"
      }
    ]
  }
}
4

Files

Inputs can reference hosted files or compact data URIs depending on model constraints. Production apps should prefer stable hosted URLs.

Data URI

Useful for small test assets and local playground experiments.

Hosted URL

Recommended for production workloads, retries, and larger image or video inputs.

5

Schema

Input

{
  "type": "object",
  "required": [
    "prompt"
  ],
  "properties": {
    "n": {
      "type": "integer",
      "title": "Images",
      "default": 1,
      "maximum": 4,
      "minimum": 1
    },
    "size": {
      "enum": [
        "auto",
        "1:1",
        "2:3",
        "3:2",
        "3:4",
        "4:3",
        "4:5",
        "5:4",
        "9:16",
        "16:9",
        "21:9"
      ],
      "type": "string",
      "title": "Aspect ratio",
      "default": "1:1"
    },
    "prompt": {
      "type": "string",
      "title": "Prompt",
      "maxLength": 1000,
      "minLength": 1,
      "description": "Text prompt for image generation.",
      "x-playground": {
        "rows": 6,
        "widget": "textarea"
      }
    },
    "mask_url": {
      "type": "string",
      "title": "Mask image",
      "description": "Optional mask URL or data URI image for inpainting. It must be used with image_urls.",
      "x-playground": {
        "advanced": true
      }
    },
    "image_urls": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "title": "Reference images",
      "maxItems": 14,
      "minItems": 1,
      "description": "Optional reference image URLs or data URI images for image-to-image generation. Up to 14 images.",
      "x-playground": {
        "accept": "image/*",
        "widget": "file-upload",
        "advanced": true,
        "multiple": true,
        "uploadKind": "image"
      }
    },
    "resolution": {
      "enum": [
        "1K"
      ],
      "type": "string",
      "title": "Resolution",
      "default": "1K"
    }
  },
  "additionalProperties": false
}

Output example

{
  "request_id": "req_demo_model",
  "task_id": "task_demo_model",
  "status": "succeeded",
  "cost_estimate": 0.0351,
  "cost_actual": 0.0351,
  "output": {
    "images": [
      {
        "url": "https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?auto=format&fit=crop&w=1200&q=80"
      }
    ]
  }
}