Vercel logo

Vercel

SandBaseapi

Published June 21, 2026

About

Access the Vercel REST API. Manage deployments, projects, domains, and environment variables — powered by Nango Connector Gateway.

Documentation

Vercel Connector

Access the Vercel REST API. Manage deployments, projects, domains, and environment variables.

Pricing

OperationPrice
Successful API call (2xx)$0.001
Failed call (4xx/5xx)Free

Quick Test (curl)

# List deployments
curl -X POST https://api.sandbase.ai/v1/run \
  -H "Authorization: Bearer sk-your-key" \
  -H "Content-Type: application/json" \
  -d '{"model": "vercel", "endpoint": "/v2/deployments", "method": "GET", "params": {"limit": 5}}'

# List projects
curl -X POST https://api.sandbase.ai/v1/run \
  -H "Authorization: Bearer sk-your-key" \
  -H "Content-Type: application/json" \
  -d '{"model": "vercel", "endpoint": "/v9/projects", "method": "GET"}'

# Get current user
curl -X POST https://api.sandbase.ai/v1/run \
  -H "Authorization: Bearer sk-your-key" \
  -H "Content-Type: application/json" \
  -d '{"model": "vercel", "endpoint": "/v2/user", "method": "GET"}'

Request Format

POST /v1/run
{
  "model": "vercel",
  "endpoint": "/v2/deployments",
  "method": "GET",
  "params": {},
  "headers": {},
  "body": {},
  "retries": 0
}

Common Endpoints

MethodEndpointDescription
GET/v2/deploymentsList deployments
GET/v9/projectsList projects
GET/v2/userAuthenticated user info
GET/v5/domainsList domains

📖 Full API reference: Vercel REST API Docs

Technical Specs

SpecValue
AuthAPI Key (Nango-managed)
ProxyNango (auto token refresh)
ExecutionSync
Rate limitInherits Vercel's API limits

Try Vercel

Test this model in the Sandbase Playground with your own prompts.

Open in Playground