Skip to content
For LLMsView as Markdown·

BigCommerce

Manage products, orders, and customers on BigCommerce stores.

DetailValue
CategoryE-commerce
Base URLhttps://api.bigcommerce.com/stores/{store_hash}/v3
AuthenticationAPI Key
Endpoints5
Connector keybigcommerce

Using BigCommerce in a workflow

  1. Go to Connections and click New Connection.
  2. Pick BigCommerce from the marketplace.
  3. Enter your credentials (see Authentication above for what's expected).
  4. In a workflow, drop an API Call node and select this connection.
  5. Pick the operation you need from the Operation dropdown — the full list is below.

Available endpoints

EndpointSummary
GET /catalog/productsList products
POST /catalog/productsCreate a product
GET /catalog/products/{product_id}Get a product
GET /ordersList orders
GET /customersList customers

Each endpoint is documented in full below. Use the outline on the right to jump to one.

GET /catalog/products

List products

DetailValue
Operation IDecommerce.listProducts
MethodGET
Path/catalog/products

Parameters

NameLocationTypeRequired
limitqueryintegerNo
pagequeryintegerNo

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your BigCommerce connection from the Connection dropdown.
  3. In the Operation dropdown, select ecommerce.listProducts.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream BigCommerce API reference.

POST /catalog/products

Create a product

DetailValue
Operation IDecommerce.createProduct
MethodPOST
Path/catalog/products

Parameters

No parameters.

Request Body

FieldType
namestring
pricenumber
typestring
weightnumber

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your BigCommerce connection from the Connection dropdown.
  3. In the Operation dropdown, select ecommerce.createProduct.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream BigCommerce API reference.

GET /catalog/products/{product_id}

Get a product

DetailValue
Operation IDecommerce.getProduct
MethodGET
Path/catalog/products/{product_id}

Parameters

NameLocationTypeRequired
product_idpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your BigCommerce connection from the Connection dropdown.
  3. In the Operation dropdown, select ecommerce.getProduct.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream BigCommerce API reference.

GET /orders

List orders

DetailValue
Operation IDecommerce.listOrders
MethodGET
Path/orders

Parameters

NameLocationTypeRequired
limitqueryintegerNo

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your BigCommerce connection from the Connection dropdown.
  3. In the Operation dropdown, select ecommerce.listOrders.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream BigCommerce API reference.

GET /customers

List customers

DetailValue
Operation IDecommerce.listCustomers
MethodGET
Path/customers

Parameters

NameLocationTypeRequired
limitqueryintegerNo

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your BigCommerce connection from the Connection dropdown.
  3. In the Operation dropdown, select ecommerce.listCustomers.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream BigCommerce API reference.