# KiHustle Orphan Page Detector

> KiHustle Orphan Page Detector is a paid API for AI agents from kihustle.tech, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Detects orphan pages on a website by analyzing a list of links and pages to identify pages that are not linked to from any other page

## Facts

- Endpoint: POST https://kihustle.tech/bot-bazaar/api/v1/orphan-page-detector
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kihustle-orphan-page-detector-0abbd358
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gMvLz5GX6X5gcU9kjvCnH

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-orphan-page-detector-0abbd358 -d '<json body>'
```

Example prompt: Check my site for orphan pages — here's the list of all my page URLs and internal links I've collected; tell me which pages have no other pages linking to them.

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-call orphan page detection service integrated into an automated SEO or site-audit workflow, especially when you already have a structured list of pages and internal links available and want a quick programmatic check without setting up a full crawl tool.

## Known failure modes

- Malformed link objects in the links array may cause processing errors
- Empty pages array returns a trivial result with no meaningful orphan detection
- Very large page sets may time out or return incomplete results
- Missing or null fields in link objects may be silently ignored, leading to inaccurate orphan detection
- Non-URL strings in the pages array may produce undefined behavior

## 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

A JSON response indicating the processing result, including a status field ('success' or otherwise) and a result field confirming the pages have been analyzed. The specific list of detected orphan pages is returned as part of the result object.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "links": {
   "type": "array",
   "items": {
    "type": "object",
    "additionalProperties": true
   }
  },
  "pages": {
   "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-orphan-page-detector-0abbd358/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)
