---
title: "OpenAI GPT-5.5 and GPT-5.5 Pro in AI Gateway & Agent Runners"
description: "Access OpenAI GPT-5.5 and GPT-5.5 Pro models through Netlify AI Gateway and Agent Runners with zero configuration. No API keys required."
source: "https://www.netlify.com/changelog/gpt-5-5-ai-gateway-agent-runners/"
last_updated: "2026-07-02T14:17:42.000Z"
---
OpenAI’s GPT-5.5 and GPT-5.5 Pro models are now available through Netlify’s AI Gateway and Agent Runners with zero configuration required.

Use the OpenAI SDK directly in your Netlify Functions without managing API keys or authentication. The AI Gateway handles everything automatically. Here’s an example using the GPT-5.5 model:

```
import OpenAI from 'openai';
export default async () => {    const openai = new OpenAI();
    const response = await openai.responses.create({        model: 'gpt-5.5',        input: 'Give a concise explanation of how AI works.',    });
    return Response.json(response);};
```

GPT-5.5 and GPT-5.5 Pro are available for all Function types and Agent Runners. You get automatic access to Netlify’s caching, rate limiting, and authentication infrastructure.

Learn more in the [AI Gateway documentation](https://docs.netlify.com/build/ai-gateway/overview/) and [Agent Runners documentation](https://docs.netlify.com/build/build-with-ai/agent-runners/overview/).