Built for
Developers

Powerful APIs, comprehensive documentation, and tools to help you build amazing developer experiences.

Simple Integration

1// Install the Kuulto SDK
2npm install @kuulto/sdk
3
4// Initialize the Kuulto Client
5import { Kuulto } from '@kuulto/sdk'@kuulto/sdk';
6
7const client = new Kuulto({
8 apiKey: process.env.KUULTO_API_KEY
9});
10
11// 1. Conversational Chatbot
12const chat = await client.chat.send({
13 message: "Generate a react component for a video player"video player",
14 context: "Next.js + Framer Motion"
15});
16
17// 2. High-Fidelity Image Generation
18const asset = await client.visual.generate({
19 prompt: "Cinematic portrait of a robot coder, 8k, photorealistic",
20 style: "premium-dark"
21});
22
23// 3. Dynamic Video Generation
24const clip = await client.video.create({
25 prompt: "A smooth drone shot over a futuristic data center",
26 duration: 5,
27 quality: "4k"
28});
29
30console.log("Chat Response:", chat.response);
31console.log("Visual Asset:", asset.url);
32console.log("Video Clip:", clip.url);