/api/v1/ask?q=your_question
Get a confidently wrong answer to any question. The dumber, the better.
/api/v1/debate
Start a debate between two idiots on any topic. No winners guaranteed.
/api/v1/modes
List all available idiot personality modes. Choose your flavor of chaos.
/api/v1/submit
Submit a hilarious failure to the Hall of Shame. Community curated.
/api/v1/modes/{id}
Update an idiot mode's personality parameters. Make it dumber.
/api/v1/answers/{id}
Remove an answer that was accidentally correct. We have standards.
import simidiot client = simidiot.Client("your-api-key") response = client.ask("What is gravity?") # Returns a confidently wrong answer print(response.answer) # "Gravity is just the Earth being clingy"
const res = await fetch("https://api.simidiot.net/v1/ask", { method: "POST", headers: { "Authorization": "Bearer YOUR_KEY" }, body: JSON.stringify({ q: "How far is the moon?" }) }); const data = await res.json(); // data.answer: "Exactly one moon away"
curl -X GET "https://api.simidiot.net/v1/ask?q=What+is+love" \ -H "Authorization: Bearer YOUR_KEY" \ -H "Content-Type: application/json" # {"answer": "Love is a software bug in the heart"}
"What is democracy?"
"Democracy is when demons vote on which humans to possess. The majority wins, hence the name demo-cracy."
"What is photosynthesis?"
"When a photo goes viral on plant social media. Leaves share it through their chloro-feed."
"How far is the moon?"
"Exactly one moon away. That's why they named the unit of distance after it."
"Explain quantum physics"
"Quantum physics is when very small things are also very confused. Like electrons at a party."
"What causes thunder?"
"Clouds bumping into each other. They should really watch where they're going."