Skip to content

Quick Reference

Fresh 🌱

Fast lookup for common commands, patterns, and troubleshooting.

Sections

Commands

Common code snippets and command patterns.

Troubleshooting

Solutions to common problems and errors.

┌─────────────────────────────────────────────────────────────┐
│                    QUICK REFERENCE GUIDE                    │
├─────────────────────────────────────────────────────────────┤
│                                                              │
│  Installation                                                │
│    pip install fastapi-poe                                   │
│                                                              │
│  Basic Query                                                 │
│    fp.get_bot_response_sync(messages, bot_name, api_key)    │
│                                                              │
│  Async Query                                                 │
│    fp.get_bot_response(messages, bot_name, api_key)         │
│                                                              │
│  Upload File                                                 │
│    fp.upload_file_sync(file_handle, api_key)                 │
│                                                              │
│  Custom Parameters                                           │
│    parameters={"thinking_budget": 12288}                    │
│                                                              │
└─────────────────────────────────────────────────────────────┘

Common Bot Names

  • GPT-5
  • Claude-Sonnet-4.5
  • Claude-Opus-4.1
  • Grok-4
  • Imagen-4

API Endpoints

  • Poe API: https://api.poe.com/v1 (OpenAI-compatible)
  • API Key: poe.com/api_key
  • Rate Limit: 500 requests/minute

Common Parameters

ParameterBot TypeExample Value
thinking_budgetClaude12288
reasoning_effortGPT"high"
aspect_ratioImage bots"16:9"

Next: Commands

Poe API Documentation