BrandGate

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/v1

Webhooks

Real-time notifications for orders, inventory changes, and customer events.

Event-driven

SDKs

Official SDKs for Node.js, Python, PHP, and Ruby. Get started in minutes.

npm install brandgate

Quick 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 }]
});

Ready to build?

Get your API keys and start integrating.

Get API Key