Documentation

Getting started

The Kyara Intelligence API is fully compatible with the OpenAI API specification. Point any OpenAI-compatible client at our endpoint and start making requests.

Base URL https://api.kyara-intelligence.com/v1
Auth Bearer YOUR_API_KEY
Format OpenAI-compatible
Authentication

Get your API key

1

Sign up — no credit card required.

2

Go to your Dashboard and copy your inference API key.

3

Pass the key as a Bearer token in the Authorization header of every request.

Quick start

Make your first request

terminal
curl -X POST https://api.kyara-intelligence.com/v1/chat/completions \
  -H "Authorization: Bearer $LONAILABS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "xai/grok-4-1-fast",
    "messages": [
      { "role": "user", "content": "Hello" }
    ]
  }'

No dependencies required. curl is available on most systems.

To stream responses, add "stream": true to your request body. Works with all models and all OpenAI-compatible SDKs via Server-Sent Events.

Models

Available models

Model IDNameProviderTier
xai/grok-4-1-fastGrok 4.1 FastxAIPremium
mistralai/mistral-nemoMistral NemoMistralFree
deepseek/deepseek-v4-flashDeepSeek V4 FlashDeepSeekPremium
z-ai/glm-5.1GLM 5.1Z.aiFrontier
Integration

Onboarding URL

If you're building an application that needs users to provide their own Kyara Intelligence API key, you can redirect them to our onboarding page. The user will log in (or sign up), generate a key, and be redirected back to your app.

URL
https://api.kyara-intelligence.com/onboard?redirect=https://your-app.com/callback
How it works
1

Redirect users to /onboard?redirect=https://your-app.com/callback

2

If not logged in, the user is sent to the login page first, then returned to the onboard flow.

3

The user walks through a consent wizard explaining what an API key is and how it will be used.

4

The user generates a key and copies it. A "Return" button takes them back to your redirect URL.

Requirements
  • The redirect parameter must be a valid URL using HTTPS. HTTP is only allowed in development environments.
  • If no redirect parameter is provided, the user simply generates a standalone API key and is shown a link to the dashboard.
  • The domain of the redirect URL is shown to the user so they know which app is requesting access.
Ready to build?

Start making requests
in under a minute.