ec
Ecwid is a versatile e-commerce platform (now Lightspeed E-Series) widely used by Russian merchants. Its REST API provides full access to product catalogs and orders for automation and integration workflows.
With the Ecwid integration in AACFlow, you can:
- Get products: Retrieve the product catalog with pagination and date filters
- Get orders: Retrieve orders with optional date range filtering
This integration enables automated order processing and product catalog synchronization for Ecwid store owners.
Usage Instructions
Integrate Ecwid into the workflow. Requires your Ecwid Store ID and a secret API Token from your Ecwid control panel under Apps → My Apps → Legacy API Keys.
Tools
ecwid_get_products
Get products from Ecwid store
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
storeId | string | Yes | Ecwid store ID |
token | string | Yes | Ecwid secret API token |
limit | number | No | Maximum products to return |
offset | number | No | Pagination offset |
Output
| Parameter | Type | Description |
|---|---|---|
items | array | Array of product objects |
total | number | Total product count |
ecwid_get_orders
Get orders from Ecwid store
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
storeId | string | Yes | Ecwid store ID |
token | string | Yes | Ecwid secret API token |
limit | number | No | Maximum orders to return |
offset | number | No | Pagination offset |
createdFrom | string | No | Orders created from (YYYY-MM-DDTHH:MM:SS) |
createdTo | string | No | Orders created to (YYYY-MM-DDTHH:MM:SS) |
Output
| Parameter | Type | Description |
|---|---|---|
items | array | Array of order objects |
total | number | Total orders count |
Links
- Official API: https://api.ecwid.com/
- AACFlow block source: apps/aacflow/blocks/blocks/ecwid.ts

