classifai
MLaas API for classification
no training. no deployment. no retraining.
// features
multi-modalText, images, or both together in a single request.
self-improvingLearns from feedback, improving accuracy over time.
mcp-nativeWire it straight into Claude and other agents. No glue code.
// use it for
01content moderation
02sentiment analysis
03request routing
04agent decision-making
// 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
testfree10/min · 100/day · 500 KB
hobby$5 / mo10/min · 1k/day · 2.5 MB
production$25 / mo100/min · 10k/day · 10 MB