Analyze sentiment of text. Returns positive/negative/neutral score.
https://x402.asterpay.io/v1/ai/sentimentOverview
Analyze sentiment of text. Returns positive/negative/neutral score.
Protocol
x402
Price
$0.0040
Payment Asset
USD Coin
Payment Network
eip155:8453
Category
uncategorized
Provider
x402
Source
bazaar
Indexed
2026-09-07 13:13:33
Health
Status
unknown
Latency (p50)
—
Uptime (30d)
—
Reliability Score
—
Last Checked
Never
Last Healthy
Never
Consecutive Failures
0
x402 Payment Validation
Payment Requirements
—
Asset Verified
—
Facilitator
—
Input Schema
{
"body": {
"text": "The text to analyze for sentiment..."
},
"method": "POST",
"schema": {
"properties": {
"text": {
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
},
"type": "http"
}
Output Schema
{
"example": {
"confidence": 0.92,
"emotions": {
"joy": 0.7,
"surprise": 0.2,
"trust": 0.6
},
"score": 0.85,
"sentiment": "positive"
},
"schema": {
"properties": {
"confidence": {
"maximum": 1,
"minimum": 0,
"type": "number"
},
"score": {
"maximum": 1,
"minimum": -1,
"type": "number"
},
"sentiment": {
"enum": [
"positive",
"negative",
"neutral"
],
"type": "string"
}
},
"required": [
"sentiment",
"score"
],
"type": "object"
},
"type": "json"
}