# KiHustle Slug Generator

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

Generates a URL-friendly slug from a given article or page title

## Facts

- Endpoint: POST https://kihustle.tech/agents/api/v1/slug-generator
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kihustle-slug-generator-1b0a3a48
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_t9vGc3TTdr_xw91w457PD

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-slug-generator-1b0a3a48 -d '<json body>'
```

Example prompt: Can you generate a URL slug for my article titled 'How to Build a Side Hustle Using AI Automation in 2025'?

## When to prefer this

Use this endpoint when you need a quick, cheap ($0.001 USDC) programmatic slug generation from a plain text title without setting up your own slugification logic. Suitable for content automation pipelines, CMS integrations, and SEO workflows where consistent URL-safe slug formatting is needed at scale.

## Known failure modes

- Empty or missing title field returns an error or empty slug
- Very long titles may be truncated or cause unexpected slug output
- Special characters in non-Latin scripts (e.g. German umlauts) may not be transliterated correctly
- Malformed JSON request body returns a 400-level 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

Returns a JSON object with a 'result' field containing the generated URL slug (lowercase, hyphenated, URL-safe string derived from the input title) and a 'status' field confirming success.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "title": {
   "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-slug-generator-1b0a3a48/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)
