Ship anything with Vercel
import { generateText } from 'ai';
const { text } = await generateText({
model: 'anthropic/claude-opus-4.7',
prompt: 'What is the capital of France?',
});import os
from openai import OpenAI
client = OpenAI(
api_key=os.getenv('AI_GATEWAY_API_KEY'),
base_url='https://ai-gateway.vercel.sh/v1'
)
response = client.chat.completions.create(
model='openai/gpt-5.5',
messages=[{'role': 'user', 'content': 'Why is the sky blue?'}]
)curl -X POST "https://ai-gateway.vercel.sh/v1/chat/completions" \
-H "Authorization: Bearer $AI_GATEWAY_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "openai/gpt-5.5",
"messages": [
{ "role": "user", "content": "Why is the sky blue?" }
]
}'Connect your Git repository to deploy on every push, with automatic preview environments for testing changes before production.
AI Gateway
Access hundreds of models through one endpoint with budgets, fallbacks, and monitoring.
eve
eve is a filesystem-first framework for building durable backend AI agents.
Agents
Build autonomous workflows and conversational interfaces with the AI SDK.
Sandbox
Run untrusted code in secure, ephemeral execution environments.
Use one or more of the following tools to build your application depending on your needs:
Next.js
Build full-stack applications with Next.js or any of our supported frameworks.
Functions
API routes with Fluid compute, active CPU, and provisioned memory — perfect for AI workloads.
Routing Middleware
Customize your application's behavior with code that runs before a request is processed.
Incremental Static Regeneration
Automatically regenerate your pages on a schedule or when a request is made.
Image Optimization
Optimize your images for the web.
Manage Environments
Local, preview, production, and custom environments.
Add intelligence to your applications with Vercel's AI-first infrastructure:
v0
Iterate on ideas with Vercel's AI-powered development assistant.
AI SDK
Integrate language models with streaming and tool calling.
AI Gateway
Route to any AI provider with automatic failover.
MCP Servers
Create tools for AI agents to interact with your systems.
Agent Resources
Access documentation for AI tools, MCP servers, agent skills, and more.
Claim Deployments
Allow AI agents to deploy a project and let a human take over.
Secure your applications with the following tools:
Deployment Protection
Protect your applications from unauthorized access.
RBAC
Role-based access control for your applications.
Configurable WAF
Customizable rules to protect against attacks, scrapers, and unwanted traffic.
Bot Management
Protect your applications from bots and automated traffic.
BotID
An invisible CAPTCHA that protects against sophisticated bots without challenges.
Platform DDoS Mitigation
Protect your applications from DDoS attacks.
Collaborate with your team using the following tools:
Toolbar
An in-browser toolbar to leave feedback, manage flags, preview drafts, and inspect performance.
Comments
Let teams and invited collaborators comment on your preview and production environments.
Draft Mode
View your unpublished headless CMS content on your site.
Vercel handles infrastructure automatically and provides these tools to help you deploy and scale:
Vercel Delivery Network
Fast, globally distributed execution.
Rolling Releases
Roll out new deployments in increments.
Rollback Deployments
Roll back to a previous deployment for swift recovery from production incidents.
Observability Suite
Monitor performance and debug your AI workflows and apps.
Extend your knowledge with in-depth guides, videos, and tutorials on the Vercel Knowledge Base:
Agent Stack
Build AI agents, integrate language models, and deploy AI-powered apps.
Backend
Server-side patterns, API routes, database connections, and compute.
Services
Deploy multiple frontends and backends within a single Vercel project.
Domains
Manage domains and DNS records for your Vercel projects.
Security
Protect your apps with authentication, firewall rules, and compliance guides.
CDN
Cache content globally, route requests, and run compute close to your data.
Integrations
Connect third-party tools, CMSs, and services to your Vercel project.
Migrations
Bring your existing apps, agents, and workflows to Vercel's agentic infrastructure.
Was this helpful?