Quick Start Guide

This guide will help you get started with the ZeebeeAI Chat SDK Platform in just a few minutes. Follow these steps to set up your project and make your first API call.

Prerequisites: You'll need a ZeebeeAI account. If you don't have one yet, sign up for free.

Get Your API Key

First, you need to get your API key:

  1. Log in to your ZeebeeAI account
  2. Navigate to the API Keys section in your dashboard
  3. Click "+ New API key"
  4. Give your key a descriptive name (e.g., "Development Key")
  5. Copy your newly created API key and store it securely
Important: Your API key is sensitive information. Never share it publicly or commit it to version control.

Choose Your Integration Method

ZeebeeAI offers multiple integration options. Choose the one that best suits your needs:

Official SDK Libraries

The recommended way to integrate ZeebeeAI into your application. SDKs provide type safety, error handling, and convenient methods.

Available for:

Direct API Calls

Use standard HTTP requests to interact with our API endpoints directly.

Useful for:

  • Languages without official SDK support
  • Custom integrations
  • Advanced use cases

See the REST API Documentation for details.

Security Best Practice: Never hardcode or expose your API key in client-side code. Instead, set up a server-side proxy endpoint that securely stores your API key in environment variables and forwards requests to ZeebeeAI. This prevents your API key from being exposed to users and potential attackers.