Developers

API Documentation

Build on top of Lantid Sales Pro. A clean REST API, real-time webhooks, and official SDKs.

Authentication

Bearer tokens scoped per organization. Generate keys from Settings → API.

REST endpoints

Standard JSON over HTTPS. Items, suppliers, locations, movements, purchase orders.

Webhooks

Real-time events for stock changes, low-stock alerts, and order updates.

SDKs

Official clients for JavaScript/TypeScript, Python, and PHP. Community libraries for Go and Ruby.

Quick start

# Authenticate
curl https://api.lantid.shop/v1/items \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"

# Create an item
curl -X POST https://api.lantid.shop/v1/items \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "sku": "WIDGET-001",
    "name": "Premium Widget",
    "current_stock": 100,
    "reorder_point": 20
  }'

Core endpoints

GET/v1/items
POST/v1/items
GET/v1/items/:id
PATCH/v1/items/:id
POST/v1/movements
GET/v1/suppliers
POST/v1/purchase-orders
POST/v1/webhooks

Full reference, schemas, and rate limits coming soon — email our developer team for early access.