Getting Started
Get up and running with LLM.kiwi API in just a few minutes.
1Create an Account
Sign up with your Google account to get started. No credit card required for the free tier.
Sign Up Now →2Get Your API Key
Go to your Dashboard and create a new API key. Keep this key secure—it provides access to the API on your behalf.
Security: Your API key is only shown once when created. Store it securely and never expose it in client-side code.
3Install the SDK
LLM.kiwi is compatible with the official OpenAI SDK. Install it for your preferred language:
pip install openai4Make Your First Request
Configure the SDK with our base URL and your API key, then make a request:
curl https://api.llm.kiwi/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "pro",
"messages": [
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Hello!"}
]
}'