---
title: "Get a connector project connection"
method: GET
path: "/v1/connect/connectors/{connector}/projects/{projectId}"
tags: ["connect"]
---

# Get a connector project connection

`GET /v1/connect/connectors/{connector}/projects/{projectId}`

Get the configuration that connects a connector to a project.

## Path parameters

- `connector` string, required — Stable connector ID or URL-encoded team-scoped UID. Examples: `scl_abc123` or `slack%2Fmy-bot`.
- `projectId` string, required — Vercel project ID.

## Query parameters

- `teamId` string
- `slug` string

## Response `200`

The connector project connection.

- ConnectProjectConnection — A connection between a connector and a Vercel project, including the environments where the connector is enabled.
  - `connectorId` string, required — Stable `scl_` connector ID, even when the request used a UID.
  - `project` object, required — Vercel project connected to the connector.
    - `id` string, required — Same Vercel project ID as the connection's top-level `projectId`.
    - `name` string, required — Current Vercel project name.
    - `customEnvironments` object[] — Custom environments available on the project. This list can include environments where the connector is not enabled.
      - `id` string, required — Stable custom environment ID.
      - `slug` string, required — Current human-readable custom environment slug.
  - `enabledEnvironments` union[], required — Environments where the connector is enabled for the project.
    - union
      - string
      - 'development' | 'preview' | 'production'
  - `createdAt` number, required — Time when the project connection was created, in epoch milliseconds.
  - `updatedAt` number, required — Time when the project connection was last updated, in epoch milliseconds.

## Other responses

- `400` — One of the provided values in the request query is invalid.
- `401` — The request is not authorized.
- `403` — You do not have permission to access this resource.
- `404` — The requested resource was not found.
- `410` — The requested resource is no longer available.

## Changes

- **2026-09-02** `284e10c18f4d` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/vercel/apis/api/changes/v1/connect/connectors/:connector/projects/:projectId/get.md)

---

[API](https://skmtc.dev/vercel/apis/api.md) · [All operations](https://skmtc.dev/vercel/apis/api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/vercel/api/revisions/7c947faac0ef/schema)
