ShortGenius SDK
Add the official TypeScript SDK and your app can draft scripts, render videos, generate images and speech, and manage your account — fully typed and production-ready.
The ShortGenius SDK is the official, fully typed TypeScript client for the ShortGenius public API, published on npm as "shortgenius". You construct a client with your API key and call typed methods to draft scripts, generate videos, images, and text-to-speech, start recurring video series, and manage your library and account.
Once SDK is connected, you can drive ShortGenius with plain-language prompts.
Install, authenticate, and make your first typed call.
Add the package to your project.
npm install shortgenius
Generate a key at https://shortgenius.com/developers/keys.
Construct the client with your API key.
import { ShortGenius } from 'shortgenius'
const sg = new ShortGenius({ bearerAuth: process.env.SHORTGENIUS_API_KEY })Every endpoint is fully typed — draft a video, generate an image, or check your usage.
Frequently Asked Questions
Install the "shortgenius" package from npm, then construct the client with your API key: new ShortGenius({ bearerAuth: 'sg-...' }). Authentication is handled entirely by your API key.
Create a free account and generate an API key to get started in minutes.