See it run

A real request and the response it produced. Edit the input and run it again — no account needed.

mistral-3b-2512

Input

Output

917ms
{
  "sentiment": "negative",
  "evidence_spans": [
    {"text": "disappointing", "start": 16, "end": 26},
    {"text": "slow to load", "start": 33, "end": 41},
    {"text": "ignored my ticket for days", "start": 52, "end": 70}
  ],
  "overall_analysis": "The text highlights repeated frustrations—performance issues and unresponsive support—with no mitigating positives. The final recommendation ('Would not recommend') confirms a strongly negative stance."
}

Call it from your app

curl -X POST https://api.zywrap.com/v1/proxy \
  -H "Authorization: Bearer $ZYWRAP_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "wrapperCodes": ["tc_sentiment_classification_3class_base"],
    "variables": {
          "sourceText": "The new product update was disappointing—features were slow to load, and customer support ignored my ticket for days. Would not recommend.",
          "languageHint": "en-US",
          "confidenceThreshold": 0.75,
          "returnEvidenceSpans": true
    }
  }'

Run this from your own app with 10,000 free credits.

Get a key

More in Text Classification

Every one of these has a real example you can run.