---
title: "GPT 5 Pro now available in the AI Gateway | Netlify Changelog"
description: "Get the latest updates on Netlify products and features to meet your developer needs."
source: "https://www.netlify.com/changelog/gpt-5-pro-ai-gateway/"
last_updated: "2026-07-12T12:41:30.000Z"
---
GPT-5 Pro is now available through Netlify’s AI Gateway — no extra setup required. You can use the OpenAI SDK directly, without needing to manage API keys or external accounts.

Here’s how you can use it today in Netlify Functions:

```
import { OpenAI } from "openai";
export default async () => {  const openai = new OpenAI();  const response = await openai.responses.create({    model: "gpt-5-pro",    input: "Give pros and cons of using GPT-5 Pro over open models.",  });};
```

This is supported across Edge, Background, and Scheduled Functions and includes features like [Rate-Limiting](https://docs.netlify.com/manage/security/secure-access-to-sites/rate-limiting/#set-rate-limiting-rules-in-code), access to Netlify’s [advanced caching primitives](https://docs.netlify.com/build/caching/caching-overview/), and many others.

See more in the [AI Gateway docs](https://docs.netlify.com/build/ai-gateway/overview/).