v0 Platform API/Deployments

Find Deployment Errors

Retrieves a list of errors that occurred during a specific deployment. Useful for diagnosing and debugging deployment issues.

GET /deployments/{deploymentId}/errors
import { v0 } from 'v0-sdk'

const result = await v0.deployments.findErrors({
  deploymentId: '123',
})

console.log(result)
GET /deployments/{deploymentId}/errors
curl -X GET https://api.v0.dev/deployments/123/errors \
  -H "Authorization: Bearer $V0_API_KEY" \
  -H "Content-Type: application/json"

Parameters

Path Parameters

deploymentId string Required

The unique identifier of the deployment to inspect for errors. Provided as a path parameter.


Response

Response Body

error string


fullErrorText string


errorType string


formattedError string