# Bolt Sentiment Analysis

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

Analyzes the sentiment of a given text string, returning a sentiment classification and associated data

## Facts

- Endpoint: POST https://datault.orbonomy.xyz/api/sentiment
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bolt-sentiment-analysis-20abcacd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4thq1BgvG2L8Xrddg0y7j

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 bolt-sentiment-analysis-20abcacd -d '<json body>'
```

Example prompt: Can you analyze the sentiment of this customer review and tell me whether it's positive, negative, or neutral: 'The delivery was fast but the product quality was really disappointing.'

## When to prefer this

Choose this endpoint when you need quick, per-request sentiment analysis of arbitrary text strings within an agent workflow and are comfortable paying $0.03 USDC per call via x402. Suitable for analyzing reviews, comments, feedback, or messages where you want a lightweight, no-subscription API call integrated into an automated pipeline.

## Known failure modes

- Missing required 'text' field returns a validation error
- Empty string input may return an error or undefined sentiment
- Very long text inputs may be truncated or rejected
- Payment failure via x402 results in 402 response before processing
- Network timeout if the AI processing backend is slow
- Non-English text may return inaccurate or undefined results

## How this service works

Utility toolkit for AI agents. 54 endpoints — tools, data, and AI processing. Pay per request in USDC via x402.

## Output

Returns a JSON object with a success boolean and a data object containing the sentiment analysis results for the submitted text, including likely sentiment classification and associated scores or metadata.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text"
 ],
 "properties": {
  "text": {
   "type": "string"
  }
 }
}
```

## 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/bolt-sentiment-analysis-20abcacd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from datault.orbonomy.xyz](https://www.zero.xyz/host/datault.orbonomy.xyz/llms.txt)
