---
title: "Vercel"
url: https://develop.sentry.dev/integrations/vercel/
---

# Vercel Integration

## [Create a Vercel App](https://develop.sentry.dev/integrations/vercel.md#create-a-vercel-app)

To use the Vercel integration you'll need to create your own integration in Vercel. To start, click "Create" in the [Integrations Developer Console](https://vercel.com/dashboard/integrations/console).

When configuring the app, under the **Settings** section:

* Set the `Redirect URL` to `{YOUR_DOMAIN}/extensions/vercel/configure/`
* Set the following API Scopes:

| API Scope                     | Value      |
| ----------------------------- | ---------- |
| Integration Configuration     | Read/Write |
| Projects                      | Read       |
| Project Environment Variables | Read/Write |
| Teams                         | Read       |
| Current User                  | Read       |

* Set the `Webhook URL` to `{YOUR_DOMAIN}/extensions/vercel/webhook/` and subscribe to the following events:

  * Deployment Created
  * Configuration Removed

* Leave the `Configuration URL` empty

After saving, return to your integration settings and take note of your **Client ID** and **Client Secret** which will help authenticate Sentry, and your **URL Slug** which will setup the installation URL. Add those to `config.yml` like this:

```yml
# Vercel #
vercel.client-id: your-client-id
vercel.client-secret: your-client-secret
vercel.integration-slug: your-url-slug
```

Then, go to your integration in Vercel and click on `View in Marketplace`. Add the integration and then follow our [documentation on configuring the Vercel integration](https://docs.sentry.io/product/integrations/deployment/vercel/#configure) to use the integration.
