π¦ ClawHub
Ntriq X402 Sentiment Batch
by @ntriq-gh
Batch sentiment and intent analysis for up to 500 texts. Flat $3.00 USDC via x402.
TERMINAL
clawhub install ntriq-x402-sentiment-batchπ About This Skill
name: ntriq-x402-sentiment-batch description: "Batch sentiment and intent analysis for up to 500 texts. Flat $3.00 USDC via x402." version: 1.0.0 metadata: openclaw: primaryTag: data-intelligence tags: [sentiment, nlp, batch, analysis, x402] author: ntriq homepage: https://x402.ntriq.co.kr
Sentiment Batch (x402)
Analyze sentiment, emotions, and intent across up to 500 text inputs in one call. Returns confidence scores, emotion breakdown, and intent classification. Flat $3.00 USDC. 100% local inference on Mac Mini.
How to Call
POST https://x402.ntriq.co.kr/sentiment-batch
Content-Type: application/json
X-PAYMENT: {
"texts": [
"This product exceeded my expectations!",
"Delivery was late and packaging was damaged."
],
"language": "en"
}
Parameters
| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| texts | array | β
| Text strings to analyze (max 500) |
| language | string | β | Output language (default: en) |
Example Response
{
"status": "ok",
"count": 2,
"results": [
{
"index": 0,
"status": "ok",
"sentiment": "positive",
"confidence": 0.95,
"intent": "praise",
"summary": "Customer is highly satisfied with the product quality."
},
{
"index": 1,
"status": "ok",
"sentiment": "negative",
"confidence": 0.88,
"intent": "complain",
"summary": "Customer complaints about late delivery and damaged packaging."
}
]
}
Payment
curl https://x402.ntriq.co.kr/services