Developers / SDKs
Official SDKs
Auto-generated from the OpenAPI 3.0 spec, type-safe client libraries. Install with one line, integrate in minutes.
Postman collection
All endpoints, with a ready environment and auth preset.
Example usage (TypeScript)
import { Glanevo } from "@glanevo/api-js";
const glanevo = new Glanevo({
apiKey: process.env.GLANEVO_TOKEN!,
});
const { customers } = await glanevo.customers.list({ limit: 50 });
const appt = await glanevo.appointments.create({
customerId: customers[0].id,
staffId: "stf_...",
serviceName: "Haircut",
date: "2026-05-06",
time: "14:30",
duration: 45,
price: 500,
});