# ContentRewardsAI Frame Extractor

> ContentRewardsAI Frame Extractor is a paid API for AI agents from www.extendcontent.com, paid per call via x402, $0.12/call, status unknown (last checked 2026-09-14).

Extracts JPEG still frames from a completed production video render at $0.002 per frame, accepting specific timestamps or per-second sampling

## Facts

- Endpoint: POST https://www.extendcontent.com/api/agent/shotstack/frames
- Price: $0.12/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/contentrewardsai-frame-extractor-def4d638
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_I1_sxGvnRtX5KnSN8VgJH

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 contentrewardsai-frame-extractor-def4d638 -d '<json body>'
```

Example prompt: Extract JPEG stills from my completed production render abc123xyz — pull a frame every second for the first 30 seconds.

## When to prefer this

Use this endpoint when you have a completed production render (not a staging/watermarked render) and need to extract JPEG stills at specific timestamps or at regular per-second intervals. For staging/free frame extraction from watermarked renders, use the separate stage stills endpoint instead. Prefer this when you need up to 60 frames per call and are billing precisely at $0.002/frame.

## Known failure modes

- render_id not found or not in PRODUCTION status — render must be fully completed before frame extraction
- more than 60 frames requested in a single call — reduce number of timestamps or shorten duration
- timestamp out of range — times must be between 0 and 3600 seconds and within actual render duration
- payment failure — insufficient USDC balance for x402 micropayment
- duration_seconds exceeds 3600 — maximum supported duration is 1 hour

## How this service works

Extract jpg stills from a completed PRODUCTION render at $0.002 per frame (1s @ $0.10/min, 3 dp). Body: { render_id, times?, every_second?, duration_seconds? }. Max 60/request. Stage stills: POST /api/agent/shotstack/render/{id}/frames (SIWX, free).

## Output

Returns JPEG still images extracted from the specified production render at the requested timestamps or at per-second intervals, up to 60 frames per request, billed at $0.002 per frame.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "times": {
   "type": "array",
   "items": {
    "type": "number",
    "maximum": 3600,
    "minimum": 0
   },
   "maxItems": 60
  },
  "render_id": {
   "type": "string",
   "minLength": 1
  },
  "every_second": {
   "type": "boolean"
  },
  "duration_seconds": {
   "type": "number",
   "maximum": 3600,
   "exclusiveMinimum": 0
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/contentrewardsai-frame-extractor-def4d638/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.extendcontent.com](https://www.zero.xyz/host/www.extendcontent.com/llms.txt)
