# KiHustle Kube Manifest Validator Light

> KiHustle Kube Manifest Validator Light 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).

Validates Kubernetes manifest text and returns a lightweight validation result indicating whether the manifest is well-formed

## Facts

- Endpoint: POST https://kihustle.tech/nexus/api/v1/kube-manifest-validator-light
- 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-kube-manifest-validator-light-e989f2bd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gSH6Lbs9n0ttS7lZ6XiPW

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-kube-manifest-validator-light-e989f2bd -d '<json body>'
```

Example prompt: Can you validate this Kubernetes deployment manifest for me and tell me if it's valid: 'apiVersion: apps/v1\nkind: Deployment\nmetadata:\n  name: my-app'?

## When to prefer this

Use this endpoint when you need a fast, cheap ($0.002 USDC) lightweight check on a Kubernetes manifest string without standing up a full kubectl or server-side dry-run. Ideal for CI pipelines, agent workflows, or quick sanity checks where a full schema-deep validation is not required.

## Known failure modes

- Empty or missing 'text' field returns an error or unexpected result
- Severely malformed JSON input may cause a 400-level error
- Non-Kubernetes text submitted may still return 'processed'/'success' if structural validation is minimal
- Rate limiting or payment failure may block the request

## 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 (e.g. 'processed') and a 'status' field (e.g. 'success'), indicating whether the submitted Kubernetes manifest text passed lightweight validation.

## 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-kube-manifest-validator-light-e989f2bd/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)
