Products and Business

Pick the right amount of Dunce.

Compare chatbot versions, business plans, and API access for teams that want a useful assistant with clear limits and simple pricing.

Simple plans Business-ready API access

Versions

Choose a model version based on how much help you need.

Dunce Mini

Fast basics

Quick answers, short explanations, and lightweight school-project demos.

  • Short context memory
  • Best for simple questions
  • Low-cost API option

Dunce Business

Team workspace

Shared business assistants, admin controls, usage limits, and brand-safe responses.

  • Team seats and roles
  • Workspace knowledge base
  • Priority support option

Pricing

Simple monthly plans for demos, students, and businesses.

Starter

$0/ month

For trying the public demo and showing the basic concept.

  • Limited messages
  • Dunce Mini access
  • Community support
Start Free

Business

$29/ seat

For small teams that need a shared AI assistant and basic admin controls.

  • Team workspace
  • Usage dashboard
  • Email support
View Business

Business AI

Turn Dunce AI into a workspace assistant for a team.

Business Features

Business AI plans are designed for small teams that want a branded assistant for common questions, internal notes, and customer-facing drafts.

Knowledge

Upload approved notes, FAQs, and policy content so the assistant answers from your own material.

Controls

Set usage limits, team roles, and answer boundaries to keep the model honest about what it knows.

Reporting

View message usage, common topics, and where the assistant needed human help.

API

Connect Dunce AI to apps, websites, and custom tools.

Developer Access

The API plan is for developers who want to send prompts to Dunce AI from their own site or app. Pricing can be based on credits, requests, or tokens.

REST endpoint API keys Usage limits

dunce-api.js

fetch("https://api.dunce.ai/v1/chat", {
  method: "POST",
  headers: {
    "Authorization": "Bearer YOUR_API_KEY",
    "Content-Type": "application/json"
  },
  body: JSON.stringify({
    model: "dunce-standard",
    message: "Explain this in simple words."
  })
});