v0 Platform API/API Reference/Projects

Find Projects

Returns a list of all v0 projects in your workspace. Useful for browsing or managing projects across different chats or use cases.

GET/v1/projects

Usage

TypeScript Example
import { v0 } from 'v0-sdk'

const result = await v0.projects.find()

console.log(result)

Response

object: 'list'
data: object[]
id?: string

A unique identifier for the project.

object?: 'project'

Fixed value identifying this object as a project.

name?: string

The name of the project as defined by the user.

privacy?: 'private' | 'team'

The privacy setting for the project - either private or team.

vercelProjectId?: string

Optional ID of the linked Vercel project, if connected.

createdAt?: string

The ISO timestamp representing when the project was created.

updatedAt?: string

The ISO timestamp of the most recent update, if available.

apiUrl?: string

The API endpoint URL for accessing this project programmatically.

webUrl?: string

The web URL where the project can be viewed or managed.