# 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/agents/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-266280f0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qJW5Qa9QtKKtTUcE8L7BD

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-266280f0 -d '<json body>'
```

Example prompt: Can you scan this HTML and find any broken links for me? Here's the full HTML of my page: <paste HTML>

## When to prefer this

Choose this endpoint when you need a quick, low-cost ($0.002) automated scan of HTML content for broken links without setting up your own link-checking infrastructure. It is well-suited for content pipelines, pre-publish audits, or site maintenance workflows where HTML is already available as a string.

## Known failure modes

- Malformed or missing HTML input may result in an error response
- Very large HTML documents may time out or exceed limits
- Links behind authentication walls cannot be validated
- The minimal response schema suggests limited error detail on failure
- Non-HTML input may be rejected or produce unexpected results

## 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 whether the HTML was processed successfully, along with a status field. The response includes a 'result' field (e.g. 'processed') and a 'status' field (e.g. 'success'), presumably alongside details about which links are broken — though the full schema is minimal and may return a summary result object.

## 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-266280f0/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)
