Dashboard
Manage your API keys, monitor usage, and track costs.
API Keys
Your API keys for authenticating with the Waterfall API.
wf-sk-...abc123Sign up to create your first API key
Requests this month
12,450
Total tokens
45.2M
Total cost
$3.21
Cache hit rate
34%
Recent Activity
Your latest API requests and their routing decisions.
Time
Model
Tokens
Cost
Status
2 min ago
deepseek/deepseek-chat
1,240
$0.00
Free
5 min ago
google/gemini-2.0-flash
3,820
$0.00
Free
12 min ago
anthropic/claude-sonnet-4
8,450
$0.42
Paid
18 min ago
meta-llama/llama-4-scout
920
$0.00
Free
25 min ago
openai/gpt-4o-mini
2,100
$0.01
Paid
31 min ago
deepseek/deepseek-chat
1,580
$0.00
Cached
Quick Start
Drop-in replacement for the OpenAI SDK. Change two lines and you are done.
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!"}]
)