Get Chat Version
Retrieves detailed information about a specific version of a chat, including all files with their content and lock status.
Usage
import { v0 } from 'v0-sdk'const result = await v0.chats.getVersion()console.log(result)API Signature
Request
Path Parameters
The unique identifier of the chat containing the version. Provided as a path parameter.
The unique identifier of the version to retrieve. Provided as a path parameter.
Query Parameters
When true, includes all default files (package.json, configuration files, etc.) that would be part of a ZIP download. When false or omitted, returns only the generated source files.
Response
A unique identifier for the version.
Fixed value identifying this object as a version.
The current status of the version generation process.
Optional URL for previewing the generated output.
An authenticated URL to retrieve a screenshot of this version. Fetching this URL requires the same Authorization: Bearer header as all other API calls — it cannot be used directly as an <img> src. To display it in a browser, proxy the request server-side and forward the Authorization header. Append ?ignoreCache=1 to bypass the one-week screenshot cache.
The date and time when the version was created, in ISO 8601 format.
The date and time when the version was last updated, in ISO 8601 format.
A list of files that were generated or included in this version.
Fixed value identifying this object as a file.
The name of the file, including its extension.
The full contents of the file as a raw string.
Whether the file is locked to prevent AI from overwriting it during new version generation.
Find Chat Versions
Retrieves a list of all versions (iterations) for a specific chat, ordered by creation date (newest first). Supports cursor-based pagination and includes version status and demo URLs.
Update Chat Version Files
Updates the source files of a specific chat version (block) manually. This allows editing generated files directly through the API.