API Playground
Build a real Waterfall chat completion request, then run it from your terminal or agent.
Request
Auth is only needed when you create or use an API key.
Need one? Create an API key.
Run it
This is an OpenAI-compatible request to Waterfall.
curl https://api.getwaterfall.org/v1/chat/completions \
-H "Authorization: Bearer wf-sk-your-key" \
-H "Content-Type: application/json" \
-d '{
"model": "auto",
"messages": [
{
"role": "user",
"content": "Explain waterfall routing in one paragraph."
}
]
}'