# 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-13).

Generates a structured Schema.org VideoObject JSON-LD schema markup from video metadata inputs such as URL, name, duration, and thumbnail.

## Facts

- Endpoint: POST https://kihustle.tech/api/v1/video-object-schema-gen
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kihustle-video-object-schema-generator-b9dcebc0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yl5vc1a8aptyg6ONyJ2_Z

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-b9dcebc0 -d '<json body>'
```

Example prompt: Generate a Schema.org VideoObject JSON-LD schema for my video called 'How to Start a Side Hustle with AI', which is 12 minutes 30 seconds long, hosted at https://kihustle.tech/videos/ai-side-hustle, with thumbnail at https://kihustle.tech/images/ai-thumb.jpg.

## When to prefer this

Choose this endpoint when you need to quickly generate Schema.org VideoObject JSON-LD markup from basic video metadata without writing the structured data by hand. It is well-suited for content publishers, bloggers, and SEO workflows that need to enrich video pages with structured data at scale for a very low per-call cost.

## Known failure modes

- Missing required fields (url or name) may result in incomplete or invalid schema output
- Invalid or malformed URL inputs may produce schema with broken references
- Unexpected duration formats may not be correctly converted to ISO 8601
- Generic success/processed response with minimal error detail makes debugging difficult
- Service may return status:success even with partial or empty output on edge-case inputs

## 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 response containing a structured Schema.org VideoObject JSON-LD object built from the provided video metadata, ready to embed in a webpage's HTML for search engine rich snippet eligibility.

## 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-b9dcebc0/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)
