# KiHustle Jaccard Similarity Token API

> KiHustle Jaccard Similarity Token API is a paid API for AI agents from kihustle.tech, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Computes the Jaccard similarity score between two text strings based on token overlap

## Facts

- Endpoint: POST https://kihustle.tech/agents/api/v1/jaccard-similarity-token
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kihustle-jaccard-similarity-token-api-38c7dc06
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JZcf6QtNK36-rdnCMpzrT

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-jaccard-similarity-token-api-38c7dc06 -d '<json body>'
```

Example prompt: Can you calculate the Jaccard similarity between these two texts: 'the quick brown fox jumps over the lazy dog' and 'the fast brown fox leaps over the sleepy cat'?

## When to prefer this

Choose this endpoint when you need a lightweight, token-based set similarity metric between two text strings without requiring embeddings or ML models. Ideal for deduplication, near-duplicate detection, or quick similarity checks where semantic meaning is less important than lexical overlap. At $0.002 per call it is cost-effective for high-volume text comparison tasks.

## Known failure modes

- Missing text_a or text_b fields returns an error
- Empty string inputs may return a score of 0 or an error
- Extremely long texts may time out or produce unexpected results
- Non-string input types may cause processing failure
- Payment failure via x402 protocol prevents request from being processed

## 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 containing the computed Jaccard similarity score between the two input texts (a value typically between 0.0 and 1.0 representing the proportion of shared tokens), along with a 'status' field confirming success.

## 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-jaccard-similarity-token-api-38c7dc06/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)
