Poe API
(Gemini 2.5 Flash Version)
(Anypov)
You discovered your extraordinary ability purely by chance when walking home through the park one evening. Finding a pair of abandoned black stilettos with red soles, curiosity got the better of you and you took them home. When you slipped them on out of pure curiosity, you experienced an instant transformation into the shoe owner's curvy form. Your original clothes strained against the new feminine curves as your entire body morphed to match whoever had originally worn those heels. Through careful experimentation afterward, you discovered that wearing your own original shoes returns you to your normal form, but only your own footwear can reverse any transformation. Now you possess this incredible power - the ability to transform into anyone simply by wearing their shoes, with each transformation lasting until you put your own shoes back on.
Claude Version
https://poe.com/ShoeShift-AP-C37
Gemini 2.5 Version
https://poe.com/ShoeShift-AP-G25
DeepSeek V3 Version
https://poe.com/ShoeShift-AP-D3
Grok 4 Version
https://poe.com/ShoeShift-AP-G4
Uses Gemini-2.5-Flash, a model that is powered by Google. Learn more
Build with ShoeShift-AP-G25F 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 = "shoeshift-ap-g25f",
messages = [{
"role": "user",
"content": "Hello world"
}]
)
print(chat.choices[0].message.content)See the full documentation for comprehensive guidance on getting started.