Gemini 3 Pro Image (Preview)
ベンダー定価。プラットフォーム手数料なし、従量課金。 これらは公式 list 価格です。ログイン中のお客様は /console/pricing でワークスペース割引を含む実効価格を確認できます。
30 秒で Gemini 3 Pro Image (Preview) を使う
OpenAI 互換。base_url を差し替えるだけで、SDK はそのまま。POST /v1/images/generations
from openai import OpenAI
client = OpenAI(
base_url="https://synthorai.io/v1",
api_key="sk-syn-...",
)
resp = client.images.generate(
model="gemini-3-pro-image-preview",
prompt="a watercolor lighthouse at dawn",
size="1024x1024",
)
print(resp.data[0].b64_json[:80])import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://synthorai.io/v1",
apiKey: "sk-syn-...",
});
const resp = await client.images.generate({
model: "gemini-3-pro-image-preview",
prompt: "a watercolor lighthouse at dawn",
size: "1024x1024",
});
console.log(resp.data?.[0]?.b64_json?.slice(0, 80));curl https://synthorai.io/v1/images/generations \
-H "Authorization: Bearer sk-syn-..." \
-H "Content-Type: application/json" \
-d '{
"model": "gemini-3-pro-image-preview",
"prompt": "a watercolor lighthouse at dawn",
"size": "1024x1024"
}'package main
import (
"context"
"fmt"
"github.com/openai/openai-go/v3"
"github.com/openai/openai-go/v3/option"
)
func main() {
client := openai.NewClient(
option.WithBaseURL("https://synthorai.io/v1"),
option.WithAPIKey("sk-syn-..."),
)
resp, _ := client.Images.Generate(context.TODO(), openai.ImageGenerateParams{
Model: "gemini-3-pro-image-preview",
Prompt: "a watercolor lighthouse at dawn",
Size: "1024x1024",
})
fmt.Println(resp.Data[0].B64JSON[:80])
}import com.openai.client.OpenAIClient;
import com.openai.client.okhttp.OpenAIOkHttpClient;
import com.openai.models.images.*;
OpenAIClient client = OpenAIOkHttpClient.builder()
.baseUrl("https://synthorai.io/v1")
.apiKey("sk-syn-...")
.build();
ImagesResponse resp = client.images().generate(
ImageGenerateParams.builder()
.model("gemini-3-pro-image-preview")
.prompt("a watercolor lighthouse at dawn")
.size("1024x1024")
.build());
System.out.println(resp.data().orElseThrow().get(0).b64Json().orElseThrow().substring(0, 80));Gemini 3 Pro Image (Preview) について
Nano Banana Pro として売り出される Gemini 3 Pro Image(プレビュー)は、プロフェッショナル品質の画像生成・編集のための Google の推論駆動エンジンで、精密なテキストレンダリングを伴う最大 4K のスタジオ品質ビジュアル向けに位置づけられています。
- グラフィックデザイン、製品モックアップ、データビジュアライゼーションを対象とし、思考を用いて複雑な構図を計画し、Google 検索グラウンディングで画像を事実に基づいて固定します。
- 画像とテキストの入力を受け付け、画像とテキストを出力し、入力 65,536・出力 32,768 トークンです。
- Synthorai は他の画像モデルと同じ OpenAI 互換エンドポイント経由で提供します。
スペックと制限
| 最大出力(ベンダー仕様) | 32,768 |
| モダリティ | text + image → image + text |
| 機能 | vision · structured_output · batch · reasoning |
| 画像機能 | Professional-grade, reasoning-driven image generation and editing (Nano Banana Pro); accurate text rendering; real-world grounding via Google Search; image+text in, image+text out |
| 特記事項 | Gateway id has no live official page; current official model code is gemini-3-pro-image; caching and function calling not supported. |
よくある質問
Gemini 3 Pro Image (Preview) API は無料で試せますか?
はい。新規アカウントには 10 回のトライアル呼び出しと最大 $1 の無料クレジットが付与され、カード登録は不要です。支払い方法を追加する前に、実際のワークロードで Gemini 3 Pro Image (Preview) を試すには十分な量です。
Gemini 3 Pro Image (Preview) は何が得意ですか?
最大 4K のスタジオ品質ビジュアル、さらに思考が複雑な構図を計画と検索グラウンディングが画像を事実に固定。全体像はベンダー公式のリリースノートに基づく About セクションをご覧ください。
Gemini 3 Pro Image (Preview) の料金はいくらですか?
Synthorai 上の Gemini 3 Pro Image (Preview) は入力 100 万トークンあたり $2、出力 100 万トークンあたり $120 です。ベンダー定価のままで、プラットフォーム手数料はありません。
Gemini 3 Pro Image (Preview) API で画像を生成するには?
Synthorai の /v1/images/generations に model="gemini-3-pro-image-preview" を指定して POST するだけです。OpenAI images API と同じ形式で、ベンダー SDK は不要です。
Gemini 3 Pro Image (Preview) を利用するには?
お使いの OpenAI SDK の base_url を "https://synthorai.io/v1" に向け、model="gemini-3-pro-image-preview" を設定すれば完了です。API キー 1 本でゲートウェイ上のすべてのモデルを利用できます。