Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

ecwid-ecommerce电子商务

Agent Skill

ecwid-ecommerce 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,192

周安装

133

GitHub Stars

公开资料未说明

下载量

1,064
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ecwid-ecommerce(电子商务)
来源仓库:https://github.com/droneitgroup/ecwid-ecommerce
安装命令:
openclaw skills install ecwid-ecommerce
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install ecwid-ecommerce

简介

集成 Ecwid REST API v3,用于管理电商商店的产品、订单、客户、类别及促销活动数据。

  • 适用于 Ecwid 平台商家进行库存、订单和客户信息的自动化管理。
  • 通过 OpenClaw 安装并使用 clawhub 方式部署,需在 Ecwid 控制台创建应用并获取 API 密钥。
  • 使用前请确认 API 配额、数据同步频率及是否允许修改或删除业务数据。
  • ecwid-ecommerce 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
ecwid
description
|
version
1.0.0
metadata
openclaw
requires
env
primaryEnv
ECWID_SECRET_TOKEN
emoji
🛒
homepage
https://github.com/droneitgroup
compatibility
|
scopes
read_store_profile, read_catalog, read_orders, read_customers,
license
MIT-0

Ecwid

Ecwid REST API v3 integration for managing e-commerce store data including products, orders, customers, categories, discount coupons, promotions, abandoned carts, and store profile.

Official docs: https://docs.ecwid.com/api-reference Publisher: https://github.com/droneitgroup


Connection Setup

Set up a Direct API (HTTP) connection with the following settings:

SettingValue
Service nameEcwid
Base URLhttps://app.ecwid.com/api/v3/{storeId} (replace {storeId} with your actual store ID)
Auth typeBearer token
TokenYour store's secret API token (format: secret_xxxxx)
HTTP methodsGET for read-only access. Add POST, PUT, DELETE for write operations.

Finding your Store ID and API token

  1. Log in to your Ecwid admin panel
  2. Go to Settings → API
  3. Your Store ID is displayed at the top
  4. Your Secret API token starts with secret_ — use this as the Bearer token

⚠️ Security best practices

  • Use the minimum scopes needed. If you only need to read data, create a token with read-only scopes (e.g. read_store_profile, read_catalog, read_orders, read_customers, read_discount_coupons) and set HTTP methods to GET only.
  • Never use a full admin token unless you specifically need write access.
  • Test with a sandbox/test store first before connecting a production store.
  • Rotate tokens if you suspect they've been exposed.
  • For more on Ecwid API permissions, see: https://docs.ecwid.com/api-reference/rest-api/authentication

Common Patterns

Pagination

All list endpoints return the same pagination envelope:

{
  "total": 150,
  "count": 100,
  "offset": 0,
  "limit": 100,
  "items": [...]
}

Use offset and limit query parameters to paginate. Maximum and default limit is 100.

Example: ?offset=0?offset=100?offset=200 ...

Response field filtering

All endpoints support the responseFields query parameter to limit which fields are returned:

?responseFields=total,items(id,name,price)

This reduces response size and speeds up requests.

Date formats

Date parameters accept both:

  • UNIX timestamps: 1447804800
  • Datetime strings: 2023-01-15 19:27:50

Authentication

All requests require the Authorization header:

Authorization: Bearer secret_xxxxx

Products

Scope required: read_catalog

Search/list products

GET /products

Query parameters

NameTypeDescription
keywordstringSearch term. Searches name, description, SKU, options, category name, gallery image descriptions, attribute values. Add * at end to disable exact match.
productIdnumberInternal product IDs (comma-separated). If set, other search params are ignored.
skustringExact product or variation SKU match. If set, other params ignored except productId.
categorystringCategory ID to filter products by.
categoriesstringComma-separated category IDs, e.g. 0,123456,138470508.
includeProductsFromSubcategoriesbooleanSet true to include products from subcategories.
priceFromnumberMinimum product price.
priceTonumberMaximum product price.
createdFromnumber/stringProduct creation date lower bound.
createdTonumber/stringProduct creation date upper bound.
updatedFromnumber/stringProduct update date lower bound.
updatedTonumber/stringProduct update date upper bound.
enabledbooleantrue for enabled only, false for disabled only.
inStockbooleantrue for in-stock only, false for out-of-stock only.
sortBystringOne of: RELEVANCE (default), DEFINED_BY_STORE_OWNER, ADDED_TIME_DESC, ADDED_TIME_ASC, NAME_ASC, NAME_DESC, PRICE_ASC, PRICE_DESC, UPDATED_TIME_ASC, UPDATED_TIME_DESC.
offsetnumberPagination offset.
limitnumberMax items to return (max/default: 100).
responseFieldsstringLimit response fields. Example: items(id,name,price,sku)

Key response fields (items)

FieldTypeDescription
idnumberInternal product ID.
skustringProduct SKU.
namestringProduct name.
pricenumberBase product price.
defaultDisplayedPricenumberPrice shown on storefront (includes taxes).
compareToPricenumberPre-sale / "compare to" price.
quantitynumberStock quantity (absent if unlimited is true).
unlimitedbooleanWhether product has unlimited stock.
inStockbooleanWhether in stock.
enabledbooleanWhether visible on storefront.
weightnumberProduct weight.
urlstringStorefront product page URL.
createdstringCreation datetime.
updatedstringLast update datetime.
createTimestampnumberCreation UNIX timestamp.
updateTimestampnumberLast update UNIX timestamp.
descriptionstringProduct description (HTML).
categoryIdsarrayIDs of assigned categories.
defaultCategoryIdnumberDefault category ID.
imageUrlstringMain image URL (1200px).
thumbnailUrlstringThumbnail URL (400px).
originalImageUrlstringFull-size image URL.
optionsarrayProduct options (size, color, etc.).
combinationsarrayProduct variations.
attributesarrayProduct attributes and values.
isGiftCardbooleanWhether this is a gift card.

Example

curl 'https://app.ecwid.com/api/v3/1003/products?keyword=drone&limit=10' \
  -H 'Authorization: Bearer secret_token'

Get single product

GET /products/{productId}

Returns the full product object directly (not wrapped in pagination envelope). The productId is a number.


Orders

Scope required: read_orders

Search/list orders

GET /orders

Query parameters

NameTypeDescription
idsstringComma-separated order IDs, internal IDs, prefixes, and suffixes. Example: EG4H2,J77J8
keywordsstringSearch order ID, transaction ID, addresses, email, tracking code, item SKUs/names, admin notes.
emailstringCustomer email.
customerIdnumberCustomer's internal ID.
productIdnumber/stringProduct IDs in order (comma-separated).
totalFromnumberMinimum order total.
totalTonumberMaximum order total.
createdFromnumber/stringOrder placement datetime lower bound.
createdTonumber/stringOrder placement datetime upper bound.
updatedFromnumber/stringOrder update datetime lower bound.
updatedTonumber/stringOrder update datetime upper bound.
paymentStatusstringPayment status filter. Supports multiple comma-separated values: AWAITING_PAYMENT, PAID, CANCELLED, REFUNDED, PARTIALLY_REFUNDED, INCOMPLETE.
fulfillmentStatusstringFulfillment status filter. Supports multiple comma-separated values: AWAITING_PROCESSING, PROCESSING, SHIPPED, DELIVERED, WILL_NOT_DELIVER, RETURNED, READY_FOR_PICKUP, OUT_FOR_DELIVERY.
paymentMethodstringPayment method name.
shippingMethodstringShipping method name.
couponCodestringDiscount coupon code applied to the order.
offsetnumberPagination offset.
limitnumberMax items to return (max/default: 100).
responseFieldsstringLimit response fields. Example: items(id,email,total,paymentStatus)

Key response fields (items)

FieldTypeDescription
idstringOrder ID (string, not number!) e.g. "ORD001", "XYZ99".
internalIdnumberInternal numeric order ID.
emailstringCustomer email.
totalnumberOrder total with all modifiers.
subtotalnumberCost of products before modifiers.
taxnumberSum of all taxes.
couponDiscountnumberDiscount from coupon.
discountnumberSum of all advanced discounts.
paymentStatusstringPayment status.
fulfillmentStatusstringFulfillment status.
paymentMethodstringPayment method name.
createDatestringOrder placement datetime.
updateDatestringLast update datetime.
createTimestampnumberOrder placement UNIX timestamp.
updateTimestampnumberLast update UNIX timestamp.
customerIdnumberInternal customer ID.
itemsarrayProducts in the order (with productId, name, price, quantity, sku).
shippingPersonobjectShipping address (name, street, city, countryCode, postalCode, phone).
billingPersonobjectBilling address (same fields as shippingPerson).
shippingOptionobjectShipping details (shippingMethodName, shippingRate).
trackingNumberstringShipping tracking code.
privateAdminNotesstringPrivate notes by store owner.
orderCommentsstringCustomer's order comments.

Example

curl 'https://app.ecwid.com/api/v3/1003/orders?paymentStatus=PAID&fulfillmentStatus=DELIVERED&limit=10' \
  -H 'Authorization: Bearer secret_token'

Get single order

GET /orders/{orderId}

Returns the full order object directly. Note: orderId is a string (e.g. "ORD001"), not a number.


Customers

Scope required: read_customers

Search/list customers

GET /customers

Query parameters

NameTypeDescription
keywordstringSearch customer name and email.
namestringSearch customer name (billingPerson.name).
emailstringSearch customer email.
useExactEmailMatchbooleantrue for exact email match (requires email param).
phonestringSearch customer phone number.
citystringSearch customer city in shipping address.
postalCodestringSearch customer ZIP code.
stateOrProvinceCodestringTwo-digit state code.
countryCodesstringCountry codes in shipping address.
companyNamestringCompany name in shipping address.
acceptMarketingbooleanFilter by marketing email acceptance.
customerGroupIdsstringCustomer group IDs (comma-separated).
minOrderCountnumberMinimum number of customer orders.
maxOrderCountnumberMaximum number of customer orders.
minSalesValuenumberMinimum total order value.
maxSalesValuenumberMaximum total order value.
createdFromnumber/stringRegistration datetime lower bound.
createdTonumber/stringRegistration datetime upper bound.
updatedFromnumber/stringLast update datetime lower bound.
updatedTonumber/stringLast update datetime upper bound.
sortBystringOne of: NAME_ASC, NAME_DESC, EMAIL_ASC, EMAIL_DESC, ORDER_COUNT_ASC, ORDER_COUNT_DESC, REGISTERED_DATE_DESC, REGISTERED_DATE_ASC, UPDATED_DATE_DESC, UPDATED_DATE_ASC, SALES_VALUE_ASC, SALES_VALUE_DESC.
offsetnumberPagination offset.
limitnumberMax items (max/default: 100).
responseFieldsstringLimit response fields.

Key response fields (items)

FieldTypeDescription
idnumberInternal customer ID.
emailstringCustomer email.
namestringCustomer name.
totalOrderCountnumberTotal orders placed.
registeredstringRegistration datetime.
updatedstringLast update datetime.
billingPersonobjectBilling name/address.
shippingAddressesarraySaved shipping addresses.
contactsarrayContact info (email, phone, social media).
customerGroupIdnumberCustomer group ID.
customerGroupNamestringCustomer group name.
taxExemptbooleanWhether customer is tax exempt.
acceptMarketingbooleanWhether customer accepted marketing emails.
statsobjectSales stats: numberOfOrders, salesValue, averageOrderValue, firstOrderDate, lastOrderDate.
privateAdminNotesstringPrivate admin notes.

The response also includes allCustomerCount (total unique customers in store) at the top level.

Example

curl 'https://app.ecwid.com/api/v3/1003/customers?email=john@example.com' \
  -H 'Authorization: Bearer secret_token'

Get single customer

GET /customers/{customerId}

Returns the full customer object directly. customerId is a number.


Categories

Scope required: read_catalog

Search/list categories

GET /categories

Query parameters

NameTypeDescription
keywordstringSearch category name and description.
parentnumberParent category ID — returns only direct children.
parentIdsstringComma-separated parent category IDs for descendants search.
withSubcategoriesbooleantrue to get full category tree (subcategories of subcategories).
hidden_categoriesbooleantrue to include disabled categories.
offsetnumberPagination offset.
limitnumberMax items (max/default: 100).
responseFieldsstringLimit response fields.

Key response fields (items)

FieldTypeDescription
idnumberInternal category ID.
parentIdnumberParent category ID.
namestringCategory name.
urlstringFull storefront URL.
productCountnumberProducts in category and subcategories.
enabledProductCountnumberEnabled products (requires productIds=true).
descriptionstringCategory description (HTML).
enabledbooleanWhether category is enabled.
imageUrlstringCategory image (1200px).
thumbnailUrlstringCategory thumbnail (400px).
orderBynumberSort order (starts from 10, increments by 10).
productIdsarrayProduct IDs in category (requires productIds=true query param).

Example

curl 'https://app.ecwid.com/api/v3/1003/categories?parent=0' \
  -H 'Authorization: Bearer secret_token'

Get single category

GET /categories/{categoryId}

Returns the full category object directly. categoryId is a number.


Discount Coupons

Scope required: read_discount_coupons

Search/list coupons

GET /discount_coupons

Query parameters

NameTypeDescription
codestringSearch by coupon code.
discount_typestringFilter by type: ABS, PERCENT, SHIPPING, ABS_AND_SHIPPING, PERCENT_AND_SHIPPING.
availabilitystringFilter by status: ACTIVE, PAUSED, EXPIRED, USEDUP.
createdFromnumber/stringCreation date lower bound.
createdTonumber/stringCreation date upper bound.
updatedFromnumber/stringUpdate date lower bound.
updatedTonumber/stringUpdate date upper bound.
offsetnumberPagination offset.
limitnumberMax items (max/default: 100).
responseFieldsstringLimit response fields.

Key response fields (items)

FieldTypeDescription
idnumberInternal coupon ID.
namestringCoupon name.
codestringCoupon code used at checkout.
discountTypestringType: ABS, PERCENT, SHIPPING, ABS_AND_SHIPPING, PERCENT_AND_SHIPPING.
statusstringStatus: ACTIVE, PAUSED, EXPIRED, USEDUP.
discountnumberDiscount value.
launchDatestringCoupon launch date.
expirationDatestringCoupon expiration date.
totalLimitnumberMinimum order subtotal for coupon to apply.
usesLimitstringUses limit: UNLIMITED, ONCEPERCUSTOMER, SINGLE.
applicationLimitstringApplication limit: UNLIMITED, NEW_CUSTOMER_ONLY, REPEAT_CUSTOMER_ONLY.
creationDatestringCoupon creation date.
updateDatestringLast update date.
orderCountnumberNumber of orders using this coupon.
catalogLimitobjectProduct/category limitations (products, categories arrays).

Example

curl 'https://app.ecwid.com/api/v3/1003/discount_coupons?availability=ACTIVE' \
  -H 'Authorization: Bearer secret_token'

Get single coupon

GET /discount_coupons/{couponId}

Returns the full coupon object directly. couponId is a number.


Promotions

Scope required: read_promotion

List promotions

GET /promotions

Query parameters

NameTypeDescription
responseFieldsstringLimit response fields. Example: items(name,enabled)

Note: Promotions endpoint has minimal filtering — only responseFields is supported.

Key response fields (items)

FieldTypeDescription
idnumberInternal promotion ID.
namestringPromotion name visible at checkout.
enabledbooleanWhether promotion is active.
discountBasestringDiscount base: ITEM, SUBTOTAL, SHIPPING.
discountTypestringDiscount type: PERCENT, ABSOLUTE, FIXED_PRICE.
amountnumberDiscount amount.
triggersobjectTrigger conditions (subtotal, startDate, endDate, customerGroups, minProductQuantityInCart, etc.).
targetsobjectTarget limitations (categories, products, shippingMethods, etc.).

Example

curl 'https://app.ecwid.com/api/v3/1003/promotions' \
  -H 'Authorization: Bearer secret_token'

Abandoned Carts

Scope required: read_orders

IMPORTANT: The endpoint path is /carts, NOT /abandoned_carts. Using /abandoned_carts returns a 404 error.

Search abandoned carts

GET /carts

Query parameters

NameTypeDescription
showHiddenbooleanSet false to exclude deleted carts.
totalFromnumberMinimum cart total.
totalTonumberMaximum cart total.
createdFromnumber/stringCart creation datetime lower bound.
createdTonumber/stringCart creation datetime upper bound.
updatedFromnumber/stringCart update datetime lower bound.
updatedTonumber/stringCart update datetime upper bound.
emailstringCustomer email.
customerIdnumberCustomer's internal ID.
offsetnumberPagination offset.
limitnumberMax items (max: 100, default: 10).
responseFieldsstringLimit response fields. Example: items(cartId,total,email)

Key response fields (items)

FieldTypeDescription
cartIdstringUnique cart ID (UUID format), e.g. "6626E60A-A6F9-4CD5-8230-43D5F162E0CD".
emailstringCustomer email.
totalnumberCart total.
subtotalnumberCart subtotal.
taxnumberTotal tax.
createDatestringCart creation datetime.
updateDatestringLast update datetime.
createTimestampnumberCreation UNIX timestamp.
updateTimestampnumberLast update UNIX timestamp.
customerIdnumberInternal customer ID.
paymentMethodstringSelected payment method.
itemsarrayProducts in cart (productId, name, price, quantity, sku).
billingPersonobjectBilling address.
shippingPersonobjectShipping address.
shippingOptionobjectSelected shipping option.
couponDiscountnumberDiscount from coupon.
discountnumberSum of all advanced discounts.
recoveredOrderIdnumberOrder ID if cart was recovered.
hiddenbooleanWhether cart is hidden from admin.

Example

curl 'https://app.ecwid.com/api/v3/1003/carts?email=customer@example.com' \
  -H 'Authorization: Bearer secret_token'

Get single abandoned cart

GET /carts/{cartId}

Returns the full cart object directly. cartId is a string (UUID format).


Store Profile

Scope required: read_store_profile

Get store profile

GET /profile

Returns store settings including general info, company details, languages, currencies, tax settings, and more.

No query parameters required (supports responseFields for filtering).

Example

curl 'https://app.ecwid.com/api/v3/1003/profile' \
  -H 'Authorization: Bearer secret_token'

Quick Reference

ResourceList EndpointSingle EndpointScope
ProductsGET /productsGET /products/{productId}read_catalog
OrdersGET /ordersGET /orders/{orderId}read_orders
CustomersGET /customersGET /customers/{customerId}read_customers
CategoriesGET /categoriesGET /categories/{categoryId}read_catalog
CouponsGET /discount_couponsGET /discount_coupons/{couponId}read_discount_coupons
PromotionsGET /promotionsread_promotion
Abandoned CartsGET /cartsGET /carts/{cartId}read_orders
Store ProfileGET /profileread_store_profile

ID Types

ResourceID TypeExample
Productsnumber12345678
Ordersstring"ORD001"
Customersnumber177737165
Categoriesnumber9691094
Couponsnumber162428889
Abandoned Cartsstring (UUID)"6626E60A-A6F9-4CD5-8230-43D5F162E0CD"

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

72.57%
按下载量换算772

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills