🚀

In Development

This integration is actively being developed and will be released in an upcoming update. Stay tuned!

Integration

SDK for Developer

Integrate TOPSALE label printing directly into your own application

The TOPSALE Developer SDK provides a clean REST API and native client libraries to embed label printing into any web, desktop, or mobile application. Define templates, pass data, and trigger print jobs programmatically.

Full documentation, code samples, and sandbox access will be available at launch.

example.js
import { TopSale } from '@topsale/sdk';

const client = new TopSale({
  apiKey: 'YOUR_API_KEY',
});

// Print a label with dynamic data
await client.labels.print({
  template: 'shipping-label',
  printer:  'warehouse-01',
  data: {
    name:    'Acme Corp',
    sku:     'SKU-20481',
    barcode: '9421902830124',
  },
});