# KiHustle Video Object Schema Generator

> KiHustle Video Object 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 a structured video object schema (JSON-LD or similar) from basic video metadata inputs like URL, name, duration, and thumbnail.

## Facts

- Endpoint: POST https://kihustle.tech/agents/api/v1/video-object-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-video-object-schema-generator-7534baf3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8i9dTMGCwQyNDIMp495nL

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-video-object-schema-generator-7534baf3 -d '<json body>'
```

Example prompt: Can you generate a structured video object schema for my video called 'How to Build a Side Hustle with AI', the URL is https://myvideo.com/vid123, it's 12 minutes long, and the thumbnail is at https://myvideo.com/thumb123.jpg?

## When to prefer this

Use this endpoint when you need to quickly generate a structured video metadata object (e.g. for schema.org VideoObject, SEO markup, or CMS ingestion) from basic video properties like URL, name, duration, and thumbnail — especially in automated pipelines where manual schema authoring is impractical.

## Known failure modes

- Missing required fields (url, name) may result in incomplete or failed schema generation
- Invalid or unreachable URLs may cause processing errors
- Malformed duration strings may lead to incorrect schema output
- API returns generic success/failure without detailed error messages, making debugging difficult

## 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'), representing the generated structured video schema built from the provided metadata inputs.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string"
  },
  "name": {
   "type": "string"
  },
  "duration": {
   "type": "string"
  },
  "thumbnail": {
   "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-video-object-schema-generator-7534baf3/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)
