For the full API reference, see the BigCommerce API documentation.
Connection setup
Create API credentials
In your BigCommerce admin panel, go to Settings > API > API Accounts. Click Create API Account and grant the scopes your workflows need (e.g., Products, Orders, Customers). Copy the Store Hash and Access Token after creation.
Tools
Products
list-products: List products in the catalog
list-products: List products in the catalog
get-product: Get a product by ID
get-product: Get a product by ID
create-product: Create a new product
create-product: Create a new product
Product object with fields such as
name, type, weight, price, sku, description, categories, availability, etc.update-product: Update an existing product
update-product: Update an existing product
delete-product: Delete a product
delete-product: Delete a product
Orders
list-orders: List orders
list-orders: List orders
Returns orders using the BigCommerce v2 Orders API.Example request:Example response:
Page number for pagination.
Number of results per page (max 250).
Filter by order status (e.g.,
Pending, Shipped, Completed).Filter orders created after this date (RFC 2822 or ISO 8601).
Filter by customer ID.
get-order: Get an order by ID
get-order: Get an order by ID
Returns order details using the BigCommerce v2 Orders API.Example request:Example response:
Order ID.
Orders use the BigCommerce v2 API, which returns data in a different format than v3 catalog endpoints.
Customers
list-customers: List customers
list-customers: List customers
get-customer: Get a customer by ID
get-customer: Get a customer by ID
create-customer: Create one or more customers
create-customer: Create one or more customers
Array of customer objects. Each object can include fields such as
email, first_name, last_name, company, phone, etc.Categories
Advanced
raw-api-request: Make an arbitrary API request
raw-api-request: Make an arbitrary API request