Developer
Documentation

Everything you need to integrate, customize, and build with Uniscade's APIs and SDKs.

Docs Getting Started Quickstart Guide

Quickstart Guide

Get up and running with Uniscade's API in under 5 minutes. This guide covers authentication, your first API call, and basic error handling.

Prerequisites

You'll need a Uniscade account and an API key. Get yours from the Dashboard Settings.

1. Install the SDK

Node.js
npm install @uniscade/node
PHP
composer require uniscade/php-sdk

2. Initialize the Client

Node.js
const Uniscade = require('@uniscade/node');

const client = new Uniscade('sk_live_your_api_key_here');

3. Create Your First Booking

Node.js
const booking = await client.bookings.create({
  customer_id: 'cust_abc123',
  service_id: 'serv_styling',
  time_slot: '2026-06-01T10:30:00Z'
});

console.log(booking.id); // "bk_7f8g9h0j"
You're all set!

You've created your first booking. Explore the API reference for more endpoints and options.