OpenAI · model
GPT-5.1
General purpose, Structured output. Called through Final Router's one OpenAI-compatible endpoint at OpenAI's list price, with no markup on tokens.
openai/gpt-5.1Call GPT-5.1 in one line
GPT-5.1 speaks through the same OpenAI-compatible endpoint as every other model. Point your existing client at Final Router, set the model id, and you also get automatic fallback, spend caps and usage tracking - none of which the provider gives you directly.
from openai import OpenAI
client = OpenAI(
api_key="fr_live_...", # your Final Router key
base_url="https://finalrouter.com/api/v1" # the only line you change
)
resp = client.chat.completions.create(
model="openai/gpt-5.1",
messages=[{"role": "user", "content": "Hello!"}],
)
print(resp.choices[0].message.content)Data & residency
We call api.openai.com, which is served from the United States. They sell EU data residency on other endpoints; we are not on one, so this says what happens to your request rather than what the company offers.
Training: not used to train the model. Retention: Up to 30 days for abuse monitoring; zero-retention available on request.
OpenAI's policy, read 2026-08-21 →Route it, don't pin it
Name GPT-5.1 as your first choice and let a policy fall back to another model when the provider is down - your request still gets answered, and the log shows exactly what happened.
Start freeGPT-5.1 FAQ
- How much does GPT-5.1 cost through Final Router?
- $1.25 per million input tokens and $10 per million output tokens - the provider's own list price, with no markup on tokens. A 5.5% fee applies only when you add credits.
- What is GPT-5.1's context window?
- 400,000 tokens.
- Does GPT-5.1 train on my data?
- No. On the endpoint Final Router calls, OpenAI does not train on your prompts. Data is processed in US.
- How do I call GPT-5.1?
- Point any OpenAI-compatible client at https://finalrouter.com/api/v1 with your Final Router key and set model to "openai/gpt-5.1". Your existing code does not change.
Compare with
All comparisonsReasoning · Huge context · Agentic coding
Agentic coding · Reasoning · Long context
Balanced · Coding · Tool use
Reasoning · Long context · Agentic coding
gpt-5-1Latency and quality are seed figures used for routing order, not billing. Prices are what you are charged.