Conceptual
3 min read

Creating & Triggering Deploy Hooks

Learn how to create and trigger deploy hooks to integrate Vercel deployments with other systems.
Table of Contents

Deploy Hooks allow you to create URLs that accept HTTP POST requests in order to trigger deployments and re-run the Build Step. These URLs are uniquely linked to your project, repository, and branch, so there is no need to use any authentication mechanism or provide any payload to the POST request.

This feature allows you to integrate Vercel deployments with other systems. For example, you can set up:

  • Automatic deployments on content changes from a Headless CMS
  • Scheduled deployments by configuring third-party cron job services to trigger the Deploy Hook
  • Forced deployments from the command line

To create a Deploy Hook for your project, make sure your project is connected to a Git repository.

Once your project is connected, navigate to its Settings page and then select the Git menu item.

In the "Deploy Hooks" section, choose a name for your Deploy Hook and select the branch that will be deployed when the generated URL is requested.

Creating a new Deploy Hook.

We suggest you use a name that easily identifies the Deploy Hook so you will be able to understand when it triggers a deployment. We also suggest creating only one Deploy Hook per branch unless you’re using multiple data sources.

After submitting the form, you will see a URL that you can copy and use.

To trigger a Deploy Hook, send a GET or POST request to the provided URL.

Deploy Hooks will not be triggered if you have the github.enabled = false configuration present in a vercel.json file.

Here's an example request and response you can use for testing:

example-request
curl -X POST https://api.vercel.com/v1/integrations/deploy/prj_98g22o5YUFVHlKOzj9vKPTyN2SDG/tKybBxqhQs
example-response
{
  "job": {
    "id": "okzCd50AIap1O31g0gne",
    "state": "PENDING",
    "createdAt": 1662825789999
  }
}

You do not need to add an authorization header. See Security to learn more.

After sending a request, you can see that it triggered a deployment on your project dashboard.

Deployments triggered by a Deploy Hook are marked in the list.

When you create a Deploy Hook, a unique identifier is generated in the URL. This allows anyone with the URL to deploy your project, so treat it with the same security as you would any other token or password.

If you believe your Deploy Hook URL has been compromised, you can revoke it and create a new one.

Builds triggered by a Deploy Hook are automatically provided with an appropriate Build Cache by default, if it exists.

Caching helps speed up the Build Step, so we encourage you to keep the default behaviour. However, if you explicitly want to opt out of using a Build Cache, you can disable it by appending ?buildCache=false to the Deploy Hook URL.

Here is an example request that explicitly disables the Build Cache:

example-request
curl -X POST https://api.vercel.com/v1/integrations/deploy/prj_98g22o5YUFVHlKOzj9vKPTyN2SDG/tKybBxqhQs?buildCache=false

Deploy Hooks created before May 11th, 2021 do not have the Build Cache enabled by default. To change it, you can either explicitly append ?buildCache=true to the Deploy Hook URL, or replace your existing Deploy Hook with a newly created one.

If you send multiple requests to deploy the same version of your project, previous deployments for the same Deploy Hook will be canceled to reduce build times.

  • Hobby and Pro accounts have a limit of 5 deploy hooks per project. Enterprise accounts have a limit of 10 deploy hooks per project.
Last updated on February 6, 2023