# KiHustle Changelog Parser

> KiHustle Changelog Parser 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).

Parses and extracts structured information from raw changelog text input

## Facts

- Endpoint: POST https://kihustle.tech/nexus/api/v1/changelog-parser
- 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-changelog-parser-d458a835
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_csAYlaJumVHwFiPMnNEWu

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-changelog-parser-d458a835 -d '<json body>'
```

Example prompt: Can you parse this changelog text for me and extract the structured release info from it: '## v1.3.0 - 2024-06-01\n- Added dark mode\n- Fixed login bug\n- Improved performance'?

## When to prefer this

Choose this endpoint when you need to programmatically parse raw changelog or release-note text into structured data as part of an automated pipeline. It is suitable for lightweight, per-call changelog extraction at low cost ($0.002 USDC). Prefer it over manual text parsing or heavier NLP pipelines when the input is clearly formatted as a changelog string.

## Known failure modes

- Empty or missing text field returns an error response
- Malformed JSON input body causes a 400-level error
- Extremely long text inputs may time out or return incomplete results
- Non-changelog text may yield a generic processed result with minimal extraction
- Network or server errors return a non-success status

## 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 set to 'success', along with any extracted/structured changelog data derived from the input text.

## 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-changelog-parser-d458a835/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)
