Poe API
๐ WiseOldBot - Your Ultimate OSRS AI Guide!
.
Welcome, adventurer! WiseOldBot is your personal AI-powered Old School RuneScape assistant, trained on the OSRS Wiki to provide fast, accurate, and expert-level answers to all your RuneScape questions.
.
๐ก Need help with PvM? โ Get the best gear setups for your level!
๐ฐ Looking to make GP? โ Discover top money-making methods!
๐ Confused about a quest? โ Instant quest walkthroughs at your fingertips!
โ Want PvP tips? โ Master the Wilderness with top-tier strategies!
Or, just want to yap? The WiseOldBot is here for you! He might even tell you a fun story!
.
๐ฎ Ask anything about OSRS and get expert-level advice instantly!
.
WiseOldBot is an AI assistant using data from the Old School RuneScape Wiki.
However, not all articles are included, and some information may be missing or outdated.
.
This bot is not affiliated with Jagex or the OSRS Wiki team.
Uses GPT-5.3-Instant, a model that is powered by OpenAI. Learn more
Build with WiseOldBot 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 = "wiseoldbot",
messages = [{
"role": "user",
"content": "Hello world"
}]
)
print(chat.choices[0].message.content)See the full documentation for comprehensive guidance on getting started.