open token
All models

OpenAI: gpt-oss-120b

openai/gpt-oss-120bby OpenAItext

OpenAI's open-weight 117B mixture-of-experts reasoning model. Available through Bring Your Own Key with your AWS account.

Bring your own key. This model runs on your own AWS account. Connect your credentials under Integrations; Open Token charges a 5% fee on list price and AWS bills you for inference.

Input
$0.15/M
Output
$0.6/M
Context
128K tokens
Max output
33K tokens
Released
Aug 2025

Providers

ProviderModel IDInputOutputContext
Amazon Bedrockopenai.gpt-oss-120b-1:0$0.15/M$0.6/M128K

API

Use any OpenAI-compatible SDK. Create a key in your dashboard.

shell
curl https://getopentoken.com/v1/chat/completions \
  -H "Authorization: Bearer $OPEN_TOKEN_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "openai/gpt-oss-120b",
    "messages": [{"role": "user", "content": "What is the meaning of life?"}]
  }'