Skip to main content
This quickstart takes you from zero to your first response from the Kyara Intelligence API. By the end you’ll have a working API key, a model, and a successful chat completions call, all in under a minute.
1

Create an API key

Open the Kyara dashboard and create a new API key. The key is shown only once, so copy it immediately and store it somewhere safe.Set it as an environment variable so you never have to hard-code it:
2

Choose a model

Browse the model catalog and copy the ID of the model you want to use. This guide uses deepseek/deepseek-v4-flash as a fast, low-cost default. Swap in any other model ID whenever you like.
3

Send a request

Point your client at the Kyara base URL (https://api.kyara-intelligence.com/v1) and call the chat completions endpoint. If you’re using the JavaScript or Python OpenAI SDK, install it first:
  • JavaScript: npm install openai
  • Python: pip install openai
Then send your first request:
Any OpenAI-compatible SDK works with the same base URL, not just the official openai package. If your tool lets you set a base URL, Kyara works with it.

What’s next

API Reference

Explore the full chat completions request schema, response format, and streaming.

SillyTavern

Connect the SillyTavern frontend to Kyara Intelligence in a few steps.