# KiHustle Keyword Density Analyzer

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

Calculates the density (frequency/ratio) of a specific keyword within a given text body

## Facts

- Endpoint: POST https://kihustle.tech/agents/api/v1/keyword-density
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kihustle-keyword-density-analyzer-98d7a2eb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Y8JTuk4nW-gu4m9dnUhId

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-keyword-density-analyzer-98d7a2eb -d '<json body>'
```

Example prompt: Can you check the keyword density of the word 'automation' in this blog post draft: 'Automation tools are transforming side hustles. With automation, solopreneurs can scale. Many automation solutions exist...'?

## When to prefer this

Use this endpoint when you need a lightweight, pay-per-call keyword density check without setting up a full SEO platform. Ideal for agents automating content QA pipelines, checking individual documents for SEO optimization, or validating that keyword usage falls within acceptable ranges before publishing.

## Known failure modes

- Missing 'text' or 'keyword' field returns an error response
- Empty string inputs may return a zero-density result or error
- Very large text bodies may time out or be truncated
- Non-string types in schema fields cause validation failure
- Payment failure (x402) blocks the request entirely

## 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 keyword density computation outcome and a 'status' field confirming success. Exact density metrics (e.g. percentage, count) are returned in the result payload.

## 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-keyword-density-analyzer-98d7a2eb/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)
