Developers

Build with the Berican API

Powerful APIs, CLI tools, and SDKs to automate your hosting workflow. Deploy in seconds, scale infinitely.
🚀 Developer Tools Coming Soon - API Available Now

Our REST API is live and ready to use. CLI, SDKs, and enhanced tooling are in active development and will be available soon.

Deploy in seconds

A few lines of code is all you need

deploy.js
// Deploy a static site with Berican SDK
import { Berican } from '@berican/sdk';

const client = new Berican({
  apiKey: process.env.BERICAN_API_KEY
});

// Create a new site
const site = await client.sites.create({
  name: 'my-awesome-site',
  type: 'STATIC',
  repository: 'github.com/user/repo',
  branch: 'main',
  framework: 'nextjs',
});

// Deploy it
const deployment = await client.deployments.create(site.id);
console.log('Deployed to:', deployment.deployUrl);

REST API

Available Now

Full programmatic control over your infrastructure

GET
/api/v1/sites
POST
/api/v1/sites
GET
/api/v1/sites/:id
DELETE
/api/v1/sites/:id
POST
/api/v1/sites/:id/deploy
GET
/api/v1/domains
POST
/api/v1/domains/check

CLI Tool

Coming Soon

Deploy from your terminal with ease

InstallSoon
$npm install -g @berican/cli
Commands
berican login
berican init
berican deploy
berican domains list

Official SDKs

In Development

Native libraries for your favorite languages

JS

Node.js

Coming Soon
PY

Python

Coming Soon
GO

Go

Coming Soon
PHP

PHP

Coming Soon
JS
Node.js SDKComing Soon

In Development: The Node.js SDK is currently being finalized and will be published to npm soon. In the meantime, you can use our REST API directly.

Once available, install the official Berican SDK for Node.js via npm:

$npm install @berican/sdk

Quick Start:

import { Berican } from '@berican/sdk';

const client = new Berican({
  apiKey: process.env.BERICAN_API_KEY
});

// List all sites
const sites = await client.sites.list();

// Create and deploy
const site = await client.sites.create({
  name: 'my-site',
  type: 'STATIC',
  repository: 'github.com/user/repo',
  branch: 'main',
});

const deployment = await client.deployments.create(site.id);

Powerful Integrations

Connect with your favorite tools and workflows

GitHub

Auto-deploy on push

GitLab

CI/CD pipeline support

Webhooks

Custom event triggers

API Keys

Programmatic access

Developer Experience

Built by developers, for developers

Fast Deployments

Deploy in under 30 seconds

Secure by Default

Auto SSL, WAF, DDoS protection

Edge Network

300+ global edge locations

Git Integration

Push to deploy workflow

Preview Deploys

Test PRs before merging

Local Dev

Match production locally

Start building today

Get your API key and deploy your first site in minutes.