Poe API
A fast, steady conversational model built for day-to-day use. It handles long threads without drifting, keeps context clean, and answers in a straightforward way. Good for planning, rewriting, summarizing, and quick technical help. Supports 400k tokens of context and native vision.
This bot supports optional parameters for additional customization.
Powered by OpenAI: gpt-5.2-chat-latest. Learn more
- OFFICIAL
Build with GPT-5.2-Instant 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 = "gpt-5.2-instant",
messages = [{
"role": "user",
"content": "Summarize the core ideas presented in the novel 'To Kill a Mockingbird' by Harper Lee"
}]
)
print(chat.choices[0].message.content)See the full documentation for comprehensive guidance on getting started.