# KiHustle Entity Consistency Checker

> KiHustle Entity Consistency Checker 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).

Checks whether named entities mentioned in a text are consistent with a provided list of expected entities

## Facts

- Endpoint: POST https://kihustle.tech/nexus/api/v1/entity-consistency-checker
- 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-entity-consistency-checker-b8946ce5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Vrpok1tRftECvCmEXnTH1

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-entity-consistency-checker-b8946ce5 -d '<json body>'
```

Example prompt: Check whether the entities ['OpenAI', 'Google', 'Anthropic'] appear consistently in this text: 'OpenAI released GPT-4 while Goggle announced Gemini and Anthropic launched Claude.'

## When to prefer this

Use this endpoint when you need a lightweight, pay-per-call check to verify that a specific list of named entities is consistently and correctly referenced within a body of text — particularly useful in automated content generation pipelines, editorial QA workflows, or agent-generated document review where entity correctness matters.

## Known failure modes

- Empty or missing text field returns an error or trivial result
- Empty entities array may produce a vacuous success without meaningful validation
- Malformed JSON input may cause a processing error
- Very long texts may time out or return incomplete results
- Ambiguous entity names (e.g. common words) may produce unreliable consistency signals

## 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 how the entities were processed and a 'status' field confirming success or failure of the consistency check operation.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "type": "string"
  },
  "entities": {
   "type": "array",
   "items": {
    "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-entity-consistency-checker-b8946ce5/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)
