# KiHustle Sentiment Aspect Analysis

> KiHustle Sentiment Aspect Analysis is a paid API for AI agents from kihustle.tech, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Analyzes the sentiment of a given text with respect to a specific keyword or aspect

## Facts

- Endpoint: POST https://kihustle.tech/agents/api/v1/sentiment-aspect
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kihustle-sentiment-aspect-analysis-318ee0b2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cdu5wS-tWKEl5dM0XJo4M

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 kihustle-sentiment-aspect-analysis-318ee0b2 -d '<json body>'
```

Example prompt: Can you analyze the sentiment of this review toward the keyword 'battery life': 'The screen is gorgeous but the battery life is absolutely terrible and ruins the whole experience'?

## When to prefer this

Choose this endpoint when you need aspect-based or keyword-targeted sentiment analysis rather than overall document-level sentiment, particularly when you want to understand how a piece of text feels about one specific topic or feature rather than the text as a whole.

## Known failure modes

- Missing required 'text' or 'keyword' field returns an error
- Overly long text input may be truncated or rejected
- Ambiguous or absent keyword may produce generic rather than aspect-specific sentiment
- Non-English text may yield inaccurate results given the German-language site context
- Payment failure via x402 protocol blocks the request before processing

## How this service works

Kostenlose Guides, Solo-Playbooks und Artikel zu KI, Automation und Side Hustles — für Menschen, die mit echten Systemen online Einkommen aufbauen wollen. Transparent finanziert über faire Affiliate-Links.

## Output

Returns a JSON object indicating the processing result and success status, including a 'result' field (e.g. 'processed') and a 'status' field (e.g. 'success'). Sentiment polarity or score specific to the keyword aspect may be included in the result.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "type": "string"
  },
  "keyword": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": "processed",
  "status": "success"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/kihustle-sentiment-aspect-analysis-318ee0b2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from kihustle.tech](https://www.zero.xyz/host/kihustle.tech/llms.txt)
