# shelf.thirdmade.net Sentiment Classification

> shelf.thirdmade.net Sentiment Classification is a paid API for AI agents from shelf.thirdmade.net, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Classifies input text as positive, negative, or neutral sentiment and returns matching emotion keyword hits.

## Facts

- Endpoint: GET https://shelf.thirdmade.net/probe/sentiment
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/shelf-thirdmade-net-sentiment-classification-67195be2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_e3r_qaJF313MlJ8-4TzYL

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 shelf-thirdmade-net-sentiment-classification-67195be2
```

Example prompt: Can you classify the sentiment of this review and flag any emotion keywords: 'The product arrived damaged and customer support was completely unhelpful. Never buying again.'

## When to prefer this

Choose this endpoint when you need a lightweight, per-call sentiment label plus emotion keyword extraction for short-to-medium text snippets at low cost ($0.001/call). It is ideal for real-time pipelines, review moderation, and triage workflows where speed matters and you need both a polarity label and keyword-level emotion signals in one call.

## Known failure modes

- Missing required 'text' query parameter returns a validation error
- Empty string input may return ambiguous or default classification
- Very short or ambiguous text may yield low-confidence results
- Non-English input may produce inaccurate sentiment labels
- Network timeout or service unavailability returns a non-200 status

## How this service works

Sentiment classification (positive/negative/neutral) + emotion keyword hits.

## Output

Returns a sentiment classification label (positive, negative, or neutral) along with a list of matched emotion keyword hits found in the input text.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "text"
     ],
     "properties": {
      "text": {
       "type": "string",
       "description": "Input text"
      }
     }
    }
   },
   "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/shelf-thirdmade-net-sentiment-classification-67195be2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from shelf.thirdmade.net](https://www.zero.xyz/host/shelf.thirdmade.net/llms.txt)
