# Losbeto Sentiment Analysis

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

Returns sentiment analysis results for a given input, priced at $0.01 USDC per call via x402 micropayment protocol

## Facts

- Endpoint: GET https://api.losbeto.xyz/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/losbeto-sentiment-analysis-142109a6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oS0hpxFzz6k9hFAf1beU1

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 losbeto-sentiment-analysis-142109a6
```

Example prompt: Analyze the sentiment of this message: 'Bitcoin just broke through $100k and trading volume is surging' — is it positive, negative, or neutral?

## When to prefer this

Choose this endpoint when you need low-cost ($0.01 USDC) per-call sentiment classification paid via x402 micropayments on Solana or Base, especially in agentic trading or crypto-focused workflows where sentiment scoring of financial text, news, or social content is needed at scale.

## Known failure modes

- Missing or malformed input text returns an error or empty result
- Payment not accepted if x402 USDC micropayment of $0.01 is not provided
- Rate limiting if too many requests are sent in a short window
- Ambiguous or very short text may return low-confidence or unexpected classifications
- API may return generic JSON error if properties parameter is improperly formatted

## How this service works

OpenAI-compatible LLM gateway at $0.005/call — change base_url, pay in USDC. Plus pay-per-call market data: multi-oracle price consensus, sentiment, forex, equities, commodities, Brazil macro (BCB/B3) and crypto. No API keys, no accounts. USDC on Base, Solana and Algorand via x402.

## Output

A JSON object containing the sentiment classification (e.g. positive, negative, neutral) and possibly a confidence score or numeric sentiment value for the provided input text.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "queryParams": {
     "type": "object",
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Asset ticker, e.g. AAPL, TSLA, BTC, GOLD"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "type": "object",
     "description": "Aggregated crypto sentiment bias with the contributing sources named. Input for contrarian and regime strategies."
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/losbeto-sentiment-analysis-142109a6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.losbeto.xyz](https://www.zero.xyz/host/api.losbeto.xyz/llms.txt)
