Vercel API Deployments, Projects, Domains & Env Vars avatar
Vercel API Deployments, Projects, Domains & Env Vars

Pricing

from $0.01 / 1,000 results

Go to Apify Store
Vercel API Deployments, Projects, Domains & Env Vars

Vercel API Deployments, Projects, Domains & Env Vars

Manage your Vercel infrastructure programmatically. Deploy applications, manage projects, configure custom domains, and handle environment variables - all through a single API interface.

Pricing

from $0.01 / 1,000 results

Rating

0.0

(0)

Developer

John Rippy

John Rippy

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

12 days ago

Last modified

Share

Vercel API - Deployments, Projects, Domains & Env Vars

API Integration

This actor connects to an external API service. You'll need valid API credentials from the service provider.


API Integration

This actor connects to an external API service. You'll need valid API credentials from the service provider.


Manage Vercel programmatically. List and create deployments, manage projects, configure domains, set environment variables, and monitor deployment logs. Perfect for CI/CD automation, multi-tenant platforms, and DevOps workflows.

Features

Project Management

  • list_projects - List all projects in your account/team
  • get_project - Get detailed project information
  • create_project - Create a new project with Git integration
  • delete_project - Delete a project

Deployment Operations

  • list_deployments - List deployments for a project
  • get_deployment - Get deployment details and status
  • create_deployment - Trigger a new deployment
  • cancel_deployment - Cancel an in-progress deployment
  • get_deployment_logs - Retrieve deployment build logs

Domain Management

  • list_domains - List domains attached to a project
  • add_domain - Add a custom domain to a project
  • remove_domain - Remove a domain from a project
  • verify_domain - Check domain verification status

Environment Variables

  • list_env_vars - List environment variables for a project
  • set_env_var - Create or update an environment variable
  • delete_env_var - Remove an environment variable

Account & Teams

  • get_user - Get current user information
  • list_teams - List teams you belong to

Quick Start

{
"input": "your input here"
}

Demo Mode

Set demoMode: true to test with sample data (no charges). When you're ready for real results, set demoMode: false or omit it.

{
"demoMode": true,
...
}

Input Parameters

ParameterTypeRequiredDescription
See input schema

Output Format

{
"task": "list_deployments",
"success": true,
"results": [
{
"id": "dpl_abc123",
"name": "my-app",
"url": "my-app-abc123.vercel.app",
"state": "READY",
"createdAt": "2024-01-20T10:00:00Z",
"meta": {
"gitCommitSha": "a1b2c3d",
"gitCommitMessage": "Fix homepage layout"
}
}
],
"pagination": {
"limit": 20
},
"timestamp": "2024-01-20T14:30:00Z"
}

Pricing

This actor uses pay-per-event billing: $0.01 per query (all tasks)

Use Cases

  • CI/CD Automation - Trigger deployments from external pipelines
  • Multi-tenant Platforms - Programmatically manage customer projects
  • DevOps Workflows - Automate environment configuration
  • Deployment Monitoring - Track deployment status and logs
  • Domain Automation - Bulk domain management
  • Secret Management - Sync environment variables across projects
  • Infrastructure as Code - Version control your Vercel config

Common Problems & Solutions

"Invalid API key" error

Cause: Your API key is wrong, expired, or doesn't have the right permissions. Fix: Double-check your API key. Make sure you copied it exactly without extra spaces.

"Rate limit exceeded" error

Cause: You've hit the API's rate limits. Fix: Wait a few minutes, then try again. Consider reducing the number of concurrent requests.

Empty or incomplete results

Cause: The target may have anti-scraping protection or the data doesn't exist. Fix:

  • Check if the URL/search query is correct
  • Try with different parameters
  • Some sites may block automated access

Demo data showing instead of real results

Cause: demoMode is still set to true. Fix: Set demoMode: false and provide your API key(s).


Built by John Rippy | Actor Arsenal