Skip to content

Pika

Mode: video · Models: 3

Vendor: Pika · Official API docs: Pika API (via Fal AI)

Pika 2.2 is a video model offered through Fal AI. It covers text-to-video and image-to-video (first-frame animation) under one pika-2.2 model, plus two specialized variants: Pika Scenes for multi-image scene composition and Pika Frames for keyframe-transition morphs. Resolutions go up to 1080p with 5- or 10-second clips.

Models

idNameInput type
pika-2.2Pikat2v
pika-2.2-scenesPika Scenesi2v
pika-2.2-framesPika Framesi2v

CLI

bash
# text-to-video
gen-ai generate -m pika-2.2 \
  -p "a large elegant white poodle on a yacht, golden hour" \
  --ar 16:9 -r 720p -d 5

# image-to-video: animate a still as the first frame (aspect derived from image)
gen-ai generate -m pika-2.2 -p "gentle camera push-in, leaves drifting" -i ./still.jpg

# Pika Scenes: compose multiple ingredient images into one scene
gen-ai generate -m pika-2.2-scenes -p "the cat and the dog playing in a sunny garden" \
  -i ./cat.jpg --image ./dog.jpg

# Pika Frames: morph between a start and end keyframe
gen-ai generate -m pika-2.2-frames -p "smooth transition" -i ./start.jpg --image ./end.jpg

MCP

json
{ "name": "picsart_generate",
  "arguments": {
    "model": "pika-2.2",
    "prompt": "a large elegant white poodle on a yacht",
    "aspectRatio": "16:9",
    "resolution": "720p",
    "duration": 5
  } }
json
{ "name": "picsart_generate",
  "arguments": {
    "model": "pika-2.2-scenes",
    "prompt": "the cat and the dog playing in a sunny garden",
    "imageUrls": ["https://example.com/cat.jpg", "https://example.com/dog.jpg"],
    "resolution": "720p",
    "duration": 5
  } }

Parameters

Full parameter surface for every model, sourced from gen-ai models info <id> --json. CLI flags show the primary short form; the canonical --kebab-case long form always works too.

pika-2.2 — Pika

Try pika-2.2 in Playground ↗

Input type: t2v

ParamCLI flagTypeValues
prompt-ptextrequired
duration-denum5 · 10 (default 5)
aspectRatio--arenum16:9 · 9:16 · 1:1 · 4:5 · 5:4 · 3:2 · 2:3 (default 16:9)
resolution-renum720p · 1080p (default 720p)
imageUrls-ifileimage (up to 1)

pika-2.2-scenes — Pika Scenes

Try pika-2.2-scenes in Playground ↗

Input type: i2v

ParamCLI flagTypeValues
prompt-ptextrequired
duration-denum5 · 10 (default 5)
aspectRatio--arenum16:9 · 9:16 · 1:1 · 4:5 · 5:4 · 3:2 · 2:3 (default 16:9)
resolution-renum720p · 1080p (default 720p)
imageUrls-ifilerequired image (up to 4)

pika-2.2-frames — Pika Frames

Try pika-2.2-frames in Playground ↗

Input type: i2v

ParamCLI flagTypeValues
prompt-ptextrequired
duration-denum5 · 10 (default 5)
resolution-renum720p · 1080p (default 720p)
imageUrls-ifilerequired image (up to 2)

Notes: With an image input, pika-2.2 runs image-to-video and derives aspect from the image. pika-2.2-scenes takes ingredient images; pika-2.2-frames morphs between keyframes.

Pricing

bash
gen-ai pricing pika-2.2 -d 5 -r 720p

Cost scales with duration and resolution.

Built on @picsart/ai-sdk · gen-ai CLI · Picsart MCP · Skills