---
title: "Claude Haiku 4.5 is 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/claude-haiku-4-5-ai-gateway/"
last_updated: "2026-07-12T12:41:25.000Z"
---
Claude Haiku 4.5 is now available through Netlify’s AI Gateway — no extra setup required.

You can use the native Anthropic SDK without managing API keys or external accounts.

Here’s how to use it today in a Netlify Function with the Anthropic SDK:

```
import Anthropic from "@anthropic-ai/sdk";
export default async () => {  const anthropic = new Anthropic();
  const response = await anthropic.messages.create({    model: "claude-haiku-4-5-20251001",    messages: [      {        role: "user",        content: "Give me pros and cons of using claude-haiku-4-5-20251001 over other 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.

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