Getting Started

Build your first digital store with DeliverKit in minutes

DeliverKit is a powerful platform for building and managing digital commerce stores. Whether you're selling software licenses, digital downloads, or subscription services, DeliverKit provides everything you need to get started quickly.

Before you begin

Make sure you have a DeliverKit account. Sign up for free if you haven't already.

Quick Start

1. Install the SDK

Choose your preferred language:

Terminal
# JavaScript/Node.js
npm install @deliverkit/sdk

# Python
pip install deliverkit

# PHP
composer require deliverkit/sdk

2. Initialize the Client

JavaScript
import DeliverKit from '@deliverkit/sdk';

const deliverkit = new DeliverKit({
  apiKey: 'your_api_key_here'
});

3. Create Your First Store

JavaScript
const store = await deliverkit.stores.create({
  name: "My Store",
  subdomain: "mystore",
  currency: "USD"
});

console.log('Store created:', store.id);

Success!

Your store is now live at mystore.deliverkit.app

Next Steps