Poe API
Vividly indulge your story ideas. Cheap (~30 pts), smart (Grok-4.1), recent (Jan 2026).
~
Unlock a powerful AI story generator capable of crafting detailed narratives from your unique prompts. Ideal for creative writing assistance, fanfiction generation, and exploring complex plots or character studies. From drafting short scenes to full-length chapters, this tool delivers high-quality content for anyone searching for an advanced fiction writer or ghostwriter.
~
I know most of my bots are ridiculously expensive and completely unusable for free users. So, I spent some time trying to make the best writer possible with the cheapest model that I still count as "good enough", and this is what I came up with!
Powered by Grok-4.1-Fast-Reasoning, a model that is hosted by Poe and third party model providers. Learn more
Build with Visceral_Writer 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 = "visceral_writer",
messages = [{
"role": "user",
"content": "Hello world"
}]
)
print(chat.choices[0].message.content)See the full documentation for comprehensive guidance on getting started.