API Reference
Build custom integrations with our REST API, webhooks, and official SDKs.
api.brandgate.dev/v1
REST API
Full REST API for products, orders, customers, and more. JSON responses, OAuth2 auth.
api.brandgate.dev/v1Webhooks
Real-time notifications for orders, inventory changes, and customer events.
Event-drivenSDKs
Official SDKs for Node.js, Python, PHP, and Ruby. Get started in minutes.
npm install brandgateQuick Start
// Get your API key from dashboard
const brandgate = require('brandgate')('your_api_key');
// List all products
const products = await brandgate.products.list();
// Create an order
const order = await brandgate.orders.create({
customer_id: 'cust_123',
items: [{ product_id: 'prod_456', quantity: 10 }]
});