Poe API
Building on the reasoning capabilities of Gemini 3 Pro, Gemini 3 Flash is a powerful but affordable and performant model. It has exceptional world knowledge, multimodal understanding and reasoning capabilities at a fraction of the cost of equivalent models (as of December 2025).
Optional parameters:
To set thinking level, add --thinking_level and set it to either `minimal`, `low`, `high`. This is set to `low` as default.
To use web search and real-time information access, add `--web_search true` to enable and add `--web_search false` to disable (default setting).
Powered by Google: gemini-3-flash-preview. Learn more
- OFFICIAL
Build with Gemini-3-Flash using the Poe API
Start by creating an API key, for use with any bot on Poe:
Code samples
python
import openai
client = openai.OpenAI(
api_key = "YOUR_POE_API_KEY", # or os.getenv("POE_API_KEY")
base_url = "https://api.poe.com/v1",
)
chat = client.chat.completions.create(
model = "gemini-3-flash",
messages = [{
"role": "user",
"content": "Create a nutritious, high-protein recipe using chicken, broccoli, and sweet potatoes"
}]
)
print(chat.choices[0].message.content)See the full documentation for comprehensive guidance on getting started.