Sari la conținutul principal

SDK-uri oficiale

SDK Node TypeScript-first, plus Python și PHP — ghid rapid.

Intermediar· 4 min de citit· Ultima actualizare: 2026-05-05· 19 persoane au găsit asta util
**Node.js / TypeScript** — lansat. ```bash npm install @glanevo/sdk ``` ```ts import { Glanevo } from "@glanevo/sdk"; const glanevo = new Glanevo({ apiKey: process.env.GLANEVO_KEY! }); const appt = await glanevo.appointments.create({ customerId: "cus_xxx", serviceId: "svc_xxx", staffId: "stf_xxx", startAt: "2026-05-22T14:00:00Z", }); console.log(appt.id); ``` **Python** — în beta (pe roadmap; dată neanunțată). ```bash pip install glanevo ``` ```py from glanevo import Glanevo g = Glanevo(api_key="sk_live_...") appt = g.appointments.create(customer_id="cus_x", service_id="svc_x", start_at="...") ``` **PHP** — în alpha (pe roadmap; dată neanunțată). **Orice altceva.** API REST funcționează din orice limbaj; pentru un SDK comunitar, deschideți un pull request pe GitHub. 📦 Repository: [github.com/glanevo/sdk](https://github.com/glanevo/sdk).

V-a fost util acest articol?