Skip to content
For LLMsView as Markdown·

Vercel

Manage deployments, projects, and domains on the Vercel platform.

DetailValue
CategoryCloud & Infra
Base URLhttps://api.vercel.com
AuthenticationBearer Token
Endpoints5
Connector keyvercel

Using Vercel in a workflow

  1. Go to Connections and click New Connection.
  2. Pick Vercel from the marketplace.
  3. Enter your credentials (see Authentication above for what's expected).
  4. In a workflow, drop an API Call node and select this connection.
  5. Pick the operation you need from the Operation dropdown — the full list is below.

Available endpoints

EndpointSummary
GET /v9/projectsList all projects
GET /v9/projects/{idOrName}Get a project
GET /v6/deploymentsList deployments
GET /v5/domainsList domains
GET /v2/teamsList teams

Each endpoint is documented in full below. Use the outline on the right to jump to one.

GET /v9/projects

List all projects

DetailValue
Operation IDhosting.listProjects
MethodGET
Path/v9/projects

Parameters

NameLocationTypeRequired
limitqueryintegerNo

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Vercel connection from the Connection dropdown.
  3. In the Operation dropdown, select hosting.listProjects.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Vercel API reference.

GET /v9/projects/{idOrName}

Get a project

DetailValue
Operation IDhosting.getProject
MethodGET
Path/v9/projects/{idOrName}

Parameters

NameLocationTypeRequired
idOrNamepathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Vercel connection from the Connection dropdown.
  3. In the Operation dropdown, select hosting.getProject.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Vercel API reference.

GET /v6/deployments

List deployments

DetailValue
Operation IDhosting.listDeployments
MethodGET
Path/v6/deployments

Parameters

NameLocationTypeRequired
projectIdquerystringNo
limitqueryintegerNo

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Vercel connection from the Connection dropdown.
  3. In the Operation dropdown, select hosting.listDeployments.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Vercel API reference.

GET /v5/domains

List domains

DetailValue
Operation IDhosting.listDomains
MethodGET
Path/v5/domains

Parameters

NameLocationTypeRequired
limitqueryintegerNo

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Vercel connection from the Connection dropdown.
  3. In the Operation dropdown, select hosting.listDomains.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Vercel API reference.

GET /v2/teams

List teams

DetailValue
Operation IDhosting.listTeams
MethodGET
Path/v2/teams

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Vercel connection from the Connection dropdown.
  3. In the Operation dropdown, select hosting.listTeams.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Vercel API reference.