# KiHustle Recipe Schema Generator

> KiHustle Recipe Schema 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 structured recipe schema markup (JSON-LD/Schema.org) from a recipe name, ingredients list, and step-by-step instructions

## Facts

- Endpoint: POST https://kihustle.tech/agents/api/v1/recipe-schema-gen
- 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-recipe-schema-generator-89c90084
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WKEDfS8EA2lSJgdrYG3vD

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-recipe-schema-generator-89c90084 -d '<json body>'
```

Example prompt: Generate a Schema.org recipe schema for 'Classic Margherita Pizza' with ingredients ['pizza dough', 'tomato sauce', 'fresh mozzarella', 'basil leaves', 'olive oil'] and steps ['Preheat oven to 250°C', 'Spread tomato sauce on dough', 'Add mozzarella and basil', 'Bake for 10 minutes', 'Drizzle with olive oil and serve'].

## When to prefer this

Choose this endpoint when you need to programmatically generate Schema.org-compliant recipe structured data from raw recipe components (name, ingredients, steps) for SEO, food blogs, recipe apps, or publishing pipelines. It is well-suited for automated content workflows where recipes need to be rapidly formatted into rich snippet markup without manual JSON-LD authoring. Prefer this over manual schema writing when processing multiple recipes or when embedding schema generation into an agent-driven content pipeline.

## Known failure modes

- Missing required fields (name, ingredients, or steps) may result in incomplete or invalid schema output
- Empty ingredients or steps arrays may generate malformed schema markup
- Malformed input (non-string array items) may cause a processing error or generic success response
- API may return generic {result: processed, status: success} without detailed error messages, making debugging difficult
- Very long ingredient or step lists could cause truncation or timeout

## 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 containing a structured recipe schema (likely Schema.org Recipe JSON-LD format) built from the provided name, ingredients, and steps, along with a success status indicator.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "name": {
   "type": "string"
  },
  "steps": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "ingredients": {
   "type": "array",
   "items": {
    "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-recipe-schema-generator-89c90084/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)
