# KiHustle Broken Link Checker

> KiHustle Broken Link Checker 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).

Scans HTML content and identifies broken or dead hyperlinks within it

## Facts

- Endpoint: POST https://kihustle.tech/api/v1/broken-link-checker
- 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-broken-link-checker-d095e893
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qvplxbRwjBL1qqt0EnAxh

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-broken-link-checker-d095e893 -d '<json body>'
```

Example prompt: Can you check this HTML I'm about to publish and tell me if any of the links are broken? Here's the HTML: <html><body><a href='https://example.com'>Example</a><a href='https://dead-link-xyz.com'>Dead</a></body></html>

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-call broken link detection service that accepts raw HTML and returns results without requiring a full site crawl or account setup. It is well-suited for pre-publish validation workflows, CMS integrations, or agent pipelines that process HTML page-by-page rather than crawling entire websites.

## Known failure modes

- Malformed or non-parseable HTML input may result in an error or incomplete scan
- Very large HTML payloads may time out or return partial results
- Links behind authentication walls may be falsely flagged as broken
- Rate limiting may apply if called excessively in a short window
- Network timeouts when checking external links could cause false positives

## 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 indicating the processing result and status, with information about which links in the submitted HTML were found to be broken or invalid. The response includes a 'result' field (e.g. 'processed') and a 'status' field (e.g. 'success'), along with details about any detected broken links.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "html": {
   "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-broken-link-checker-d095e893/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)
