# 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 (frequency ratio) of a specific keyword within a given text

## Facts

- Endpoint: POST https://kihustle.tech/nexus/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-bb9c1c0e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BFdTsUPPPdxh5jV2vLxW7

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

Example prompt: What's the keyword density of the word 'automation' in this paragraph: 'Automation is reshaping every industry. Automation tools save time and money. Many businesses now rely on automation for daily tasks.'?

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-call keyword density calculation without setting up a local NLP pipeline. It is best suited for single-text, single-keyword frequency analysis in the context of SEO content review, spam detection, or content optimization workflows. It is not ideal for bulk multi-keyword analysis across large corpora.

## Known failure modes

- Missing 'text' or 'keyword' field in request body — likely returns an error or unexpected result
- Empty text string causing division-by-zero or null density
- Very large text inputs may time out or be truncated
- Keyword not found in text — may return zero density or ambiguous result
- Non-string input types causing parsing failures

## 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 keyword density result and a success status. The result field contains the computed density metric for the given keyword within the supplied text, and the status field confirms successful processing.

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