Quickstart (first successful call)
Steps
- Obtain Virtual Key + Base URL for your environment.
- Pick a
modelfrom the published catalog (Routing & models). - Send a minimal
chat.completionsrequest with any OpenAI-compatible client.
curl template
curl -sS "$BASE_URL/v1/chat/completions" \
-H "Authorization: Bearer $ROUTIC_VIRTUAL_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"YOUR_CATALOG_MODEL","messages":[{"role":"user","content":"ping"}]}'
Routic