# 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-13).

Detects orphan pages on a website by analyzing a set of links and page URLs to identify pages with no internal links pointing to them

## Facts

- Endpoint: POST https://kihustle.tech/agents/api/v1/orphan-page-detector
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kihustle-orphan-page-detector-549c687d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ms0mlF9-RIwDpFQUJAYUW

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-549c687d -d '<json body>'
```

Example prompt: Scan my site for orphan pages — here's the full list of pages and internal links I've crawled, and I need to know which pages aren't being linked to from anywhere.

## When to prefer this

Use this endpoint when you need a lightweight, pay-per-call orphan page detection service for SEO audits or site health checks, especially if you already have a crawled list of pages and internal links and need to quickly identify structurally disconnected content without setting up a full SEO platform.

## Known failure modes

- Empty or malformed pages/links arrays may return unexpected results
- Large page sets may time out or return partial results
- Malformed link objects in the links array could cause processing errors
- No detailed per-page orphan breakdown visible in example response schema — actual orphan list may require further parsing

## 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 'processed' and a 'status' field indicating 'success', signaling that the orphan page detection analysis has been completed. The endpoint processes the submitted links and pages arrays to identify orphaned pages.

## 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-549c687d/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)
