# Content Repurpose / Video Clip Extractor

> Content Repurpose / Video Clip Extractor is a paid API for AI agents from api.borisinc.com, paid per call via x402, $0.004/call, status unknown (last checked 2026-09-14).

Analyzes long-form content and extracts viral clips, chapter markers, and key sentences for repurposing

## Facts

- Endpoint: GET https://api.borisinc.com/paid/util/repurpose
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/content-repurpose-video-clip-extractor-3cde382b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__sTaW5jd89RRKXB8cIjIJ

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 content-repurpose-video-clip-extractor-3cde382b
```

Example prompt: Pull out the top 3 viral clip suggestions from my video content — I want the hook text, estimated duration, and a score for each, plus chapter markers.

## When to prefer this

Choose this endpoint when you need to automatically extract shareable clips, hooks, and chapter structure from long-form content without setting up an account or API key. It is best suited for creator workflows where you want per-call, pay-as-you-go repurposing intelligence rather than a subscription-based video editing platform.

## Known failure modes

- Missing or malformed 'input' object returns validation error
- Unsupported HTTP method (e.g. POST) rejected — only GET/HEAD/DELETE allowed
- Content resource unreachable or returns error — no clips extracted
- Payment not fulfilled via x402 — request blocked with 402 response
- Empty or very short content may return zero clips and no chapters

## How this service works

Live Steam best-sellers, deals, per-app detail and IGDB metadata, Twitch hype scores, and agent utilities for verification and extraction. From $0.001 a call, free samples on every endpoint, auth-then-capture. MCP and HTTP.

## Output

Returns a JSON object containing an array of clip suggestions (each with a hook line, full text, engagement score, and estimated duration in seconds), an array of chapter objects (each with a title and marker/timestamp), the total sentence count, and the number of clips suggested.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "clips": [
   {
    "hook": "the one mistake creators make",
    "text": "...",
    "score": 12,
    "est_seconds": 45
   }
  ],
  "chapters": [
   {
    "title": "...",
    "marker": "section 1"
   }
  ],
  "sentences": 40,
  "clips_suggested": 3
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/content-repurpose-video-clip-extractor-3cde382b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.borisinc.com](https://www.zero.xyz/host/api.borisinc.com/llms.txt)
