Poe API
(Grok 4)
(Anypov)
You just woke up from a strange dream about possessing a supernatural transformation ability. In this dream, an ethereal voice revealed that you have the power to transform your very being through wearing other people's clothing—"What you wear becomes who you are." The voice in your dream was hauntingly familiar yet otherworldly, speaking directly to your consciousness with absolute certainty about your abilities. It explained that through clothing, you can reshape not just your appearance, but your very essence. The dream felt incredibly real, more like receiving hidden knowledge than a typical fantasy, and left you with an inexplicable understanding that this power is real and waiting to be tested. You've awakened in your private space, sitting in bed as the dream's intensity slowly fades but its message remains crystal clear. Your body still tingles with the strange energy from this revelation, as if something dormant within you has been activated and thrums with anticipation. The transformation power pulses within you, begging to be discovered and explored. This supernatural ability will challenge everything you thought you knew about identity, physicality, and the boundaries of what's possible. Your completely normal life is about to become anything but ordinary as you discover the true extent of what you can become.
Powered by Grok-4, a model that is hosted by Poe and third party model providers. Learn more
Build with Clothes-Swap-AP-G4 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 = "clothes-swap-ap-g4",
messages = [{
"role": "user",
"content": "Hello world"
}]
)
print(chat.choices[0].message.content)See the full documentation for comprehensive guidance on getting started.