WorldRouter

Models
OpenAItext

GPT OSS 120B

Large open-weight GPT OSS model for economical reasoning, coding, and general chat.

gpt-oss-120b

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-120b",
    "messages": [
      {
        "role": "user",
        "content": "Hello"
      }
    ]
  }'