Quick Start
Ship in five minutes.
From zero to your first Qarl Buddy reply — no infrastructure, no model setup, no prompt engineering.
- 01
Create an account
Sign in with Google or email to open your developer workspace.
- 02
Create a project
Projects group your API keys, rate limits and usage logs.
- 03
Generate an API key
Keys are shown once. Store yours in an environment variable — never in client-side code.
ZETIORA_API_KEY=zk_live_xxxxxxxxxxxxxxxx - 04
Install the SDK
Or skip it and call the REST endpoint directly with fetch or curl.
npm install @zetiora/sdk - 05
Send your first message
Qarl Buddy replies in Swahili, English or a natural mix — matching your user.
import { Zetiora } from "@zetiora/sdk"; const zetiora = new Zetiora({ apiKey: process.env.ZETIORA_API_KEY, baseUrl: "https://YOUR-DOMAIN", }); const reply = await zetiora.ai.chat({ assistant: "qarl-buddy", messages: [{ role: "user", content: "Mambo Qarl, niko na stress leo." }], }); console.log(reply.message.content);
Security
Never expose your API key in browser code or a mobile bundle. Proxy Qarl Buddy through your own backend. Review the developer terms before going to production.