Skip to content

Provider Creatify

hovhannes@picsart.com edited this page Jun 19, 2026 · 3 revisions

Creatify

Mode: video · Models: 1

Vendor: Creatify · Official API docs: Creatify Aurora

Creatify Aurora is an audio-driven avatar model: feed it a single portrait and an audio clip, and it produces a lip-synced talking video. Duration is set by the audio length — there are no resolution or duration parameters. Bring your own audio (for example, TTS from ElevenLabs) and pair it with a clean, front-facing image.

Models

id Name Input type
creatify-aurora Creatify Aurora HD i2v

CLI

# talking-avatar video from a portrait + voiceover
gen-ai generate -m creatify-aurora \
  -i ./portrait.png \
  -a ./voiceover.mp3

MCP

{ "name": "picsart_generate",
  "arguments": {
    "model": "creatify-aurora",
    "imageUrls": ["https://example.com/portrait.png"],
    "audioUrl": "https://example.com/voiceover.mp3"
  } }

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.

creatify-aurora — Creatify Aurora HD

Try creatify-aurora in Playground ↗

Input type: i2v

Param CLI flag Type Values
prompt -p text free text
imageUrls -i file required image (up to 1)
audioUrl -a file required audio

Notes: Aurora is audio-driven — it exposes no resolution, duration, or aspect-ratio params; output length equals the audio length.

Pricing

gen-ai pricing creatify-aurora

Cost is billed per second of output (i.e. by the audio length), with partial seconds rounded up.

Clone this wiki locally