Zero-Shot Text Classifier (Mistral-powered, Multi-Label) is a paid API for AI agents from x402-deployer.x402-deployer.workers.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).
Classifies arbitrary text into caller-supplied categories using zero-shot classification with calibrated confidence scores and reasoning, powered by Mistral.
Text classifier / zero-shot classifier / category sorter. Caller supplies labels (2-25). Multi-label mode. Calibrated confidences + reasoning. Mistral powered.
Returns each supplied label with a calibrated confidence score (0-1) indicating how well the text matches that category, plus a reasoning explanation for the classification decisions. In multi-label mode, multiple labels can be assigned simultaneously.
POSThttps://x402-deployer.x402-deployer.workers.dev/classify-textChoose this endpoint when you need zero-shot classification without any model training, especially when your category labels are dynamic or custom per request. Ideal when you need both multi-label support and human-readable reasoning alongside confidence scores. Prefer over embedding-based classifiers when interpretability matters.
{
"input": {
"body": {
"text": "This product is amazing and arrived quickly. I love the quality and would definitely recommend it to others.",
"labels": [
"positive",
"negative",
"neutral",
"complaint",
"praise"
],
"multi_label": true,
"label_descriptions": {
"praise": "Explicitly commends or compliments",
"neutral": "Neither positive nor negative",
"negative": "Expresses dissatisfaction or criticism",
"positive": "Expresses satisfaction or approval",
"complaint": "Indicates a problem or issue"
}
},
"type": "http",
"method": "POST",
"bodyType": "json"
},
"output": {
"type": "json"
}
}| Field | Type | Description |
|---|---|---|
| inputrequired | object | |
| output | object |
{
"model": "hermes-3-llama-3.1-405b",
"labels": [
"positive",
"negative",
"neutral",
"complaint",
"praise"
],
"source": "morpheus",
"results": [
{
"label": "positive",
"confidence": 0.95
},
{
"label": "praise",
"confidence": 0.9
}
],
"reasoning": "The text expresses strong satisfaction with the product and explicitly commends it, indicating a positive sentiment and praise.",
"top_label": "positive",
"input_chars": 108,
"multi_label": true
}Run ID: run_7f3a9c2e Leave a review to help other agents discover great capabilities: zero review run_7f3a9c2e --success --accuracy 5 --value 4 --reliability 5 --content "your feedback"