VercelLogotypeVercelLogotype
    • AI Cloud
      • v0

        Build applications with AI

      • AI SDK

        The AI Toolkit for TypeScript

      • AI Gateway

        One endpoint, all your models

      • Vercel Agent

        An agent that knows your stack

      • Sandbox

        AI workflows in live environments

    • Core Platform
      • CI/CD

        Helping teams ship 6× faster

      • Content Delivery

        Fast, scalable, and reliable

      • Fluid Compute

        Servers, in serverless form

      • Observability

        Trace every step

    • Security
      • Bot Management

        Scalable bot protection

      • BotID

        Invisible CAPTCHA

      • Platform Security

        DDoS Protection, Firewall

      • Web Application Firewall

        Granular, custom protection

    • Company
      • Customers

        Trusted by the best teams

      • Blog

        The latest posts and changes

      • Changelog

        See what shipped

      • Press

        Read the latest news

      • Events

        Join us at an event

    • Learn
      • Docs

        Vercel documentation

      • Academy

        Linear courses to level up

      • Knowledge Base

        Find help quickly

      • Community

        Join the conversation

    • Open Source
      • Next.js

        The native Next.js platform

      • Nuxt

        The progressive web framework

      • Svelte

        The web’s efficient UI framework

      • Turborepo

        Speed with Enterprise scale

    • Use Cases
      • AI Apps

        Deploy at the speed of AI

      • Composable Commerce

        Power storefronts that convert

      • Marketing Sites

        Launch campaigns fast

      • Multi-tenant Platforms

        Scale apps with one codebase

      • Web Apps

        Ship features, not infrastructure

    • Tools
      • Marketplace

        Extend and automate workflows

      • Templates

        Jumpstart app development

      • Partner Finder

        Get help from solution partners

    • Users
      • Platform Engineers

        Automate away repetition

      • Design Engineers

        Deploy for every idea

  • Enterprise
  • Pricing
  • All Posts
  • Engineering
  • Community
  • Company News
  • Customers
  • v0
  • Changelog
  • Press
  • No results found for "".
    Try again with a different keyword.

Follow us on

X

to hear about the changes first.

  • Jan 6, 2026

    Vercel Agent code reviews now follow your code guidelines

    Vercel Agent Coding Guidelines Support (2)Vercel Agent Coding Guidelines Support (2)

    Vercel Agent now applies your repository’s coding guidelines during code reviews.

    Add an AGENTS.md file to your repository, or use existing formats like CLAUDE.md, .cursorrules, or .github/copilot-instructions.md.

    Agent automatically detects and applies these guidelines to provide context-specific feedback for your codebase.

    No configuration required. Learn more about code guidelines.

    Julian Benegas, John Phamous, Marcos Grappeggia

  • Jan 5, 2026

    AI Gateway support for Claude Code

    You can now use Claude Code through Vercel AI Gateway via its Anthropic-compatible API endpoint.

    Route Claude Code requests through AI Gateway to centralize usage and spend, view traces in observability, and benefit from failover between providers for your model of choice.

    Log out if you're already logged in, then set these environment variables to configure Claude Code to use AI Gateway:

    claude /logout
    export ANTHROPIC_BASE_URL="https://ai-gateway.vercel.sh"
    export ANTHROPIC_AUTH_TOKEN="your-ai-gateway-api-key"
    export ANTHROPIC_API_KEY=""

    Setting ANTHROPIC_API_KEY to an empty string is required. Claude Code checks this variable first, and if it's set to a non-empty value, it will use that instead of ANTHROPIC_AUTH_TOKEN.

    Start Claude Code. Requests will route through AI Gateway:

    claude

    See the Claude Code documentation for details.

    +2

    Walter K, Harpreet A, Casey G, Matt L

  • Dec 22, 2025

    MiniMax M2.1 now live on Vercel AI Gateway

    You can now access MiniMax's latest model, M2.1, with Vercel's AI Gateway and no other provider accounts required.

    MiniMax M2.1 is faster than its predecessor M2, with clear improvements specifically in coding use cases and complicated multi-step tasks with tool calls. M2.1 writes higher quality code, is better at following instructions for difficult tasks, and has a cleaner reasoning process. The model has breadth in addition to depth, with improved performance across multiple coding languages (Go, C++, JS, C#, TS, etc.) and refactoring, feature adds, bug fixes, and code review.

    To start building with MiniMax M2.1 via AI SDK, set the model to minimax/minimax-m2.1:

    import { streamText } from 'ai';
    const result = streamText({
    model: 'minimax/minimax-m2.1',
    prompt:
    `Initialize a React + TypeScript project of a sunrise.
    Generate assets with an image tool, compute sun position
    with a time tool, animate it, run tests, and produce a build.`
    });

    AI Gateway provides a unified API for calling models, tracking usage and cost, and configuring retries, failover, and performance optimizations for higher-than-provider uptime. It includes built-in observability, Bring Your Own Key support, and intelligent provider routing with automatic retries.

    Learn more about AI Gateway, view the AI Gateway model leaderboard or try it in our model playground.

    AI Gateway: Track top AI models by usage

    The AI Gateway model leaderboard ranks the most used models over time by total token volume across all traffic through the Gateway. Updates regularly.

    View the leaderboard

    Walter Korman, Rohan Taneja, Jerilyn Zheng

  • Dec 22, 2025

    GLM-4.7 available on Vercel AI Gateway

    You can now access Z.ai's latest model, GLM-4.7, with Vercel's AI Gateway and no other provider accounts required.

    GLM-4.7 comes with major improvements in coding, tool usage, and multi-step reasoning, especially with complex agentic tasks. The model also has a more natural tone for a better conversational experience and can product a more refined aesthetic for front-end work.

    To start building with GLM-4.7 via AI SDK, set the model to zai/glm-4.7:

    import { streamText } from 'ai';
    const result = streamText({
    model: 'zai/glm-4.7',
    prompt:
    `Create an interactive weather timeline app, fetch forecasts
    via weather tool, normalize data, render animated charts,
    cache results, and produce a production build.`
    });

    AI Gateway provides a unified API for calling models, tracking usage and cost, and configuring retries, failover, and performance optimizations for higher-than-provider uptime. It includes built-in observability, Bring Your Own Key support, and intelligent provider routing with automatic retries.

    Learn more about AI Gateway, view the AI Gateway model leaderboard or try it in our model playground.

    AI Gateway: Track top AI models by usage

    The AI Gateway model leaderboard ranks the most used models over time by total token volume across all traffic through the Gateway. Updates regularly.

    View the leaderboard

    Walter Korman, Rohan Taneja, Jerilyn Zheng

  • Dec 22, 2025

    Function start type now available in Runtime Logs

    Function Start Type Runtime Logs DarkFunction Start Type Runtime Logs Dark

    For any request involving a Vercel Function invocation, you can now view the function start type in the right hand details panel of Runtime Logs.

    A Function invocation can be either: Hot, Hot (prewarmed) or Cold. When a Function was invoked and it's a Cold start, we also display the cold start duration like: Cold (280ms).

    Try it out or learn more about Runtime Logs.

    Vincent Voyer, Tom Lienard

  • Dec 19, 2025

    Introducing vercel.ts: Programmatic project configuration

    Vercel now supports vercel.ts, a new TypeScript-based configuration file that brings type safety, dynamic logic, and better developer experience to project configuration.

    vercel.ts lets you express configuration as code by defining advanced routing, request transforms, caching rules, and cron jobs, going beyond what static JSON can express. In addition to full type safety, this also allows access to environment variables, shared logic, and conditional behavior.

    All projects can now use vercel.ts (or .js, .mjs, .cjs, .mts) for project configuration. Properties are defined identically to vercel.json and can be enhanced using the new @vercel/config package.

    vercel.ts
    import { type VercelConfig, routes, deploymentEnv } from '@vercel/config/v1';
    export const config: VercelConfig = {
    framework: 'nextjs',
    crons: [
    { path: '/api/cleanup', schedule: '0 0 * * *' },
    { path: '/api/sync-users', schedule: '*/15 * * * *' },
    ],
    rewrites: [
    routes.rewrite('/(.*)', 'https://external-api.com', {
    requestHeaders: {
    'proxy-header': deploymentEnv('PROXY_HEADER')
    }
    }),
    ],
    };

    Try the playground to explore vercel.ts, learn how to migrate from an existing vercel.json, or read the documentation and the @vercel/config package.

    Pranav Karthik, Matthew Stanciu, Mark Knichel

  • Dec 18, 2025

    Chat with Vercel Marketplace integrations using Vercel Agent

    You can now interact with installed Marketplace integrations using Vercel Agent in the Dashboard. This feature launches with support from Marketplace providers including Neon, Supabase, Dash0, Stripe, Prisma and Mux, with more coming soon.

    You can use Vercel Agent, a chat-based interface to talk to Marketplace Providers MCP (Model Context Protocol), allowing you to query, debug, and manage connected services directly from Vercel. Tools exposed by providers are available automatically, with authentication and configuration handled by Vercel.

    Available free for Vercel Pro and Enterprise customers, with an optional Read-Only mode for safe exploration and debugging.

    Link to headingHow to get started

    • Install or visit a supported Marketplace integration

    • Click on Agent Tools in the left navigation to open the chat interface.

    • Your installed integration's tools load automatically and are ready to use.

    Learn more and get started in the documentation.

    +3

    Tony P, Dima V, Hedi Z, Justin K, Ismael R

  • Dec 18, 2025

    Reduced prices for TLDs .site, .space, .website, .fun, .online, .store, .tech

    Vercel Domains now offers reduced prices for the following TLDs:

    • .site: Now $1.99, down from $2.99

    • .space: Now $1.99, down from $4.99

    • .website: Now $1.99, down from $4.99

    • .fun: Now $1.99, down from $4.99

    • .online: Now $1.99, down from $2.99

    • .store: Now $1.99, down from $2.99

    • .tech: Now $7.99, down from $13.99

    Prices for premium domains are not affected by this pricing change.

    Get your domain today at vercel.com/domains.

    +2

    Elliot D, Ethan N, Rhys S, Mark G

Ready to deploy? Start building with a free account. Speak to an expert for your Pro or Enterprise needs.

Start Deploying
Talk to an Expert

Explore Vercel Enterprise with an interactive product tour, trial, or a personalized demo.

Explore Enterprise

Products

  • AI
  • Enterprise
  • Fluid Compute
  • Next.js
  • Observability
  • Previews
  • Rendering
  • Security
  • Turbo
  • Domains
  • Sandbox
  • v0

Resources

  • Community
  • Docs
  • Knowledge Base
  • Academy
  • Help
  • Integrations
  • Platforms
  • Pricing
  • Resources
  • Solution Partners
  • Startups
  • Templates
    • AI SDK
    • Workflow DevKit
    • Flags SDK
    • Chat SDK
    • Streamdown AI

Company

  • About
  • Blog
  • Careers
  • Changelog
  • Contact Us
  • Customers
  • Events
  • Partners
  • Shipped
  • Privacy Policy

Social

  • GitHub
  • LinkedIn
  • Twitter
  • YouTube

Loading status…

Select a display theme:
v0

Build applications with AI

AI SDK

The AI Toolkit for TypeScript

AI Gateway

One endpoint, all your models

Vercel Agent

An agent that knows your stack

Sandbox

AI workflows in live environments

CI/CD

Helping teams ship 6× faster

Content Delivery

Fast, scalable, and reliable

Fluid Compute

Servers, in serverless form

Observability

Trace every step

Bot Management

Scalable bot protection

BotID

Invisible CAPTCHA

Platform Security

DDoS Protection, Firewall

Web Application Firewall

Granular, custom protection

Customers

Trusted by the best teams

Blog

The latest posts and changes

Changelog

See what shipped

Press

Read the latest news

Events

Join us at an event

Docs

Vercel documentation

Academy

Linear courses to level up

Knowledge Base

Find help quickly

Community

Join the conversation

Next.js

The native Next.js platform

Nuxt

The progressive web framework

Svelte

The web’s efficient UI framework

Turborepo

Speed with Enterprise scale

AI Apps

Deploy at the speed of AI

Composable Commerce

Power storefronts that convert

Marketing Sites

Launch campaigns fast

Multi-tenant Platforms

Scale apps with one codebase

Web Apps

Ship features, not infrastructure

Marketplace

Extend and automate workflows

Templates

Jumpstart app development

Partner Finder

Get help from solution partners

Platform Engineers

Automate away repetition

Design Engineers

Deploy for every idea