The Kyara Intelligence API is fully compatible with the OpenAI API specification. Point any OpenAI-compatible client at our endpoint and start making requests.
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.
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.
https://api.kyara-intelligence.com/onboard?redirect=https://your-app.com/callback