AnimateX Documentation

AnimateX Getting Started Guide

Welcome to AnimateX! This guide will help you get started with our platform, using advanced AI technology to transform static images into dynamic, interactive content.

Quick Start

Learn the basics and create your first animation in minutes

Developer Guide

Integrate AnimateX into your applications using our SDK

Community

Join our community of creators and developers

Installation

npm install @animatex/sdk

Basic Usage

import { AnimateX } from '@animatex/sdk';

// Initialize client
const animateX = new AnimateX({
  apiKey: 'YOUR_API_KEY',
});

// Create animation from image
const animation = await animateX.createAnimation({
  image: imageFile,
  template: 'facial-expression',
  duration: 3,
});

// Render animation
animation.render('#animation-container');