# KiHustle HTML Link Extractor

> KiHustle HTML Link Extractor 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).

Extracts all hyperlinks from a given block of HTML text and returns them as structured data

## Facts

- Endpoint: POST https://kihustle.tech/agents/api/v1/html-link-extractor
- 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-html-link-extractor-88de94c6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9ptcHCKEff9mAP2wTVkIj

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-html-link-extractor-88de94c6 -d '<json body>'
```

Example prompt: Can you pull out all the links from this HTML snippet for me? Here's the content: '<p>Visit <a href="https://example.com">Example</a> or <a href="https://another.com">Another</a></p>'

## When to prefer this

Choose this endpoint when you need a simple, low-cost way to extract hyperlinks from an HTML string without running a full browser or scraping pipeline. It is ideal for lightweight parsing tasks where you already have the raw HTML and just need the links surfaced quickly.

## Known failure modes

- Malformed or non-HTML text input returns an empty result or error
- Very large HTML payloads may time out or be truncated
- No links present in HTML returns an empty list
- Missing or null 'text' field causes a validation error

## 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 object containing a list of extracted URLs or link objects parsed from the submitted HTML text, along with a success status indicator.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "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-html-link-extractor-88de94c6/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)
