Welcome!

Blizzer API

Blizzer API is OpenAI Compatible. This means your API Key works with the OpenAI SDK. Just replace the base_url to point to your litellm proxy. Example Below

import openai
client = openai.OpenAI(
    api_key="your_api_key",
    base_url="https://api.blizzer.tech" # Blizzer API is OpenAI compatible
)

response = client.chat.completions.create(
    model="kiri", # model
    messages = [
        {
            "role": "user",
            "content": "this is a test request, write a short poem"
        }
    ]
)

print(response)

Developer Quick Start

Set up your environment and make your first API request in minutes

Quick Start

Want to deep dive?

Dive a little deeper and start exploring our API reference to get an idea of everything that's possible with the API:

API Reference

Last updated