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

# Nano Banana 2 文生图

基于文本提示词使用 Nano Banana 2 模型生成图像，支持配置图像尺寸比例与画质等级。

## 请求头

<ParamField header="Content-Type" type="string" required={true}>
  枚举值: `application/json`
</ParamField>

<ParamField header="Authorization" type="string" required={true}>
  Bearer 身份验证格式: Bearer \{\{API 密钥}}。
</ParamField>

## 请求体

<ParamField body="prompt" type="string" required={true}>
  用于生成图像的文本提示词，支持中英文。建议不超过 1000 个字符。
</ParamField>

<ParamField body="size" type="string" default="1x1">
  输出图像的尺寸比例，系统会自动映射为对应的像素尺寸。

  可选值：`1x1`, `2x3`, `3x2`, `3x4`, `4x3`, `4x5`, `5x4`, `9x16`, `16x9`, `21x9`
</ParamField>

<ParamField body="quality" type="string" default="1k">
  图像生成质量等级，更高质量可生成更清晰、更细腻的图像。

  可选值：`1k`, `2k`, `4k`
</ParamField>

<ParamField body="response_format" type="string" default="url">
  生成图像的返回格式。

  可选值：`url`, `b64_json`
</ParamField>

## 响应信息

<ResponseField name="images" type="string[]" required={true}>
  生成的图像数组，元素为图像 URL（当 `response_format` 为 `url` 时）或 Base64 编码字符串（当 `response_format` 为 `b64_json` 时）。
</ResponseField>
