> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sinancode.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Nano Banana Pro

> Nano Banana Pro モデルを使用した高品質画像生成（非同期）、高解像度および高度な機能をサポート

[Google DeepMind](https://deepmind.google) の Nano Banana Pro (Gemini 3 Pro Image) モデルを使用して画像を生成・編集します。

**主な特徴:**

* **4K 超高解像度** - 2K/4K 高精細画像生成をサポート
* **最高クラスのテキストレンダリング** - 多言語サポートの業界最高の画像内テキスト生成
* **リアルタイム知識** - Google 検索を使用してファクトを検証し、リアルタイムデータに基づいた画像を生成
* **プロフェッショナルコントロール** - カメラアングル、ライティング、被写界深度、フォーカス、カラーグレーディング


## OpenAPI

````yaml /ja/openapi.yaml POST /generate/k/nano-banana-pro
openapi: 3.0.0
info:
  contact:
    email: support@sinancode.com
    name: API Support
    url: https://sinancode.com/support
  description: AIモデルタスクスケジューリングプラットフォーム API
  license:
    name: MIT
    url: https://opensource.org/licenses/MIT
  termsOfService: https://sinancode.com/terms-of-service
  title: TikTomato API
  version: '1.0'
servers:
  - url: https://api.sinancode.com/v1
    description: 本番サーバー
security: []
paths:
  /generate/k/nano-banana-pro:
    post:
      tags:
        - public
      summary: Nano Banana Pro 画像生成
      description: Nano Banana Pro モデルを使用した高品質画像生成（非同期）、高解像度および高度な機能をサポート
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ka.CreateNanoBananaProTaskRequest'
        description: タスクパラメータ
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/dto.CreateTaskResponse'
        '400':
          description: 無効なパラメータ
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/apierror.ErrorResponse'
        '401':
          description: 認証エラー
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/apierror.ErrorResponse'
        '500':
          description: サーバーエラー
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/apierror.ErrorResponse'
      security:
        - AccessToken: []
components:
  schemas:
    ka.CreateNanoBananaProTaskRequest:
      properties:
        aspect_ratio:
          default: '1:1'
          description: AspectRatio 画像アスペクト比（オプション、デフォルト 1:1）
          enum:
            - '1:1'
            - '2:3'
            - '3:2'
            - '3:4'
            - '4:3'
            - '4:5'
            - '5:4'
            - '9:16'
            - '16:9'
            - '21:9'
          example: '1:1'
          type: string
        image_input:
          description: ImageInput 入力画像リスト（オプション、最大8枚の画像をサポート、各画像最大10MB）
          example:
            - ''
          items:
            type: string
          maxItems: 8
          type: array
        output_format:
          default: png
          description: OutputFormat 出力画像形式（オプション、デフォルト png）
          enum:
            - png
            - jpg
          example: png
          type: string
        prompt:
          description: Prompt 画像生成のテキスト記述（必須、最大5000文字）
          example: >-
            Comic poster: cool banana hero in shades leaps from sci-fi pad. Six
            panels: 1) 4K mountain landscape, 2) banana holds page of long
            multilingual text with auto translation, 3) Gemini 3 hologram for
            search/knowledge/reasoning, 4) camera UI sliders for angle focus
            color, 5) frame trio 1:1-9:16, 6) consistent banana poses. Footer
            shows Google icons. Tagline: Nano Banana Pro now on Kie AI.
          maxLength: 5000
          minLength: 1
          type: string
        resolution:
          default: 1K
          description: Resolution 画像解像度（オプション、デフォルト 1K）
          enum:
            - 1K
            - 2K
            - 4K
          example: 1K
          type: string
      required:
        - prompt
      type: object
    dto.CreateTaskResponse:
      properties:
        task_id:
          description: タスクID
          example: 01234567-89ab-cdef-0123-456789abcdef
          type: string
      required:
        - task_id
      type: object
    apierror.ErrorResponse:
      properties:
        error_code:
          description: '機械可読なエラーコード（例: TASK.INVALID_PARAMS）'
          type: string
        message:
          description: ユーザーフレンドリーなエラーメッセージ
          type: string
      type: object
  securitySchemes:
    AccessToken:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: API Tokenを使用して認証を行ってください

````