Spring til hovedindhold

Developers / SDKs

Official SDKs

Auto-generated from the OpenAPI 3.0 spec, type-safe client libraries. Install with one line, integrate in minutes.

@glanevo/api-js

Beta

JavaScript / TypeScript

npm install @glanevo/api-js
GitHub repository ↗

glanevo-python

Beta

Python 3.10+

pip install glanevo
GitHub repository ↗

glanevo-php

Roadmap

PHP 8.2+

composer require glanevo/glanevo-php
GitHub repository ↗

glanevo-ruby

Roadmap

Ruby 3.2+

gem install glanevo
GitHub repository ↗

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,
});