# KiHustle N-gram Frequency Analyzer

> KiHustle N-gram Frequency Analyzer 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).

Analyzes text to compute the frequency of n-grams (sequences of n words or characters) within the provided input

## Facts

- Endpoint: POST https://kihustle.tech/nexus/api/v1/ngram-frequency-analyzer
- 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-n-gram-frequency-analyzer-df301897
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PVCV9n7h6armgTkPZ9xwa

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-n-gram-frequency-analyzer-df301897 -d '<json body>'
```

Example prompt: Analyze this paragraph for me and find all the most frequent 2-grams (bigrams): 'Artificial intelligence is transforming how businesses operate. Artificial intelligence tools are everywhere now. Businesses use artificial intelligence daily.'

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call n-gram frequency computation over arbitrary text without standing up your own NLP pipeline. It is suitable for lightweight text analysis tasks like SEO phrase mining, content deduplication checks, or corpus statistics where you can supply raw text and a desired n-gram window size.

## Known failure modes

- Missing or invalid 'text' field returns an error
- Missing or invalid 'n' integer may cause processing failure
- Very large text inputs may time out or be truncated
- Non-positive or zero value for 'n' may produce unexpected results
- Network or payment gateway errors may return 402 payment required

## 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 processed n-gram data and a 'status' field confirming success; the processed output is expected to contain frequency counts or rankings for the requested n-gram size over the supplied text, though the exact shape of the result payload is minimally documented.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "n": {
   "type": "integer"
  },
  "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-n-gram-frequency-analyzer-df301897/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)
