SellGate API Documentation
Complete API reference for integrating with SellGate's e-commerce platform
Welcome to SellGate API
Build powerful integrations with SellGate's comprehensive REST API. Manage your products, orders, customers, and more programmatically.
Quick Start
Get your API key and make your first request in minutes
Products API
Create, update, and manage your product catalog
Orders API
Access and track customer orders
Analytics API
Get revenue, visitor, and performance metrics
Quick Start
Get Your API Key
Navigate to Dashboard → Settings → API and generate your API key.
Make Your First Request
curl -X GET "https://api.sellgate.cc/v1/products" \
-H "Authorization: Bearer sg_live_your_api_key"Explore the Endpoints
Browse the documentation to discover all available endpoints.
Overview
The SellGate API is organized around REST principles. Our API has predictable resource-oriented URLs, accepts JSON-encoded request bodies, returns JSON-encoded responses, and uses standard HTTP response codes and verbs.
Base URL
All API requests should be made to:
https://api.sellgate.cc/v1Response Format
All responses follow this structure:
{
"data": [...],
"meta": {
"total": 100,
"limit": 25,
"offset": 0
}
}{
"error": "Error message here"
}Available Endpoints
| Resource | Endpoints |
|---|---|
| Products | GET, POST, PATCH, DELETE |
| Orders | GET, PATCH |
| Coupons | GET, POST, PATCH, DELETE |
| Customers | GET |
| Feedback | GET, POST (reply) |
| Tickets | GET, POST (reply), PATCH |
| Blacklist | GET, POST, DELETE |
| Analytics | GET |
| Groups | GET, POST, PATCH, DELETE |
For AI Agents
This documentation is available in an LLM-friendly format at:
https://docs.sellgate.cc/llms-full.txtNeed Help?
If you need assistance with the API, please contact our support team or visit our Discord community.