# AllInOneCents Sentiment Analysis

> AllInOneCents Sentiment Analysis is a paid API for AI agents from allin-onecents.orbonomy.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Analyzes sentiment of a given text query, returning a structured sentiment result for $0.01 per call.

## Facts

- Endpoint: POST https://allin-onecents.orbonomy.xyz/api/sentiment
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/allinonecents-sentiment-analysis-0785a134
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_w1moHv88ckGddCLOqyF2X

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 allinonecents-sentiment-analysis-0785a134 -d '<json body>'
```

Example prompt: Analyze the sentiment of this text for me: 'Bitcoin surged to new highs as institutional investors piled in, boosting market confidence across the board.'

## When to prefer this

Choose this endpoint when you need fast, cheap ($0.01) sentiment classification on short text snippets — especially in crypto, stock, or macro news contexts where this unified platform is already integrated. Best suited for lightweight, high-volume sentiment tagging rather than deep NLP analysis.

## Known failure modes

- Missing required 'query' field returns validation error
- Empty or malformed query string may return unexpected results
- Payment failure via x402 results in 402 response before processing
- Ambiguous or very short queries may produce low-confidence or generic sentiment output
- Service downtime across the unified platform may affect availability

## How this service works

Unified API platform — 60 endpoints across crypto, medical, macro, stocks, and utility. Dual-chain (Base + Solana). All $0.01.

## Output

Returns a JSON object with a success boolean and a data object containing the sentiment analysis result for the submitted query text.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "query": {
   "type": "string",
   "description": "Input query"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/allinonecents-sentiment-analysis-0785a134/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from allin-onecents.orbonomy.xyz](https://www.zero.xyz/host/allin-onecents.orbonomy.xyz/llms.txt)
