# KiHustle Subjectivity Analysis API

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

Analyzes input text to determine its degree of subjectivity versus objectivity

## Facts

- Endpoint: POST https://kihustle.tech/agents/api/v1/subjectivity-analysis
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kihustle-subjectivity-analysis-api-b548eee4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_E4j_5SnUkQUcIT0m_DiXA

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-subjectivity-analysis-api-b548eee4 -d '<json body>'
```

Example prompt: Can you analyze this paragraph for subjectivity — I want to know if it reads as opinion or fact: 'The new policy changes are unnecessarily harsh and will clearly hurt small businesses more than large corporations.'

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-call subjectivity classification for individual text snippets, especially in automated pipelines where cost predictability ($0.002/call) matters. Suitable for filtering opinionated content, preprocessing text before further NLP steps, or flagging biased language in user-generated content.

## Known failure modes

- Empty or missing 'text' field returns an error or malformed response
- Extremely long text inputs may be truncated or rejected
- Non-string input types for the text field may cause processing failure
- Network timeout for slow connections
- Ambiguous or very short text may produce low-confidence or generic results

## 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 subjectivity analysis result and a success status. The 'result' field contains the processed classification output (e.g. subjective/objective determination), and 'status' confirms successful processing.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "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-subjectivity-analysis-api-b548eee4/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)
