This block + 6,000 more — yours with Pro

Features API Endpoints

16/170
DocsAll

Platform

One SDK for every capability

Every feature of the platform is reachable from a single typed client. Scan the grid to see the shape of each call before you even install the package.

projects.ts
const { data } = await sdk.projects.list({
  limit: 50,
  team: 'acme-core',
})

Projects

List, create, and update projects with paginated queries and team assignments.

deploy.ts
await sdk.deployments.create({
  project: 'web',
  ref: 'main',
})

Deployments

Trigger zero-downtime deploys from a git branch and roll back with one call.

webhooks.ts
await sdk.webhooks.create({
  url: 'https://acme.dev/hook',
  events: ['deploy.*'],
})

Webhooks

Register signed webhook endpoints for real-time event notifications.

analytics.ts
const rows = await sdk.events.query({
  range: '7d',
  groupBy: 'route',
})

Analytics

Query events with time-range filters and aggregate by dimension in one request.

notify.ts
await sdk.notify.send({
  to: '[email protected]',
  template: 'deploy_ok',
})

Notifications

Send transactional alerts across email, Slack, and in-app with a single call.

tokens.ts
await sdk.tokens.create({
  scope: 'deploy:write',
  ttl: '30d',
})

Access Control

Issue scoped tokens and revoke them instantly with field-level permissions.