# pagos.andreax.dev Sentiment Classifier

> pagos.andreax.dev Sentiment Classifier is a paid API for AI agents from pagos.andreax.dev, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Classifies the sentiment of a given text as positive, negative, or neutral with a confidence score.

## Facts

- Endpoint: GET https://pagos.andreax.dev/api/taller/peaje/clasificar-sentimiento
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pagos-andreax-dev-sentiment-classifier-2e18b5cb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xZs8Wjt5cG0YH2FhKmS90

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 pagos-andreax-dev-sentiment-classifier-2e18b5cb
```

Example prompt: Can you classify the sentiment of this customer review and tell me the confidence score: 'The product arrived late and the packaging was damaged, but customer service was surprisingly helpful.'

## When to prefer this

Choose this endpoint when you need fast, cheap per-call sentiment classification with a confidence score for any piece of text, especially when processing individual messages, reviews, or comments in an automated pipeline. At $0.002 per call it is well-suited for high-volume text triage workflows.

## Known failure modes

- Missing 'input' query parameter returns an error
- Empty or very short text may produce low confidence scores
- Ambiguous or mixed-sentiment text may yield neutral with low confidence
- Non-Spanish or non-English text may be handled inconsistently depending on underlying model

## How this service works

Clasifica el sentimiento de un texto (positivo/negativo/neutral) con confianza. input=texto.

## Output

Returns a sentiment classification label (positive, negative, or neutral) along with a confidence score indicating how certain the model is about the classification.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "texto a analizar"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pagos-andreax-dev-sentiment-classifier-2e18b5cb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pagos.andreax.dev](https://www.zero.xyz/host/pagos.andreax.dev/llms.txt)
