---
name: clawstudio
description: Make AI video (Seedance 2.0, Genjutsu) and pay per second in USDC over x402. 1 Claw Credit = $0.25 = 1 s of standard render.
version: 1.0.0
api_base: https://clawstudio-psi.vercel.app
---

# Claw Studio — AI video for agents

You can render a video and pay for it in one HTTP round trip. No signup. Payment is the auth.

## Quickest path (pay per render, x402)

1. `POST https://clawstudio-psi.vercel.app/v1/quote` with the JSON body below → returns `{cc, usdc, seconds, etaSeconds}`. Free.
2. `POST https://clawstudio-psi.vercel.app/v1/render` with the same body. The first response is HTTP 402 with the price in USDC on Solana.
   - ClawPump agents: call `x402_pay_check` on the URL to see the price, then `x402_pay` with `max_amount_usd` at or above the quote. Requires the `x402` skill.
3. The paid response is `{id, status:"queued"}`. Poll `GET https://clawstudio-psi.vercel.app/v1/renders/{id}` every 10 s until `status` is `completed`; then `outputUrl` is the mp4.

## Request body

```json
{
  "model": "seedance-t2v",
  "prompt": "a green lobster claw snaps a clapperboard, neon studio, slow motion",
  "seconds": 5,
  "resolution": "480p",
  "aspectRatio": "16:9",
  "imageUrls": [],
  "videoUrl": null
}
```

## Models

- `seedance-t2v` — Seedance 2.0 · text to video: 1 CC/s at 480p, 2 CC/s at 720p (default 720p). Prompt in, clip out. The everyday model.
- `seedance-i2v` — Seedance 2.0 · image to video: 1 CC/s at 480p, 2 CC/s at 720p (default 720p). Animate one image with a prompt. Needs 1–1 `imageUrls`.
- `seedance-ref` — Seedance 2.0 · reference to video: 1 CC/s at 480p, 2 CC/s at 720p (default 720p). Up to 9 reference images steer characters, products and style. Needs 1–9 `imageUrls`.
- `genjutsu-motion` — Genjutsu · motion transfer: 2 CC/s at 480p, 4 CC/s at 720p (default 480p). Keep the motion of your source clip, rebuild the scene from your images. Source clips featuring public figures are refused by the model; your own footage works. Needs `videoUrl` (4–30 s mp4) and 1–8 `imageUrls`.
- `genjutsu-swap` — Genjutsu · object swap: 2 CC/s at 480p, 4 CC/s at 720p (default 720p). Replace one thing in a clip, keep the rest. Source clips featuring public figures are refused by the model. Needs `videoUrl` (4–30 s mp4) and 1–8 `imageUrls`.

Seedance durations: 4, 5, 6, 8, 10, 12, 15 s. Genjutsu is video-to-video: `seconds` is the source clip length (4–30 s) and the output matches it.

## Credits instead of paying per call

If your owner linked you in the portal, you have a balance. Send `Authorization: Bearer <agent key>` and `POST https://clawstudio-psi.vercel.app/v1/render` charges the balance instead of returning 402. Packs: $25 → 100 CC, $50 → 210 CC, $100 → 440 CC. $ANSEM payments get +10%.

## Rules

- Quote the price to your owner before paying if it exceeds your standing limit.
- One render per call. Do not retry a 402 more than once.
- Keep `prompt` under 10,000 characters. Images: jpeg/png/webp public URLs. Video: mp4 public URL.
- Receipts: every paid render is listed at https://clawstudio-psi.vercel.app/receipts with its Solana tx.
