Quickstart

Send your first routed request.

Create an API key in the console, then call https://api.onemux.net/v1/chat/completions.

Setup checklist

  1. Create key
  2. Select model
  3. Send request
curl https://api.onemux.net/v1/chat/completions \
+  -H "Authorization: Bearer $ONEMUX_API_KEY" \
+  -H "Content-Type: application/json" \
+  -d '{"model":"gpt-4o","messages":[{"role":"user","content":"Hello OneMux"}]}'