# KiHustle Readability Grade API

> KiHustle Readability Grade 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).

Computes a readability grade score for a given text input

## Facts

- Endpoint: POST https://kihustle.tech/api/v1/readability-grade
- 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-readability-grade-api-9f68c9b0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uCcUJDXFW4LyiOI1zTcb6

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-readability-grade-api-9f68c9b0 -d '<json body>'
```

Example prompt: Can you check the readability grade of this paragraph: 'Artificial intelligence is transforming how we work, enabling solo entrepreneurs to automate repetitive tasks and focus on high-value activities that grow their income.'?

## When to prefer this

Choose this endpoint when you need a quick, low-cost ($0.002 per call) programmatic readability grade for a piece of text, especially in content pipelines, publishing workflows, or quality gates where you want to ensure writing complexity is appropriate for your target audience. It is well-suited for single text snippets rather than bulk document analysis.

## Known failure modes

- Empty or missing 'text' field returns an error or undefined result
- Extremely short text may produce unreliable or meaningless readability scores
- Non-Latin or mixed-language text may not be supported and could return unexpected results
- Request timeout for very long text inputs
- Payment failure (402) if USDC balance is insufficient

## 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 with a 'result' field indicating the computed readability outcome and a 'status' field confirming the request was processed successfully. The exact grade metric or score format is inferred to follow standard readability conventions.

## 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-readability-grade-api-9f68c9b0/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)
