# AllInOneCents Sentiment Analysis API

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

Analyzes sentiment of a given text query and returns a sentiment score or classification

## Facts

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

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-api-387d22ad -d '<json body>'
```

Example prompt: Analyze the sentiment of this text for me: 'The new product launch was a massive success and investors are extremely optimistic about future earnings' — is it positive, negative, or neutral?

## When to prefer this

Use this endpoint when you need a cheap ($0.01 per call), quick sentiment classification on arbitrary text strings, especially in workflows involving crypto, financial news, or social media analysis; it is particularly suited for high-volume, low-cost batch sentiment tasks where accuracy requirements are moderate

## Known failure modes

- Missing required 'query' field returns validation error
- Empty string query may return null or default response
- Overly long input may be truncated or rejected
- Payment failure (402) if USDC balance insufficient
- Ambiguous or multilingual text may produce inaccurate sentiment
- Server-side errors may return non-200 status with generic failure message

## 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 sentiment classification or score for the input 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-api-387d22ad/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from allinonecents.orbonomy.xyz](https://www.zero.xyz/host/allinonecents.orbonomy.xyz/llms.txt)
