# KiHustle RSS Feed Generator

> KiHustle RSS Feed Generator 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).

Generates an RSS feed from provided content items, title, description, and link for a blog or content site

## Facts

- Endpoint: POST https://kihustle.tech/bot-bazaar/api/v1/rss-feed-generator
- 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-rss-feed-generator-f9973a55
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6lcI7iwgTOXp6XgqzB45L

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-rss-feed-generator-f9973a55 -d '<json body>'
```

Example prompt: Generate an RSS feed for my blog called 'KI Side Hustle Weekly' at kihustle.tech, with the description 'Weekly tips on AI and digital income', and include these three articles as items: my latest guide on AI automation, my solo playbook post, and my affiliate income breakdown.

## When to prefer this

Choose this endpoint when you need to programmatically generate or refresh an RSS feed for a blog, newsletter, or content site — especially when you have a structured list of content items ready and want a lightweight, pay-per-call feed generation service without managing your own RSS infrastructure.

## Known failure modes

- Missing required fields such as title or link may cause processing failure
- Malformed items array entries (non-string values) may cause validation errors
- Invalid or unreachable link URL may result in a failed or incomplete feed
- Server-side errors may return a non-success status in the response

## 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 processing outcome (e.g. 'processed') and a 'status' field confirming success or failure of the RSS feed generation request.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "link": {
   "type": "string"
  },
  "items": {
   "type": "array",
   "items": {
    "type": "object",
    "additionalProperties": {
     "type": "string"
    }
   }
  },
  "title": {
   "type": "string"
  },
  "description": {
   "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-rss-feed-generator-f9973a55/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)
