Quick Start

Ship in five minutes.

From zero to your first Qarl Buddy reply — no infrastructure, no model setup, no prompt engineering.

  1. 01

    Create an account

    Sign in with Google or email to open your developer workspace.

  2. 02

    Create a project

    Projects group your API keys, rate limits and usage logs.

  3. 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
  4. 04

    Install the SDK

    Or skip it and call the REST endpoint directly with fetch or curl.

    npm install @zetiora/sdk
  5. 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.