# Relaystation Video Storyboard Sprite Sheet Generator

> Relaystation Video Storyboard Sprite Sheet Generator is a paid API for AI agents from api.relaystation.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Generates a frame-sampled thumbnail sprite sheet from a video URL, suitable for scrubber timelines and video preview strips.

## Facts

- Endpoint: POST https://api.relaystation.ai/v1/media/storyboard
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/relaystation-video-storyboard-sprite-sheet-generator-15ad8231
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_chh4urUX9GeDdaMlSOpLN

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 relaystation-video-storyboard-sprite-sheet-generator-15ad8231 -d '<json body>'
```

Example prompt: Can you generate a storyboard sprite sheet from this video — https://example.com/myvideo.mp4 — sampling one frame every 10 seconds so I can use it as a scrubber timeline in my video player?

## When to prefer this

Choose this endpoint when you need a single-call solution to generate a video scrubber sprite sheet or storyboard thumbnail grid from a video URL, especially in a pay-per-call context with x402 micropayment support. Ideal for video player UIs, content review tools, and media libraries that need frame previews without downloading the full video.

## Known failure modes

- Invalid or inaccessible video URL returns an error
- Video format not supported causes processing failure
- Very long videos may time out if frame count is too high
- Rate limiting or payment failure prevents processing
- Unsupported frame sampling parameters return validation errors

## How this service works

$0.0008/call. Frame-sampled thumbnail sprite sheet from a video — scrubbers and previews in one call. 1¢ x402 min; remainder auto-credits — relaystation.ai/penny

## Output

A sprite sheet image (a grid of video frame thumbnails sampled at regular intervals) returned as an image file or URL, suitable for use as a scrubber timeline or storyboard preview in video players and media tools.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {
      "cols": {
       "type": "integer",
       "maximum": 10,
       "minimum": 1
      },
      "file": {
       "type": "object",
       "description": "cputools input-source: { inline: <base64 ≤ 4 MiB> } or { inputKey: <scratch key ≤ 50 MB> }. The input container must sniff (ffprobe) to the live allowlist (operator-tunable cputools.media.input_formats): 3g2, 3gp, aac, asf, avi, flac, flv, gif, m4a, m4v, matroska, mj2, mov, mov,mp4,m4a,3gp,3g2,mj2, mp3, mp4, mpeg, mpegts, mpegvideo, ogg, wav, webm, wmv. An off-list input is a free 422 UNSUPPORTED_FORMAT."
      },
      "rows": {
       "type": "integer",
       "maximum": 10,
       "minimum": 1
      },
      "tileWidth": {
       "type": "integer",
       "maximum": 640,
       "minimum": 32
      },
      "intervalSeconds": {
       "type": "number",
       "maximum": 3600,
       "minimum": 0.5
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/relaystation-video-storyboard-sprite-sheet-generator-15ad8231/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.relaystation.ai](https://www.zero.xyz/host/api.relaystation.ai/llms.txt)
