Skip to content

Picsart AI PlaygroundOne platform. 201 models. Every interface.

Generate image, video, and audio in the browser, inside your AI agent, or from the terminal. One account, one credit balance, 31 providers.

One platform, six ways to use it

Picsart AI Playground is one model catalog — accessible from wherever you work.

SurfaceBest for
AI Playground (web / mobile)Exploration, prompt iteration, model comparison, small-scale creative work
Skills and MCPGenerating inside Claude, ChatGPT, Cursor, Windsurf, or any AI agent
gen-ai CLIScheduled jobs, batch catalogs, scripting, CI/CD automation
SDKNode.js/TypeScript developers building apps with type-safe, auto-polling model calls
REST APIDevelopers in any language (Python, Ruby, Go, PHP) building applications

All share the same model ids, the same parameters, and the same account. Discover a model in Playground, generate from a CLI script, and call it from your agent — all with the same prompt and settings.

Not sure which to use? Read Which tool is right for me?


CLI quickstart

Install the CLI and generate from your terminal in under two minutes:

bash
# macOS / Linux
curl -fsSL https://picsart.com/gen-ai-cli/install.sh | bash

# or npm (all platforms)
npm install -g @picsart/gen-ai

gen-ai login                        # one-time browser auth

# text to video
gen-ai generate -m seedance-2.0 -p "a fox running through autumn leaves" -d 8

# image
gen-ai generate -m flux-2-pro -p "studio shot of a ceramic cup" --ar 4:3

SDK quickstart

Generate from a Node.js or TypeScript app with @picsart/ai-sdk:

typescript
import { createClient } from '@picsart/ai-sdk';
const ai = createClient({ apiKey: process.env.PICSART_API_KEY, apiUrl: 'https://api.picsart.com' });
const result = await ai.generate('flux-2-pro', { prompt: 'studio shot of a ceramic cup', aspectRatio: '4:3' });
console.log(result.url);

Install with npm install @picsart/ai-sdk. Auth is an API key from your account settings (not OAuth). Full details in the SDK guide.


Agent quickstart

Connect Picsart to your AI agent, then generate with a natural-language instruction or a tool call:

AgentConnect
Claude Codeclaude mcp add picsart-gen-ai -- gen-ai-mcp
Cursor / Windsurf / VS CodeAdd gen-ai-mcp to MCP config
Codexcodex://plugins/picsart@openai-curated
ChatGPTSee ChatGPT integration
json
// generate an image via MCP tool call
{ "name": "picsart_generate",
  "arguments": { "model": "flux-2-pro", "prompt": "studio shot of a ceramic cup", "aspectRatio": "4:3" } }

Full details in the MCP Quickstart and Integrations. Browse the model catalog at picsart.com/ai-playground or in the Model Catalog.

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