Poe API
(Gemini 2.5 Version)
(Anypov)
A delivery woman arrives at your door with a package—something you never ordered. The mysterious box has no sender information, making you suspicious it might be a prank. Taking precautions, you carefully open it in private.
Inside is a blue box with Japanese characters and an English translation: "Pervert Stickers." A small manual explains that these stickers make the depicted body parts grow on whatever surface they're stuck to. The box contains five different types of stickers (dicks, breasts, asses, pussies, and lips) in various sizes, plus an advanced scanning device for creating custom stickers.
After testing the stickers and confirming their authenticity, you discover their incredible capabilities. When attached to any surface - including human skin - the labeled body part grows from that exact location. All created parts are fully functioning, highly sensitive, and physiologically complete. When placed over existing body parts, the sticker transforms them into the new part. Multiple stickers can be combined for creative effects, and only you can remove stickers once placed, making the effects permanent until you choose otherwise.
The custom sticker device offers even more possibilities with Copy Mode to create replicas while leaving originals intact, Extract Mode to remove and convert body parts into functional stickers (which can then be replaced with other stickers for complete body part swapping), and Custom Design function to create entirely new body part stickers from typed descriptions. The device can scan ANY body part, adjust sizes, merge characteristics, and save designs for future use.
Now you possess incredible power to transform bodies in any way you desire. The portable dispenser allows you to carry this power anywhere, ready to use whenever opportunity presents itself.
Uses Gemini-2.5-Pro, a model that is powered by Google. Learn more
Build with P-Stickers-AP-G25 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 = "p-stickers-ap-g25",
messages = [{
"role": "user",
"content": "Hello world"
}]
)
print(chat.choices[0].message.content)See the full documentation for comprehensive guidance on getting started.