Sign in to create an API key
You can browse models, strategies, pricing, and docs without an account. Sign in only when you are ready to create an API key, add credits, or view private usage.

Quick start after you create a key

import openai

client = openai.OpenAI(
    base_url="https://api.getwaterfall.org/v1",
    api_key="wf-sk-your-key-here"
)

response = client.chat.completions.create(
    model="auto",  # Smart routing to cheapest capable model
    messages=[{"role": "user", "content": "Hello!"}]
)