# KiHustle Lead Score Calculator

> KiHustle Lead Score Calculator 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).

Calculates a lead quality score from website engagement signals (page views, email clicks, form submissions)

## Facts

- Endpoint: POST https://kihustle.tech/bot-bazaar/api/v1/lead-score-calculator
- 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-lead-score-calculator-d20755d6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PsWJPWY9Xw1amxspsVH0G

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-lead-score-calculator-d20755d6 -d '<json body>'
```

Example prompt: Score this lead for me — they had 12 page views, clicked 3 email links, and submitted 2 forms on the site. How strong is this lead?

## When to prefer this

Choose this endpoint when you need a quick, low-cost ($0.002 USDC) computation to score individual leads based on three simple website engagement signals. Best suited for solo operators or small content-driven side hustles who want to programmatically triage leads from a blog or content funnel without building custom scoring logic. Avoid if you need a rich, multi-dimensional lead scoring model with CRM integration or behavioral segmentation.

## Known failure modes

- Missing required integer fields (page_views, email_clicks, form_submissions) may cause a 400 or unprocessed response
- Non-integer values for engagement counts may cause validation errors
- Response schema is minimal — lead score numeric value may not be explicitly returned, only a generic status/result confirmation
- Service availability issues on the kihustle.tech domain could return 402 or 5xx errors

## 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 (e.g. 'processed') and a 'status' field (e.g. 'success'), indicating the computed lead score outcome for the provided engagement inputs.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "page_views": {
   "type": "integer"
  },
  "email_clicks": {
   "type": "integer"
  },
  "form_submissions": {
   "type": "integer"
  }
 }
}
```

## 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-lead-score-calculator-d20755d6/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)
