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
Node.js SDK
Install the SDK and start building in minutes
Authentication
Learn how to authenticate with API keys
Error Handling
Understand error responses and codes
Rate Limits
API rate limiting and best practices
Pagination
Navigate through large result sets
Idempotency
Retry document creation without issuing duplicates
Incremental Sync
Pull only what changed, with a resumable cursor
Webhooks
Receive document and payment events as they happen
Core Resources
Guides
Base URL
All API requests are made to:
https://api.glance.co.il