SellGate API

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

Navigate to DashboardSettingsAPI 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/v1

Response Format

All responses follow this structure:

{
  "data": [...],
  "meta": {
    "total": 100,
    "limit": 25,
    "offset": 0
  }
}
{
  "error": "Error message here"
}

Available Endpoints

ResourceEndpoints
ProductsGET, POST, PATCH, DELETE
OrdersGET, PATCH
CouponsGET, POST, PATCH, DELETE
CustomersGET
FeedbackGET, POST (reply)
TicketsGET, POST (reply), PATCH
BlacklistGET, POST, DELETE
AnalyticsGET
GroupsGET, POST, PATCH, DELETE

For AI Agents

This documentation is available in an LLM-friendly format at:

https://docs.sellgate.cc/llms-full.txt

Need Help?

If you need assistance with the API, please contact our support team or visit our Discord community.

On this page