Poe API

Chat

Powered by OpenAI: o3-mini-2025-01-31. Learn more
  1. OFFICIAL

Build with o3-mini using the Poe API

Start by creating an API key, for use with any bot on Poe:

Generate API key

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 = "o3-mini",
    messages = [{
      "role": "user",
      "content": "You have two coins that look identical. One is fair (50% heads, 50% tails) and the other is a trick coin that always lands on heads. You pick a coin at random, flip it once, and it comes up heads. What is the probability that you picked the trick coin?"
    }]
)

print(chat.choices[0].message.content)

See the full documentation for comprehensive guidance on getting started.