WorldRouter

Models
OpenAItext

GPT OSS 20B

Smaller open-weight GPT OSS model for lightweight chat and high-volume routing.

gpt-oss-20b

Quickstart

Call this model

Chat completion
curl https://inference-api.worldrouter.ai/v1/chat/completions \
  -H "Authorization: Bearer your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-oss-20b",
    "messages": [
      {
        "role": "user",
        "content": "Hello"
      }
    ]
  }'