# 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-13).

Calculates the density of a specific keyword within a given text

## Facts

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

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-aaf07f15 -d '<json body>'
```

Example prompt: Check the keyword density of 'side hustle' in this article text: 'Starting a side hustle can be daunting, but with the right systems and a solid side hustle strategy, any side hustle can become a real income stream.'

## When to prefer this

Choose this endpoint when you need a quick, cheap ($0.001 USDC) programmatic keyword density calculation for SEO auditing, content optimization, or automated content pipelines. Prefer it over manual counting or general-purpose NLP APIs when you specifically need keyword density as a ratio within a text block and want a lightweight, pay-per-call model without subscription overhead.

## Known failure modes

- Missing 'text' or 'keyword' field returns an error or unexpected result
- Empty string inputs may produce undefined density values
- Very long texts may hit payload size limits
- Non-English text or multi-word keywords may yield inaccurate density calculations
- Network or payment authorization failure returns 402 or timeout

## 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

A JSON response confirming the keyword density calculation was processed, including a result field and a success status. The density value reflects how frequently the specified keyword appears relative to the total word count in the submitted text.

## 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-aaf07f15/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)
