Generate text and analyze images with Google Gemini 3.8 Flash. Fast, low-cost multimodal chat and reasoning. Try free — pay per generation.
关于此模型
Gemini 3.8 Flash is Google's latest high-speed multimodal language model, built for real-time chat, coding, and agentic workloads. It accepts text and image inputs in a single request, supports a configurable system prompt, and offers adjustable reasoning depth for balancing latency against thoroughness. Its large context window and low latency make it a strong fit for production chat assistants, document summarization, and coding copilots that need fast, cheap responses at scale. For heavier reasoning workloads that need a larger context or deeper multi-step logic, see Gemini 3.1 Pro or Gemini 3 Pro.
成本分析
| 提供商 | 费用 | 备注 |
|---|---|---|
| muapiapp | $2.50/M 输入, $12.50/M 输出 | 按 Token 计费,每次调用最低 $0.0002。 |
| Fal.ai | 暂不可用 | No dedicated Gemini 3.8 Flash endpoint at this time. |
| Replicate | 暂不可用 | No dedicated Gemini 3.8 Flash endpoint at this time. |
按 Token 计费,每次调用最低 $0.0002。
No dedicated Gemini 3.8 Flash endpoint at this time.
No dedicated Gemini 3.8 Flash endpoint at this time.
** 竞品价格根据相似模型架构和使用层级估算。
配置参数
| 参数 | 类型 | 描述 | 默认值 |
|---|---|---|---|
| 提示词 | string | 提供给模型的用户消息或指令。 | Summarize the key points of the attached image. |
| 图像 URL | string | 作为多模态输入的可选图像 URL。 | undefined |
| 系统提示词 | string | 可选的系统级指令,用于引导模型行为。 | You are a helpful assistant that responds concisely. |
提供给模型的用户消息或指令。
Summarize the key points of the attached image.作为多模态输入的可选图像 URL。
undefined可选的系统级指令,用于引导模型行为。
You are a helpful assistant that responds concisely.开发者文档
POST /api/v1/gemini-3-8-flash — returns a request_id; poll for the result via /api/v1/predictions/{id}/result.
POST /api/v1/gemini-3-8-flash/stream — returns a live Server-Sent Events stream (Content-Type: text/event-stream) with incremental text chunks as the model generates its response.
curl -X POST "https://api.muapi.ai/api/v1/gemini-3-8-flash" \
-H "Authorization: Bearer $YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"prompt": "Summarize the key differences between REST and GraphQL APIs.",
"system_prompt": "You are a concise technical writer."
}'
常见问答
Gemini 3.8 Flash is Google's fast, cost-efficient multimodal language model for text and image understanding, tuned for real-time chat, summarization, and coding assistance.
Pricing is token-based at $2.50 per million input tokens and $12.50 per million output tokens, with a minimum charge of $0.0002 per call.
Yes. Pass an image_url alongside your prompt to ask questions about, summarize, or describe an image in the same request.
Yes, use the system_prompt field to steer the model's tone, persona, or response format across the conversation.
Use the streaming endpoint (/gemini-3-8-flash/stream) for interactive chat UIs where the user should see the response appear token-by-token. Use the async endpoint (/gemini-3-8-flash) for background jobs, batch processing, and workflow automation.
Both are fast multimodal chat models in the same family; Gemini 3.8 Flash is Google's newer release with improved reasoning and response quality at the same input/output field structure, so existing integrations built for 3.7 Flash migrate over with no code changes beyond the endpoint name.