Developers

Build with the little model that tells on itself.

The Dunce AI API concept is designed for websites, school prototypes, and lightweight tools that need short answers with visible confidence.

Quickstart

Send a message. Get a small, honest reply.

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.

POST /v1/chat JSON API key

quickstart.js

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

Three planned sizes. Same little hat.

dunce-mini

Fast basics

Best for short explanations, tiny widgets, and cheap prototype requests.

dunce-business

Team context

Planned for workspace notes, approved FAQs, admin controls, and usage reporting.