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
| Operation | Price |
|---|---|
| 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
| Method | Endpoint | Description |
|---|---|---|
| GET | /v2/deployments | List deployments |
| GET | /v9/projects | List projects |
| GET | /v2/user | Authenticated user info |
| GET | /v5/domains | List domains |
📖 Full API reference: Vercel REST API Docs
Technical Specs
| Spec | Value |
|---|---|
| Auth | API Key (Nango-managed) |
| Proxy | Nango (auto token refresh) |
| Execution | Sync |
| Rate limit | Inherits Vercel's API limits |
Try Vercel
Test this model in the Sandbase Playground with your own prompts.
Open in Playground