How AI is applied across API Evangelist and APIs.io. Read my AI disclosure →
API Evangelist API Evangelist
Discovery
Learnings
Guidance
Toolbox
Alignment
API Evangelist LLC

Claude Opus 4.7 now available in AI Gateway and Agent Runners

calendar_today April 15, 2026 person domain netlify

Anthropic’s Claude Opus 4.7 model is now available through Netlify’s AI Gateway and Agent Runners with zero configuration required.

Use the Anthropic SDK directly in your Netlify Functions without managing API keys or authentication. The AI Gateway handles everything automatically. Here’s an example using the Claude Opus 4.7 model:

import Anthropic from ‘@anthropic-ai/sdk’;

export default async () => { const anthropic = new Anthropic();

const response = await anthropic.messages.create({
    model: 'claude-opus-4-7',
    max_tokens: 4096,
    messages: [
        {
            role: 'user',
            content: 'How can AI improve my coding?'
        }
    ]
});

return new Response(JSON.stringify(response), {
    headers: { 'Content-Type': 'application/json' }
}); };

Claude Opus 4.7 is 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 and Agent Runners documentation.

open_in_new Read original post