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

Parses and extracts structured information from changelog text submitted as a string

## Facts

- Endpoint: POST https://kihustle.tech/agents/api/v1/changelog-parser
- 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-changelog-parser-39d7951b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RTsD15Mh7PGVvJpf-BAei

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-39d7951b -d '<json body>'
```

Example prompt: Can you parse this changelog text for me and return it as structured data? Here's the raw text: 'v1.2.0 - 2024-01-15: Added dark mode. Fixed login bug. v1.1.0 - 2023-12-01: Initial release.'

## When to prefer this

Use this endpoint when you need a lightweight, pay-per-call API to parse raw changelog or release notes text into structured data without setting up your own parsing logic. Best for automation pipelines and CI/CD workflows that need to extract version history programmatically.

## Known failure modes

- Empty or missing 'text' field in request body — likely returns error or empty result
- Malformed or non-changelog text may return generic processed result without meaningful structure
- Network timeout for very large changelog texts
- Ambiguous changelog formats may produce incomplete or incorrect 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 the processed changelog data and a 'status' field confirming success. The exact parsed structure depends on the input text format.

## 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-39d7951b/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)
