v0 Platform API/Integrations

Create Vercel Project

Links a Vercel project to an existing v0 project. Enables Vercel-related features and deployment integration within the v0 workspace.

POST /integrations/vercel/projects
import { v0 } from 'v0-sdk'

const result = await v0.integrations.vercel.projects.create()

console.log(result)
POST /integrations/vercel/projects
curl -X POST https://api.v0.dev/integrations/vercel/projects \
  -H "Authorization: Bearer $V0_API_KEY" \
  -H "Content-Type: application/json"

Parameters

Request Body

projectId string Required

The ID of the v0 project to link to the new Vercel project.


name string Required

The name to assign to the new Vercel project.


Response

Response Body

id string Required

A unique identifier for the linked Vercel project.


object string Required

Fixed value identifying this object as a Vercel project.


name string Required

The name of the Vercel project.