Built for developers, loved by teams.

Full REST API, event-driven webhooks, a dedicated developer sandbox, and a modern tech stack designed for reliability and extensibility.

create-order.js
REST API v2
// Create a Sales Order via TradersHubs REST API
const response = await fetch(
  'https://api.tradershubs.com/v2/sales-orders',
  {
    method: 'POST',
    headers: {
      'Authorization': 'Bearer YOUR_API_TOKEN',
      'Content-Type': 'application/json',
    },
    body: JSON.stringify({
      customer_id: 'cust_8821',
      warehouse_id: 'wh_001',
      price_list_id: 'pl_retail',
      items: [
        { product_id: 'sku_XZ901', qty: 2 },
        { product_id: 'sku_AB210', qty: 5 },
      ],
    }),
  }
);
// Returns: { order_id, invoice_id, status, totals }
const order = await response.json();
🔌

REST API v2

Documented, versioned REST API for all platform resources. Build integrations and custom apps on top of TradersHubs.

📡

Webhooks

Event-driven webhooks for real-time integrations. Get notified the instant an order is placed, a shipment is created, or any resource changes.

🧪

Developer Sandbox

Dedicated developer plan with 100K API requests, 10 integrations, and 500K AI tokens. Build and test without touching production.

🔗

Integrations

Connect to external accounting, shipping, and marketing tools. Our integration layer handles authentication, rate limits, and retries.

Battle-Tested Tech Stack

CodeIgniter 4
PHP API Backend
React 19 + TS
Admin Dashboard
React Native
Mobile App
JWT Auth
Secure & Stateless
REST API v2
Versioned & Documented
Multi-Tenant
Isolated Per Tenant