# KiHustle Burstiness Scorer

> KiHustle Burstiness Scorer 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).

Scores input text for burstiness — a measure of how much sentence-length or word-frequency variation exists, often used to detect AI-generated vs human-written text.

## Facts

- Endpoint: POST https://kihustle.tech/api/v1/burstiness-scorer
- 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-burstiness-scorer-45167a47
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_P8rio6901D0L-j6q7qGhS

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-burstiness-scorer-45167a47 -d '<json body>'
```

Example prompt: Can you check this paragraph for burstiness and tell me how human-like it sounds? Here's the text: 'Automation is reshaping work. Many people are now building income streams online. They use AI tools to scale their efforts. It is an exciting time to be a creator.'

## When to prefer this

Choose this endpoint when you need a lightweight, low-cost signal for how 'bursty' or human-like a piece of text is — particularly useful for content creators trying to avoid AI-detection flags, or for pipelines that need to programmatically evaluate linguistic naturalness. Prefer alternatives if you need a full AI-detection probability score with confidence intervals or multi-model ensemble analysis.

## Known failure modes

- Empty or missing 'text' field returns an error or unexpected result
- Extremely short text (single sentence) may produce unreliable scores
- Very long text may exceed processing limits
- Malformed JSON request body results in a 4xx error
- Payment not included or insufficient USDC triggers 402 response

## 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 whether the text was processed successfully and a burstiness result value. The response includes a 'status' field ('success' or otherwise) and a 'result' field with the computed score or label.

## 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-burstiness-scorer-45167a47/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)
