API Documentation
Build integrations with the Glance platform. Manage clients, products, invoices, inventory, and more through the REST API or the official Node.js SDK.
Quick Start
With the Node.js SDK:
TypeScript
import { GlanceClient } from "@glance-il/sdk";
const glance = new GlanceClient({
apiKey: process.env.GLANCE_API_KEY!,
});
const { data: clients } = await glance.clients.list();Or with a direct API call:
Terminal
$ curl https://api.glance.co.il/clients \ -H "Authorization: Bearer YOUR_API_KEY"
Getting Started
Core Resources
Guides
Base URL
All API requests are made to:
https://api.glance.co.il