Skip to main content
  1. Sign up — Create an account at platform.respan.ai
  2. Create an API key — Generate one on the API keys page
  3. Add credits or a provider key — Add credits on the Credits page or connect your own provider key on the Integrations page

Supported models

After you integrate the LLM proxy, you can choose a model from the Models page. You can see each model’s description, pricing, and other metrics.

Model family

Click an exact model to see its model family — a group of models hosted by different LLM providers.

Integration code

Click the Code button to copy the integration code with the language you are using.

Call models in different frameworks

from openai import OpenAI

client = OpenAI(
    base_url="https://api.respan.ai/api/",
    api_key="YOUR_RESPAN_API_KEY",
)

response = client.chat.completions.create(
    model="claude-3-5-haiku-20241022",
    messages=[
        {"role": "user", "content": "Tell me a long story"}
    ]
)