# Vercel Integration via LowCodeAPI

**Last Updated**: February 10, 2026

## Overview
Frontend deployment

**Categories:**
- {'id': 'developer-tools', 'name': 'Developer Tools'}

## Base Endpoint
https://api.lowcodeapi.com/vercel

**Important**: Always include the provider name in the URL path after `api.lowcodeapi.com/`

## Authentication
**Type:** TOKEN

**Official Documentation:** https://vercel.com/docs/rest-api

## URL Format (Important)

LowCodeAPI supports two URL formats. **Always try the New Format first**, then fall back to Old Format if needed.

### New Format (Priority)
- Path parameters stay in the URL path
- Do NOT include path parameters as query parameters
- Example: `https://api.lowcodeapi.com/{provider}/resource/{id}?api_token=XXX`

### Old Format (Fallback)
- Path parameters become query parameters
- Example: `https://api.lowcodeapi.com/{provider}/resource/id?id={id}&api_token=XXX`

### Decision Flow for AI Agents
1. Always use **New Format** first - keep path parameters in the URL path
2. If you get a 404 or error, try **Old Format** with sanitized path
3. Log which format worked for future requests to this provider

## API Categories

## Common Endpoints

### Get authenticated user

**Method:** GET
**LowCodeAPI Path:** /v2/user

**New Format URL:**
https://api.lowcodeapi.com/vercel/v2/user?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/vercel/v2/user?api_token=YOUR_API_TOKEN

**Example Request (New Format):**

```bash
curl -X GET 'https://api.lowcodeapi.com/vercel/v2/user?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://vercel.com/docs/rest-api/endpoints/user#get-the-authenticated-user

### List teams

**Method:** GET
**LowCodeAPI Path:** /v2/teams

**New Format URL:**
https://api.lowcodeapi.com/vercel/v2/teams?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/vercel/v2/teams?api_token=YOUR_API_TOKEN

**Query Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| limit | integer |  |
| since | string |  |
| until | string |  |

**Example Request (New Format):**

```bash
curl -X GET 'https://api.lowcodeapi.com/vercel/v2/teams?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://vercel.com/docs/rest-api/endpoints/teams#list-all-teams

### Create a team

**Method:** POST
**LowCodeAPI Path:** /v2/teams

**New Format URL:**
https://api.lowcodeapi.com/vercel/v2/teams?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/vercel/v2/teams?api_token=YOUR_API_TOKEN

**Request Body:**

| Field | Type | Description |
|-------|------|-------------|
| name | string |  |
| slug | string |  |

**Example Request (New Format):**

```bash
curl -X POST 'https://api.lowcodeapi.com/vercel/v2/teams?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://vercel.com/docs/rest-api/endpoints/teams#create-a-team

### Get team information

**Method:** GET
**LowCodeAPI Path:** /v2/teams/{team_id}

**New Format URL:**
https://api.lowcodeapi.com/vercel/v2/teams/{team_id}?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/vercel/v2/teams/team_id?team_id={team_id}&api_token=YOUR_API_TOKEN

**Path Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| team_id | string |  |

**Example Request (New Format):**

```bash
curl -X GET 'https://api.lowcodeapi.com/vercel/v2/teams/{team_id}?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://vercel.com/docs/rest-api/endpoints/teams#get-a-team

### Update team

**Method:** PATCH
**LowCodeAPI Path:** /v2/teams/{team_id}

**New Format URL:**
https://api.lowcodeapi.com/vercel/v2/teams/{team_id}?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/vercel/v2/teams/team_id?team_id={team_id}&api_token=YOUR_API_TOKEN

**Path Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| team_id | string |  |

**Request Body:**

| Field | Type | Description |
|-------|------|-------------|
| name | string |  |
| slug | string |  |

**Example Request (New Format):**

```bash
curl -X PATCH 'https://api.lowcodeapi.com/vercel/v2/teams/{team_id}?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://vercel.com/docs/rest-api/endpoints/teams#update-a-team

### Delete team

**Method:** DELETE
**LowCodeAPI Path:** /v2/teams/{team_id}

**New Format URL:**
https://api.lowcodeapi.com/vercel/v2/teams/{team_id}?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/vercel/v2/teams/team_id?team_id={team_id}&api_token=YOUR_API_TOKEN

**Path Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| team_id | string |  |

**Example Request (New Format):**

```bash
curl -X DELETE 'https://api.lowcodeapi.com/vercel/v2/teams/{team_id}?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://vercel.com/docs/rest-api/endpoints/teams#delete-a-team

### List projects

**Method:** GET
**LowCodeAPI Path:** /v2/projects

**New Format URL:**
https://api.lowcodeapi.com/vercel/v2/projects?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/vercel/v2/projects?api_token=YOUR_API_TOKEN

**Query Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| limit | integer |  |
| since | string |  |
| teamId | string |  |
| until | string |  |

**Example Request (New Format):**

```bash
curl -X GET 'https://api.lowcodeapi.com/vercel/v2/projects?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://vercel.com/docs/rest-api/endpoints/projects#list-all-projects

### Create a project

**Method:** POST
**LowCodeAPI Path:** /v2/projects

**New Format URL:**
https://api.lowcodeapi.com/vercel/v2/projects?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/vercel/v2/projects?api_token=YOUR_API_TOKEN

**Query Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| teamId | string |  |

**Request Body:**

| Field | Type | Description |
|-------|------|-------------|
| buildCommand | string |  |
| devCommand | string |  |
| framework | string |  |
| gitRepository | object |  |
| installCommand | string |  |
| name | string |  |
| outputDirectory | string |  |
| publicSource | boolean |  |
| rootDirectory | string |  |
| serverlessFunctionRegion | string |  |

**Example Request (New Format):**

```bash
curl -X POST 'https://api.lowcodeapi.com/vercel/v2/projects?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://vercel.com/docs/rest-api/endpoints/projects#create-a-project

### Get project

**Method:** GET
**LowCodeAPI Path:** /v2/projects/{project_id}

**New Format URL:**
https://api.lowcodeapi.com/vercel/v2/projects/{project_id}?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/vercel/v2/projects/project_id?project_id={project_id}&api_token=YOUR_API_TOKEN

**Path Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| project_id | string |  |

**Query Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| teamId | string |  |

**Example Request (New Format):**

```bash
curl -X GET 'https://api.lowcodeapi.com/vercel/v2/projects/{project_id}?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://vercel.com/docs/rest-api/endpoints/projects#get-a-project

### Update project

**Method:** PATCH
**LowCodeAPI Path:** /v2/projects/{project_id}

**New Format URL:**
https://api.lowcodeapi.com/vercel/v2/projects/{project_id}?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/vercel/v2/projects/project_id?project_id={project_id}&api_token=YOUR_API_TOKEN

**Path Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| project_id | string |  |

**Query Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| teamId | string |  |

**Request Body:**

| Field | Type | Description |
|-------|------|-------------|
| buildCommand | string |  |
| devCommand | string |  |
| framework | string |  |
| installCommand | string |  |
| name | string |  |
| outputDirectory | string |  |
| publicSource | boolean |  |
| rootDirectory | string |  |
| serverlessFunctionRegion | string |  |

**Example Request (New Format):**

```bash
curl -X PATCH 'https://api.lowcodeapi.com/vercel/v2/projects/{project_id}?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://vercel.com/docs/rest-api/endpoints/projects#update-a-project


## Usage Examples

### Example 1: Basic API Request (New Format)

Making a simple GET request to retrieve resources:

```bash
# Get a list of resources - no path parameters needed
curl -X GET "https://api.lowcodeapi.com/vercel/endpoint?api_token=YOUR_API_TOKEN"
```

### Example 2: Request with Path Parameters (New Format)

Retrieving a specific resource using its ID:

```bash
# Get specific resource by ID - replace RESOURCE_ID with actual ID from previous response
curl -X GET "https://api.lowcodeapi.com/vercel/endpoint/{RESOURCE_ID}?api_token=YOUR_API_TOKEN"
# Note: RESOURCE_ID typically comes from a previous list request or from the provider dashboard
```

### Example 3: POST Request with Body (New Format)

Creating a new resource:

```bash
# Create a new resource
curl -X POST "https://api.lowcodeapi.com/vercel/endpoint?api_token=YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"field": "value", "another_field": "another_value"}'
```

## Error Handling

LowCodeAPI returns standard HTTP status codes. Common errors:

| Status Code | Description |
|-------------|-------------|
| 200 | Success - Request completed successfully |
| 400 | Bad Request - Invalid parameters or request body |
| 401 | Unauthorized - Invalid or missing API token |
| 403 | Forbidden - Insufficient permissions |
| 404 | Not Found - Endpoint or resource doesn't exist |
| 429 | Too Many Requests - Rate limit exceeded |
| 500 | Server Error - Provider API error |

All error responses include error details:

```json
{
  "data": {
    "error": {
      "message": "Error description",
      "code": "ERROR_CODE"
    }
  }
}
```

## Complete Endpoint Reference

| Endpoint | Method | Category |
|----------|--------|----------|
| Get authenticated user | GET | User |
| List teams | GET | Teams |
| Create a team | POST | Teams |
| Get team information | GET | Teams |
| Update team | PATCH | Teams |
| Delete team | DELETE | Teams |
| List projects | GET | Projects |
| Create a project | POST | Projects |
| Get project | GET | Projects |
| Update project | PATCH | Projects |
| Delete project | DELETE | Projects |
| List deployments | GET | Deployments |
| Create a deployment | POST | Deployments |
| Get deployment | GET | Deployments |
| Cancel deployment | PATCH | Deployments |
| Delete deployment | DELETE | Deployments |
| List domains | GET | Domains |
| Add a domain | POST | Domains |
| Get domain | GET | Domains |
| Remove a domain | DELETE | Domains |
| List aliases | GET | Aliases |
| Create an alias | POST | Aliases |
| Get alias | GET | Aliases |
| Delete alias | DELETE | Aliases |
| Get deployment events | GET | Logs |
| List deployment files | GET | Files |
| List secrets | GET | Secrets |
| Create a secret | POST | Secrets |
| Get secret | GET | Secrets |
| Delete secret | DELETE | Secrets |
| List edge configs | GET | Edge Config |
| Create an edge config | POST | Edge Config |
| Get edge config | GET | Edge Config |
| Update edge config | PATCH | Edge Config |
| Delete edge config | DELETE | Edge Config |
| List webhooks | GET | Webhooks |
| Create a webhook | POST | Webhooks |
| Get webhook | GET | Webhooks |
| Update webhook | PATCH | Webhooks |
| Delete webhook | DELETE | Webhooks |
| List DNS records | GET | DNS |
| Create a DNS record | POST | DNS |
| Get DNS record | GET | DNS |
| Delete DNS record | DELETE | DNS |
| List certificates | GET | Certificates |
| Create a certificate | POST | Certificates |
| Get certificate | GET | Certificates |
| Delete certificate | DELETE | Certificates |
| List integrations | GET | Integrations |
| List integration configurations | GET | Integrations |
| Create an integration configuration | POST | Integrations |
| Get integration configuration | GET | Integrations |
| Update integration configuration | PATCH | Integrations |
| Delete integration configuration | DELETE | Integrations |
| List environment variables | GET | Environment Variables |
| Create an environment variable | POST | Environment Variables |
| Get environment variable | GET | Environment Variables |
| Update environment variable | PATCH | Environment Variables |
| Delete environment variable | DELETE | Environment Variables |
| Get project settings | GET | Project Settings |
| Update project settings | PATCH | Project Settings |
| Reads an access group | GET | Access Groups |
| Update an access group | POST | Access Groups |
| Deletes an access group | DELETE | Access Groups |
| List access groups for a team, project or member | GET | Access Groups |
| Creates an access group | POST | Access Groups |
| List members of an access group | GET | Access Groups |
| List projects of an access group | GET | Access Groups |
| Create an access group project | POST | Access Groups |
| Reads an access group project | GET | Access Groups |
| Update an access group project | PATCH | Access Groups |
| Delete an access group project | DELETE | Access Groups |
| Record an artifacts cache usage event | POST | Artifacts |
| Get status of Remote Caching for this principal | GET | Artifacts |
| Download a cache artifact | GET | Artifacts |
| Upload a cache artifact | PUT | Artifacts |
| Check if a cache artifact exists | HEAD | Artifacts |
| Query information about an artifact | POST | Artifacts |
| Gets project-level redirects | GET | Bulk Redirects |
| Stages new redirects for a project | PUT | Bulk Redirects |
| Delete project-level redirects | DELETE | Bulk Redirects |
| Edit a project-level redirect | PATCH | Bulk Redirects |
| Restore staged project-level redirects to their pr... | POST | Bulk Redirects |
| Get the version history for a project's redirects | GET | Bulk Redirects |
| Promote a staging version to production or restore... | POST | Bulk Redirects |
| Retrieve a list of all checks | GET | Checks |
| Creates a new Check | POST | Checks |
| Get a single check | GET | Checks |
| Update a check | PATCH | Checks |
| Rerequest a check | POST | Checks |
| List project members | GET | Project Members |
| Adds a new member to a project | POST | Project Members |
| Remove a Project Member | DELETE | Project Members |

## API Definition Endpoints

You can fetch the complete API specification for this provider:

**New Format (OpenAPI spec):**
```bash
curl 'https://backend.lowcodeapi.com/vercel/openapi'
```

**Old Format (API definition):**
```bash
curl 'https://backend.lowcodeapi.com/vercel/definition'
```

## Response Format

All responses are wrapped in a `data` key:

```json
{
  "data": {
    // Actual response from provider (object or array)
  }
}
```