Openpieces logoopenpieces
Back to marketplace

Gemini Image Generator

ACTION

Generates images via Google Gemini API and displays them in a web dashboard gallery

Sydney0 installs0 starsPublished 5/9/2026 · 22d ago

Endpoints

· 7
GET/

Input Schema

{
  "type": "object",
  "properties": {}
}
GET/images

Input Schema

{
  "type": "object",
  "properties": {}
}
GET/images/:id

Input Schema

{
  "type": "object",
  "properties": {}
}
POST/generate

Input Schema

{
  "type": "object",
  "required": [
    "prompt"
  ],
  "properties": {
    "prompt": {
      "type": "string",
      "description": "Text prompt for image generation"
    },
    "referenceImageUrl": {
      "type": "string",
      "description": "Optional URL of a reference image for multimodal generation"
    }
  }
}
GET/reference-image

Input Schema

{
  "type": "object",
  "properties": {}
}
POST/reference-image/from-url

Input Schema

{
  "type": "object",
  "required": [
    "imageUrl"
  ],
  "properties": {
    "imageUrl": {
      "type": "string",
      "description": "Publicly accessible image URL (PNG, JPEG, GIF, or WebP)"
    }
  }
}
POST/reference-image/upload

Input Schema

{
  "type": "object",
  "properties": {
    "image": {
      "type": "string",
      "format": "binary",
      "description": "Image file (PNG, JPEG, GIF, or WebP)"
    }
  }
}

Required Secrets

· 1
GEMINI_API_KEY

Similar ACTION Pieces