# minia2a x402-sentiment

> minia2a x402-sentiment is a paid API for AI agents from minia2a.uk, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-16).

Analyzes text input and returns a sentiment classification (positive, negative, neutral) via a pay-per-call x402 API.

## Facts

- Endpoint: GET https://minia2a.uk/x402/sentiment
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/minia2a-x402-sentiment-87e3f34d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ecNDDNsi--K4n1pKzZH-O

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability minia2a-x402-sentiment-87e3f34d
```

Example prompt: Can you run sentiment analysis on this customer review and tell me whether it's positive, negative, or neutral: 'The product arrived on time but the packaging was damaged and the instructions were confusing.'

## When to prefer this

Choose this endpoint when you need a quick, low-cost ($0.01 USDC) sentiment classification for a single text input and are already operating in an x402 payment-enabled agentic stack. It is suitable for lightweight, real-time sentiment checks on reviews, tickets, or social posts where a pay-per-call model is preferred over a subscription API.

## Known failure modes

- Missing 'input' field returns a validation error
- Empty or too-short text may return ambiguous or null sentiment
- Unsupported text encoding or language may yield incorrect classification
- Payment failure via x402 protocol blocks the request entirely
- Rate limiting or service unavailability returns a 402 or 5xx error

## How this service works

Lexicon-based analysis. 🆓 5 free trial calls per signed wallet

## Output

Returns a sentiment classification (e.g. positive, negative, neutral) for the submitted text, likely including a confidence score or probability. The response indicates the overall emotional tone detected in the input.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "method": {
     "type": "string"
    },
    "bodyType": {
     "type": "string"
    },
    "queryParams": {
     "type": "object"
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/minia2a-x402-sentiment-87e3f34d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from minia2a.uk](https://www.zero.xyz/host/minia2a.uk/llms.txt)
