Skip to main content
The Console at oanim.dev is a web dashboard for the Open Animate platform. Everything you can do with the CLI, you can also do from the console.

Features

Media Playground

Generate images, edit photos, remove backgrounds, upscale, generate video, and audio — all from the browser. Supports 30+ AI models.

API Keys

Create and manage API keys (prefixed anim_) for programmatic access. View last-used timestamps and revoke keys instantly.

Usage & Billing

Track per-model costs, daily API call breakdowns, and aggregate spending. Purchase credits via Stripe.

Templates

Browse video templates (Product Launch, Explainer, Logo Reveal, and more) with links to source code.

Getting started

  1. Sign in at oanim.dev with your GitHub or Google account
  2. Your account starts with $5.00 in free credits
  3. Head to the Generate page to try image and video generation
  4. Create an API key to use with the CLI or SDK

Agent integration

The dashboard home page includes install snippets for popular coding agents:
# Claude Code
npx skills add jacobcwright/open-animate

# OpenClaw
clawhub install oanim

Self-hosting

The console is a standard Next.js app. To self-host:
cd packages/console
cp .env.local.example .env.local
# Fill in Clerk keys and API URL
npm install
npm run build
npm start
Environment variables:
VariableDescription
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEYClerk publishable key
CLERK_SECRET_KEYClerk secret key
NEXT_PUBLIC_API_URLBackend API URL (default: https://api.oanim.dev)