Ship anything with Vercel
Deploy your app on Vercel in three steps: install the CLI, add agent support if you use an AI coding agent, and deploy.
index.ts
import { generateText } from 'ai';
const { text } = await generateText({
model: 'anthropic/claude-opus-4.7',
prompt: 'What is the capital of France?',
});index.py
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?'}]
)index.sh
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.
Build with AI
Build your applications
Use one or more of the following tools to build your application depending on your needs:
Use Vercel's AI infrastructure
Add intelligence to your applications with Vercel's AI-first infrastructure:
Secure your applications
Secure your applications with the following tools:
Collaborate with your team
Collaborate with your team using the following tools:
Deploy and scale
Vercel handles infrastructure automatically and provides these tools to help you deploy and scale:
Guides and tutorials
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.