API Docs

Janus OpenAI-compatible endpoints

Janus implements the OpenAI Chat Completions contract with streaming responses, artifacts, and reasoning content. Use the same request shape you already have.

POST /v1/chat/completionsGET /v1/modelsGET /v1/artifacts/:id
curlQuickstart
curl https://janus-gateway-bqou.onrender.com/v1/chat/completions \
  -H "Content-Type: application/json" \
  -d '{
    "model": "baseline",
    "messages": [{ "role": "user", "content": "Hello Janus" }],
    "stream": true
  }'