Getting Started
BetterBook is an online booking, scheduling and payment platform that enables business of any kind to manage their schedules and accept online bookings and payments.
BetterBook API
The BetterBook API is a secure REST API that enables custom built solutions to fit any business requirement. Every BetterBook account comes standard with an API key that can be used to access the BetterBook API.
Authentication
All requests are authenticated with an API key added to the header of the HTTP request.
const req = await fetch(`https://api.betterbook.co.za/v1/bookings/locations`),{
cache: 'no-cache',
method: 'GET',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
'x-api-key': <API-KEY-HERE>,
},
});
const ret = await req.json();
