Home / Text Generation / GPT-OSS 120B

Free GPT-OSS 120B API

Updated 6/9/2026

Run OpenAI's open-weight GPT-OSS 120B with configurable reasoning effort, free on Cloudflare Workers AI.

About the Model

Why use GPT-OSS 120B?

GPT-OSS 120B is OpenAI's open-weight flagship — strong at reasoning, coding, and tool use, with adjustable reasoning effort so you can trade speed against depth per request.

Capabilities

Built for agentic and analytical work with native tool-calling. A top pick when you want frontier reasoning from a self-hostable, openly licensed model.

Why it's free

Runs within Cloudflare Workers AI's 10,000 free Neurons per day allowance via the /ai/run endpoint.

Try it in your browser

Pick a model, paste your own free key, and run. Your key is sent once to call the provider and never stored on our servers.

The model's reply will stream here.

How to call GPT-OSS 120B

curl
curl https://api.cloudflare.com/client/v4/accounts/$CF_ACCOUNT_ID/ai/run/@cf/openai/gpt-oss-120b \
  -H "Authorization: Bearer $CF_API_TOKEN" \
  -d '{"messages":[{"role":"user","content":"Solve: 17 * 24 and show your reasoning."}]}'
python
import os, requests

account = os.environ["CF_ACCOUNT_ID"]
token = os.environ["CF_API_TOKEN"]

resp = requests.post(
    f"https://api.cloudflare.com/client/v4/accounts/{account}/ai/run/@cf/openai/gpt-oss-120b",
    headers={"Authorization": f"Bearer {token}"},
    json={"messages": [{"role": "user", "content": "Solve: 17 * 24 and show your reasoning."}]},
)
print(resp.json()["result"]["response"])

Provider Details

The following platforms provide free access to GPT-OSS 120B through free tiers, trial credits, or daily quotas.

ProviderContext WindowFree QuotaRequires CCTrust / VerifiedAction
Cloudflare Workers AIN/ARate Limit
100 requests per day
No
Trust 99
Details

Frequently Asked Questions

Is GPT-OSS 120B free to use?

Yes. GPT-OSS 120B is available for free through 1 provider(s) listed below, with no purchase required.

What are the rate limits and quotas?

Free access varies by provider — Cloudflare Workers AI: Rate Limit.

How do I get a free GPT-OSS 120B API key?

Sign up with Cloudflare Workers AI, then create an API key from your dashboard. See the provider details above for the exact steps.

Which providers offer GPT-OSS 120B for free?

GPT-OSS 120B is currently available for free via: Cloudflare Workers AI.

Know another free provider for GPT-OSS 120B?

Help the community by sharing other ways to access this model for free.