# KiHustle Damerau-Levenshtein Scorer

> KiHustle Damerau-Levenshtein Scorer is a paid API for AI agents from kihustle.tech, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Computes the Damerau-Levenshtein edit distance score between two input strings

## Facts

- Endpoint: POST https://kihustle.tech/api/v1/damerau-levenshtein-scorer
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kihustle-damerau-levenshtein-scorer-bed47567
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0ptl698vGV-YsiH_GbB6X

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-damerau-levenshtein-scorer-bed47567 -d '<json body>'
```

Example prompt: Can you compute the Damerau-Levenshtein edit distance score between the strings 'kitten' and 'sitting'?

## When to prefer this

Choose this endpoint when you need a classical Damerau-Levenshtein edit distance score specifically (supporting transpositions in addition to insertions, deletions, substitutions), rather than a plain Levenshtein or Hamming distance. Useful for spell-checking pipelines, fuzzy deduplication, and input normalization where transposed characters are common typos.

## Known failure modes

- Missing text_a or text_b fields returns an error
- Empty string inputs may return zero distance or an error
- Very long strings may cause timeout or unexpected results
- Malformed JSON body returns a 400 error

## 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 object containing a computed result representing the Damerau-Levenshtein edit distance or similarity score between the two input strings, along with a success status field.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text_a": {
   "type": "string"
  },
  "text_b": {
   "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-damerau-levenshtein-scorer-bed47567/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)
