Quickstart Guide

Get started with Wazza Engine in under 5 minutes

1

Sign Up & Get Your API Key

Create an account at console.wazza.ai and generate your API key from the dashboard.

Your API key will look like: wxz_live_1234567890abcdef

2

Install the SDK (coming soon)

Choose your preferred language:

Node.js / TypeScript

npm install @wazza/engine

Python

pip install wazza-engine

Go

go get github.com/wazza-ai/wazza-engine-go
3

Make Your First Request

Use the Chat Orchestrator to generate content with natural language:

import WazzaEngine from '@wazza/engine';

const wazza = new WazzaEngine({
  apiKey: process.env.WAZZA_API_KEY
});

// Generate an image using natural language
const response = await wazza.chat({
  message: "Generate a photorealistic image of a sunset over mountains",
  parseIntent: true
});

console.log('Job ID:', response.jobId);
console.log('Status:', response.status);

// Poll for completion
const result = await wazza.waitForCompletion(response.jobId);
console.log('Image URL:', result.output.url);
4

Alternative: Direct API Call

You can also make direct HTTP requests:

curl -X POST https://api.wazza.ai/v1/chat \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "message": "Generate a photorealistic image of a sunset",
    "parseIntent": true
  }'

What's Next?