dunce-mini
Fast basics
Best for short explanations, tiny widgets, and cheap prototype requests.
Developers
The Dunce AI API concept is designed for websites, school prototypes, and lightweight tools that need short answers with visible confidence.
Quickstart
Endpoint
The planned chat endpoint accepts a model name, a user message, and an optional tone setting. The response returns the answer plus a confidence label.
const response = await fetch("https://api.dunce.ai/v1/chat", {
method: "POST",
headers: {
"Authorization": "Bearer DUNCE_API_KEY",
"Content-Type": "application/json"
},
body: JSON.stringify({
model: "dunce-standard",
message: "Explain photosynthesis in simple words.",
honesty: "visible"
})
});
const answer = await response.json();
Models
dunce-mini
Best for short explanations, tiny widgets, and cheap prototype requests.
dunce-standard
Recommended for the showcase chat, study helpers, and general answer flows.
dunce-business
Planned for workspace notes, approved FAQs, admin controls, and usage reporting.