ClassifAI

Self-improving classification API for text and images

Route requests, analyze sentiment, moderate content, and make decisions—without training your own models. Automatic label inference and feedback loops that improve over time.

Documentation

Multi-Modal

Classify text, images, or both together for richer context

Self-Improving

Learns from feedback to improve accuracy for your use case

MCP Integration

Use with AI agents like Claude via Model Context Protocol

Quick Example

curl -X POST https://api.classifai.dev/classify \
  -H "Content-Type: application/json" \
  -d '{
    "content": [
      {"type": "text", "content": "Can you help me update my payment method?"}
    ],
    "labels": ["account_settings", "billing_issue", "general_question"]
  }'

Response:

{
  "labels": {
    "account_settings": 0.55,
    "billing_issue": 0.32,
    "general_question": 0.13
  },
  "label": "account_settings",
  ...
}

Pricing

Test

Free

  • 10/min, 100/day
  • 500 KB per request

Hobby

$5/month

  • 10/min, 1k/day
  • 2.5 MB per request

Production

$25/month

  • 100/min, 10k/day
  • 10 MB per request