Demo Site — This is a demonstration site and is not intended for production use. Property of SecuredAll.
API Reference

LaunchPad API

Build powerful integrations with our REST API. Full access to projects, deployments, and more.

Base URL

https://api.launchpad.example.com/v1

Authentication

All API requests require authentication using a Bearer token. You can generate API tokens from your dashboard settings.

curl https://api.launchpad.example.com/v1/projects \
  -H "Authorization: Bearer YOUR_API_TOKEN"

Rate Limits

API requests are rate limited based on your plan:

  • Free: 100 requests/minute
  • Pro: 1,000 requests/minute
  • Enterprise: Custom limits

Projects

GET /projects
POST /projects
GET /projects/{id}
PATCH /projects/{id}
DELETE /projects/{id}

Deployments

GET /deployments
POST /deployments
GET /deployments/{id}
POST /deployments/{id}/rollback
DELETE /deployments/{id}

Environments

GET /projects/{id}/environments
POST /projects/{id}/environments
GET /environments/{id}/variables
PUT /environments/{id}/variables

Domains

GET /projects/{id}/domains
POST /projects/{id}/domains
DELETE /domains/{id}
POST /domains/{id}/verify

Team

GET /team/members
POST /team/invites
PATCH /team/members/{id}
DELETE /team/members/{id}

Official SDKs