OpenAI's fifth-generation flagship model with significant improvements in reasoning, multimodal understanding, and code generation. Features enhanced instruction following and expanded context window.
256K tokens
2
available
Cheapest
Azure AI
$50.00/1M tokens
Azure AI, OpenAI
Sorted by total cost (input + output per 1M tokens). Click a row to view provider details.
| Provider | Pricing (per 1M) | Rate Limits | Regions | Health | Latency |
|---|---|---|---|---|---|
In: $10.00Out: $40.00 | 500 RPM / 500K TPM | us-east-1us-west-2eu-west-1 | Healthy | 0ms | |
In: $10.00Out: $40.00 | 500 RPM / 500K TPM | us-east-1eu-west-1 | Healthy | 0ms |
Use this model via Azure AI with an OpenAI-compatible SDK.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.azure-ai.com/v1",
apiKey: process.env.AZURE_AI_API_KEY,
});
const response = await client.chat.completions.create({
model: "gpt-5",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);Using Azure AI API • OpenAI-compatible SDK